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

Availability.vue « views « src « dav « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03f646028a854786943d02f448f04d1f90360487 (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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<template>
	<div class="section">
		<h2>{{ $t('dav', 'Availability') }}</h2>
		<p>
			{{ $t('dav', 'If you configure your working hours, other users will see when you are out of office when they book a meeting.') }}
		</p>
		<div class="time-zone">
			<strong>
				{{ $t('calendar', 'Please select a time zone:') }}
			</strong>
			<TimezonePicker v-model="timezone" />
		</div>
		<div class="grid-table">
			<template v-for="day in daysOfTheWeek">
				<div :key="`day-label-${day.id}`" class="label-weekday">
					{{ day.displayName }}
				</div>
				<div :key="`day-slots-${day.id}`" class="availability-slots">
					<div class="availability-slot">
						<template v-for="(slot, idx) in day.slots">
							<div :key="`slot-${day.id}-${idx}`">
								<DatetimePicker
									v-model="slot.start"
									type="time"
									class="start-date"
									format="H:mm" />
								{{ $t('dav', 'to') }}
								<DatetimePicker
									v-model="slot.end"
									type="time"
									class="end-date"
									format="H:mm" />
								<button :key="`slot-${day.id}-${idx}-btn`"
									class="icon-delete delete-slot button"
									:title="$t('dav', 'Delete slot')"
									@click="deleteSlot(day, idx)" />
							</div>
						</template>
					</div>
					<button :disabled="loading"
						class="add-another button"
						@click="addSlot(day)">
						{{ $t('dav', 'Add slot') }}
					</button>
				</div>
			</template>
		</div>
		<button :disabled="loading || saving"
			class="button"
			@click="save">
			{{ $t('dav', 'Save') }}
		</button>
	</div>
</template>

<script>
import DatetimePicker from '@nextcloud/vue/dist/Components/DatetimePicker'
import {
	findScheduleInboxAvailability,
	getEmptySlots,
	saveScheduleInboxAvailability,
} from '../service/CalendarService'
import { getFirstDay } from '@nextcloud/l10n'
import jstz from 'jstimezonedetect'
import TimezonePicker from '@nextcloud/vue/dist/Components/TimezonePicker'
export default {
	name: 'Availability',
	components: {
		DatetimePicker,
		TimezonePicker,
	},
	data() {
		// Try to determine the current timezone, and fall back to UTC otherwise
		const defaultTimezone = jstz.determine()
		const defaultTimezoneId = defaultTimezone ? defaultTimezone.name() : 'UTC'

		const moToSa = [
			{
				id: 'MO',
				displayName: this.$t('dav', 'Monday'),
				slots: [],
			},
			{
				id: 'TU',
				displayName: this.$t('dav', 'Tuesday'),
				slots: [],
			},
			{
				id: 'WE',
				displayName: this.$t('dav', 'Wednesday'),
				slots: [],
			},
			{
				id: 'TH',
				displayName: this.$t('dav', 'Thursday'),
				slots: [],
			},
			{
				id: 'FR',
				displayName: this.$t('dav', 'Friday'),
				slots: [],
			},
			{
				id: 'SA',
				displayName: this.$t('dav', 'Saturday'),
				slots: [],
			},
		]
		const sunday = {
			id: 'SU',
			displayName: this.$t('dav', 'Sunday'),
			slots: [],
		}
		const daysOfTheWeek = getFirstDay() === 1 ? [...moToSa, sunday] : [sunday, ...moToSa]
		return {
			loading: true,
			saving: false,
			timezone: defaultTimezoneId,
			daysOfTheWeek,
		}
	},
	async mounted() {
		try {
			const { slots } = await findScheduleInboxAvailability()
			if (slots) {
				this.daysOfTheWeek.forEach(day => {
					day.slots.push(...slots[day.id])
				})
			}
			console.info('availability loaded', this.daysOfTheWeek)
		} catch (e) {
			console.error('could not load existing availability', e)

			// TODO: show a nice toast
		} finally {
			this.loading = false
		}
	},
	methods: {
		addSlot(day) {
			const start = new Date()
			start.setHours(9)
			start.setMinutes(0)
			start.setSeconds(0)
			const end = new Date()
			end.setHours(17)
			end.setMinutes(0)
			end.setSeconds(0)
			day.slots.push({
				start,
				end,
			})
		},
		deleteSlot(day, idx) {
			day.slots.splice(idx, 1)
		},
		async save() {
			try {
				this.saving = true

				const slots = getEmptySlots()
				this.daysOfTheWeek.forEach(day => {
					day.slots.forEach(slot => slots[day.id].push(slot))
				})
				await saveScheduleInboxAvailability(slots, this.timezone)

				// TODO: show a nice toast
			} catch (e) {
				console.error('could not save availability', e)

				// TODO: show a nice toast
			} finally {
				this.saving = false
			}
		},
	},
}
</script>

<style lang="scss" scoped>
.availability-day {
	padding: 0 10px 10px 10px;
	position: absolute;
}
.availability-slots {
	display: flex;
}
.availability-slot {
	display: flex;
	flex-direction: column;
}
::v-deep .mx-input-wrapper {
	width: 85px;
}
::v-deep .mx-datepicker {
	width: 110px;
}
::v-deep .multiselect {
	border: 1px solid var(--color-border-dark);
	width: 120px;
}
.time-zone {
	padding: 12px 12px 12px 0;
}
.grid-table {
	display: grid;
	grid-template-columns: min-content auto;
}
.button {
	align-self: flex-end;
}
.label-weekday {
	padding: 8px 23px 14px 0;
	position: relative;
	display: inline-flex;
}
.delete-slot {
	background-color: transparent;
	border: none;
	padding: 15px;
}

</style>