-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathAppNavigationSettings.vue
More file actions
174 lines (156 loc) · 4.01 KB
/
Copy pathAppNavigationSettings.vue
File metadata and controls
174 lines (156 loc) · 4.01 KB
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!--
Nextcloud - Tasks
@author Raimund Schlüßler
@copyright 2018 Raimund Schlüßler <raimund.schluessler@mailbox.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
License as published by the Free Software Foundation; either
version 3 of the License, or any later version.
This library 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 library. If not, see <http://www.gnu.org/licenses/>.
-->
<template>
<NcAppNavigationSettings :name="appNavigationSettingsName">
<div class="reactive">
<ul>
<li>
<label for="defaultCalendar">
{{ t('tasks', 'Default list') }}
</label>
<select id="defaultCalendar" v-model="defaultCalendarId">
<option v-for="calendar in calendars"
:key="calendar.id"
:value="calendar.id">
{{ calendar.displayName }}
</option>
</select>
</li>
<li class="headline">
{{ t('tasks', 'Visibility of Smart Collections') }}
</li>
<li v-for="collection in collections"
:key="collection.id"
class="collection">
<component :is="collection.icon" :size="20" />
<span class="label-container">
<label :for="'visibilityCollection-' + collection.id">
{{ collection.displayName }}
</label>
</span>
<select :id="'visibilityCollection-' + collection.id"
:value="collection.show"
@change="setVisibility({ id: collection.id, show: +$event.target.value })">
<option v-for="collectionOption in collectionOptions"
:key="collectionOption.id"
:value="collectionOption.id">
{{ collectionOption.name }}
</option>
</select>
</li>
</ul>
</div>
</NcAppNavigationSettings>
</template>
<script>
import { translate as t } from '@nextcloud/l10n'
import dayjs from 'dayjs'
import NcAppNavigationSettings from '@nextcloud/vue/components/NcAppNavigationSettings'
import CalendarToday from 'vue-material-design-icons/CalendarToday.vue'
import CalendarWeek from 'vue-material-design-icons/CalendarWeek.vue'
import CircleOutline from 'vue-material-design-icons/CircleOutline.vue'
import Check from 'vue-material-design-icons/Check.vue'
import Star from 'vue-material-design-icons/StarOutline.vue'
import TrendingUp from 'vue-material-design-icons/TrendingUp.vue'
import { mapState, mapGetters, mapActions } from 'vuex'
export default {
components: {
NcAppNavigationSettings,
CalendarToday,
CalendarWeek,
CircleOutline,
Check,
Star,
TrendingUp,
},
data() {
return {
collectionOptions: [
{
id: 0,
name: t('tasks', 'Hidden'),
},
{
id: 1,
name: t('tasks', 'Visible'),
},
{
id: 2,
name: t('tasks', 'Automatic'),
},
],
dayOfMonth: dayjs().date(),
}
},
computed: {
appNavigationSettingsName() {
return t('tasks', 'Tasks settings')
},
defaultCalendarId: {
get() {
const cal = this.$store.getters.getDefaultCalendar
return cal ? cal.id : ''
},
set(value) {
this.$store.dispatch('setSetting', { type: 'defaultCalendarId', value })
},
},
...mapState({
collections: state => state.collections.collections,
}),
...mapGetters({
calendars: 'getSortedWritableCalendars',
}),
},
methods: {
t,
...mapActions([
'setVisibility',
]),
},
}
</script>
<style lang="scss" scoped>
li {
display: flex;
align-items: center;
height: 44px;
&.headline {
font-weight: bold;
}
&.collection {
.material-design-icon {
margin-right: 16px;
}
.label-container {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: flex;
align-items: center;
}
}
select {
min-width: 105px;
text-overflow: ellipsis;
margin-left: auto;
}
label {
white-space: nowrap;
padding-right: 10px;
}
}
</style>