Sharkey/src/client/app/desktop/views/widgets/polls.vue
syuilo bcd886c4f5
🎨
2019-02-06 17:51:33 +09:00

107 lines
2.2 KiB
Vue

<template>
<div class="mkw-polls">
<mk-widget-container :show-header="!props.compact">
<template slot="header"><fa icon="chart-pie"/>{{ $t('title') }}</template>
<button slot="func" :title="$t('title')" @click="fetch">
<fa v-if="!fetching && more" icon="arrow-right"/>
<fa v-if="!fetching && !more" icon="sync"/>
</button>
<div class="mkw-polls--body">
<div class="poll" v-if="!fetching && poll != null">
<p v-if="poll.text"><router-link :to="poll | notePage">{{ poll.text }}</router-link></p>
<p v-if="!poll.text"><router-link :to="poll | notePage"><fa icon="link"/></router-link></p>
<mk-poll :note="poll"/>
</div>
<p class="empty" v-if="!fetching && poll == null">{{ $t('nothing') }}</p>
<p class="fetching" v-if="fetching"><fa icon="spinner" pulse fixed-width/>{{ $t('@.loading') }}<mk-ellipsis/></p>
</div>
</mk-widget-container>
</div>
</template>
<script lang="ts">
import define from '../../../common/define-widget';
import i18n from '../../../i18n';
export default define({
name: 'polls',
props: () => ({
compact: false
})
}).extend({
i18n: i18n('desktop/views/widgets/polls.vue'),
data() {
return {
poll: null,
fetching: true,
more: true,
offset: 0
};
},
mounted() {
this.fetch();
},
methods: {
func() {
this.props.compact = !this.props.compact;
this.save();
},
fetch() {
this.fetching = true;
this.poll = null;
this.$root.api('notes/polls/recommendation', {
limit: 1,
offset: this.offset
}).then(notes => {
const poll = notes ? notes[0] : null;
if (poll == null) {
this.more = false;
this.offset = 0;
} else {
this.more = true;
this.offset++;
}
this.poll = poll;
this.fetching = false;
}).catch(() => {
this.poll = null;
this.fetching = false;
this.more = false;
});
}
}
});
</script>
<style lang="stylus" scoped>
.mkw-polls--body
> .poll
padding 16px
font-size 12px
color var(--text)
> p
margin 0 0 8px 0
> a
color inherit
> .empty
margin 0
padding 16px
text-align center
color var(--text)
> .fetching
margin 0
padding 16px
text-align center
color var(--text)
> [data-icon]
margin-right 4px
</style>