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