summaryrefslogtreecommitdiff
path: root/src/web/app/common/views/components/poll.vue
blob: 556d8ebf6cf8df89745ba787741f718e5dca4b33 (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
<template>
<div class="mk-poll" :data-is-voted="isVoted">
	<ul>
		<li v-for="choice in poll.choices" :key="choice.id" @click="vote(choice.id)" :class="{ voted: choice.voted }" :title="!isVoted ? '%i18n:common.tags.mk-poll.vote-to%'.replace('{}', choice.text) : ''">
			<div class="backdrop" :style="{ 'width': (showResult ? (choice.votes / total * 100) : 0) + '%' }"></div>
			<span>
				<template v-if="choice.is_voted">%fa:check%</template>
				<span>{{ choice.text }}</span>
				<span class="votes" v-if="showResult">({{ '%i18n:common.tags.mk-poll.vote-count%'.replace('{}', choice.votes) }})</span>
			</span>
		</li>
	</ul>
	<p v-if="total > 0">
		<span>{{ '%i18n:common.tags.mk-poll.total-users%'.replace('{}', total) }}</span>
		<span></span>
		<a v-if="!isVoted" @click="toggleShowResult">{{ showResult ? '%i18n:common.tags.mk-poll.vote%' : '%i18n:common.tags.mk-poll.show-result%' }}</a>
		<span v-if="isVoted">%i18n:common.tags.mk-poll.voted%</span>
	</p>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
	props: ['post'],
	data() {
		return {
			showResult: false
		};
	},
	computed: {
		poll(): any {
			return this.post.poll;
		},
		total(): number {
			return this.poll.choices.reduce((a, b) => a + b.votes, 0);
		},
		isVoted(): boolean {
			return this.poll.choices.some(c => c.is_voted);
		}
	},
	created() {
		this.showResult = this.isVoted;
	},
	methods: {
		toggleShowResult() {
			this.showResult = !this.showResult;
		},
		vote(id) {
			if (this.poll.choices.some(c => c.is_voted)) return;
			(this as any).api('posts/polls/vote', {
				post_id: this.post.id,
				choice: id
			}).then(() => {
				this.poll.choices.forEach(c => {
					if (c.id == id) {
						c.votes++;
						Vue.set(c, 'is_voted', true);
					}
				});
				this.showResult = true;
			});
		}
	}
});
</script>

<style lang="stylus" scoped>
.mk-poll

	> ul
		display block
		margin 0
		padding 0
		list-style none

		> li
			display block
			margin 4px 0
			padding 4px 8px
			width 100%
			border solid 1px #eee
			border-radius 4px
			overflow hidden
			cursor pointer

			&:hover
				background rgba(0, 0, 0, 0.05)

			&:active
				background rgba(0, 0, 0, 0.1)

			> .backdrop
				position absolute
				top 0
				left 0
				height 100%
				background $theme-color
				transition width 1s ease

			> span
				> [data-fa]
					margin-right 4px

				> .votes
					margin-left 4px

	> p
		a
			color inherit

	&[data-is-voted]
		> ul > li
			cursor default

			&:hover
				background transparent

			&:active
				background transparent

</style>