Welcome to mirror list, hosted at ThFree Co, Russian Federation.

polls.js « modules « store « js « src - github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29aece85099bdc71e1b4def20cbf2f3a15bfda19 (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
 * @copyright Copyright (c) 2019 Rene Gieling <github@dartcafe.de>
 *
 * @author Rene Gieling <github@dartcafe.de>
 * @author Julius Härtl <jus@bitgrid.net>
 *
 * @license GNU AGPL version 3 or any later version
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 *
 */

import axios from '@nextcloud/axios'
import { getCurrentUser } from '@nextcloud/auth'
import moment from '@nextcloud/moment'
import { generateUrl } from '@nextcloud/router'

const state = {
	list: [],
	categories: [
		{
			id: 'relevant',
			title: t('polls', 'Relevant'),
			titleExt: t('polls', 'Relevant polls'),
			description: t('polls', 'All polls which are relevant or important to you, because you are a participant or the owner or you are invited to. Without polls closed more than five days ago.'),
			icon: 'icon-details',
			pinned: false,
		},
		{
			id: 'my',
			title: t('polls', 'My polls'),
			titleExt: t('polls', 'My polls'),
			description: t('polls', 'Your polls (in which you are the owner).'),
			icon: 'icon-user',
			pinned: false,
		},
		{
			id: 'hidden',
			title: t('polls', 'Hidden polls'),
			titleExt: t('polls', 'Hidden polls'),
			description: t('polls', 'All hidden polls, to which you have access.'),
			icon: 'icon-polls-hidden-poll',
			pinned: false,
		},
		{
			id: 'participated',
			title: t('polls', 'Participated'),
			titleExt: t('polls', 'Participated'),
			description: t('polls', 'All polls, where you placed a vote.'),
			icon: 'icon-polls-confirmed',
			pinned: false,
		},
		{
			id: 'public',
			title: t('polls', 'Public polls'),
			titleExt: t('polls', 'Public polls'),
			description: t('polls', 'A complete list with all public polls on this site, regardless who is the owner.'),
			icon: 'icon-link',
			pinned: false,
		},
		{
			id: 'all',
			title: t('polls', 'All polls'),
			titleExt: t('polls', 'All polls'),
			description: t('polls', 'All polls, where you have access to.'),
			icon: 'icon-polls',
			pinned: false,
		},
		{
			id: 'closed',
			title: t('polls', 'Closed polls'),
			titleExt: t('polls', 'Closed polls'),
			description: t('polls', 'All closed polls, where voting is disabled.'),
			icon: 'icon-polls-closed',
			pinned: false,
		},
		{
			id: 'deleted',
			title: t('polls', 'Deleted polls'),
			titleExt: t('polls', 'My deleted polls'),
			description: t('polls', 'The trash bin.'),
			icon: 'icon-delete',
			pinned: true,
		},
	],
}

const namespaced = true

const mutations = {
	set(state, payload) {
		Object.assign(state, payload)
	},
}

const getters = {
	filtered: (state) => (filterId) => {
		if (filterId === 'all') {
			return state.list.filter((poll) => (!poll.deleted))
		} else if (filterId === 'my') {
			return state.list.filter((poll) => (poll.owner === getCurrentUser().uid && !poll.deleted))
		} else if (filterId === 'relevant') {
			return state.list.filter((poll) => ((
				poll.important
				|| poll.userHasVoted
				|| poll.isOwner
				|| (poll.allowView && poll.access !== 'public')
			)
			&& !poll.deleted
			&& !(poll.expire > 0 && moment.unix(poll.expire).diff(moment(), 'days') < -4)
			))
		} else if (filterId === 'public') {
			return state.list.filter((poll) => (poll.access === 'public' && !poll.deleted))
		} else if (filterId === 'hidden') {
			return state.list.filter((poll) => (poll.access === 'hidden' && !poll.deleted))
		} else if (filterId === 'deleted') {
			return state.list.filter((poll) => (poll.deleted))
		} else if (filterId === 'participated') {
			return state.list.filter((poll) => (poll.userHasVoted))
		} else if (filterId === 'closed') {
			return state.list.filter((poll) => (
				poll.expire > 0 && moment.unix(poll.expire).diff() < 0 && !poll.deleted
			))
		}
	},
}

const actions = {
	async list(context) {
		const endPoint = 'apps/polls/polls'

		try {
			const response = await axios.get(generateUrl(endPoint), { params: { time: +new Date() } })
			context.commit('set', { list: response.data })
		} catch (e) {
			console.error('Error loading polls', { error: e.response })
		}
	},
}

export default { namespaced, state, mutations, getters, actions }