summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/widgets/polls.vue
blob: 6cb1192c248be545798ef3f6abb9aff1099d5d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<template>
<div class="mkw-polls">
	<template v-if="!props.compact">
		<p class="title">%fa:chart-pie%%i18n:@title%</p>
		<button @click="fetch" title="%i18n:@refresh%">%fa:sync%</button>
	</template>
	<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:link%</router-link></p>
		<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>
</template>

<script lang="ts">
import define from '../../../common/define-widget';

export default define({
	name: 'polls',
	props: () => ({
		compact: false
	})
}).extend({
	data() {
		return {
			poll: null,
			fetching: true,
			offset: 0
		};
	},
	mounted() {
		this.fetch();
	},
	methods: {
		func() {
			this.props.compact = !this.props.compact;
		},
		fetch() {
			this.fetching = true;
			this.poll = null;

			(this as any).api('notes/polls/recommendation', {
				limit: 1,
				offset: this.offset
			}).then(notes => {
				const poll = notes ? notes[0] : null;
				if (poll == null) {
					this.offset = 0;
				} else {
					this.offset++;
				}
				this.poll = poll;
				this.fetching = false;
			});
		}
	}
});
</script>

<style lang="stylus" scoped>
.mkw-polls
	background #fff
	border solid 1px rgba(0, 0, 0, 0.075)
	border-radius 6px

	> .title
		margin 0
		padding 0 16px
		line-height 42px
		font-size 0.9em
		font-weight bold
		color #888
		border-bottom solid 1px #eee

		> [data-fa]
			margin-right 4px

	> button
		position absolute
		z-index 2
		top 0
		right 0
		padding 0
		width 42px
		font-size 0.9em
		line-height 42px
		color #ccc

		&:hover
			color #aaa

		&:active
			color #999

	> .poll
		padding 16px
		font-size 12px
		color #555

		> 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>