Sharkey/src/client/app/desktop/views/widgets/polls.vue

97 lines
1.9 KiB
Vue
Raw Normal View History

2018-02-19 23:27:35 +02:00
<template>
<div class="mkw-polls">
2018-04-19 22:51:04 +03:00
<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 icon="sync"/></button>
2018-04-19 22:51:04 +03:00
2018-09-28 08:26:20 +03:00
<div class="mkw-polls--body">
2018-04-19 22:51:04 +03:00
<div class="poll" v-if="!fetching && poll != null">
2018-08-03 17:06:58 +03:00
<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>
2018-04-19 22:51:04 +03:00
<mk-poll :note="poll"/>
</div>
<p class="empty" v-if="!fetching && poll == null">{{ $t('nothing') }}</p>
2018-11-13 15:45:28 +02:00
<p class="fetching" v-if="fetching"><fa icon="spinner" pulse fixed-width/>{{ $t('@.loading') }}<mk-ellipsis/></p>
2018-04-19 22:51:04 +03:00
</div>
</mk-widget-container>
2018-02-19 23:27:35 +02:00
</div>
</template>
<script lang="ts">
2018-02-24 17:18:09 +02:00
import define from '../../../common/define-widget';
import i18n from '../../../i18n';
2018-03-27 10:51:12 +03:00
2018-02-19 23:27:35 +02:00
export default define({
name: 'polls',
2018-02-21 08:30:03 +02:00
props: () => ({
2018-02-19 23:27:35 +02:00
compact: false
2018-02-21 08:30:03 +02:00
})
2018-02-19 23:27:35 +02:00
}).extend({
i18n: i18n('desktop/views/widgets/polls.vue'),
2018-02-19 23:27:35 +02:00
data() {
return {
poll: null,
fetching: true,
offset: 0
};
},
mounted() {
this.fetch();
},
methods: {
func() {
this.props.compact = !this.props.compact;
2018-04-29 11:17:15 +03:00
this.save();
2018-02-19 23:27:35 +02:00
},
fetch() {
this.fetching = true;
this.poll = null;
2018-11-09 01:13:34 +02:00
this.$root.api('notes/polls/recommendation', {
2018-02-19 23:27:35 +02:00
limit: 1,
offset: this.offset
2018-04-07 20:30:37 +03:00
}).then(notes => {
const poll = notes ? notes[0] : null;
2018-02-19 23:27:35 +02:00
if (poll == null) {
this.offset = 0;
} else {
this.offset++;
}
this.poll = poll;
this.fetching = false;
});
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-28 08:26:20 +03:00
.mkw-polls--body
2018-02-19 23:27:35 +02:00
> .poll
padding 16px
font-size 12px
2018-09-28 08:26:20 +03:00
color var(--text)
2018-02-19 23:27:35 +02:00
> p
margin 0 0 8px 0
> a
color inherit
> .empty
margin 0
padding 16px
text-align center
color #aaa
> .fetching
margin 0
padding 16px
text-align center
color #aaa
> [data-icon]
2018-02-19 23:27:35 +02:00
margin-right 4px
</style>