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

95 lines
1.8 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:chart-pie%%i18n:@title%</template>
<button slot="func" title="%i18n:@refresh%" @click="fetch">%fa:sync%</button>
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: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">%i18n:@nothing%</p>
<p class="fetching" v-if="fetching">%fa:spinner .pulse .fw%%i18n:common.loading%<mk-ellipsis/></p>
</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';
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({
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-04-07 20:30:37 +03:00
(this as any).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-fa]
margin-right 4px
</style>