-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathQuestionDate.vue
More file actions
443 lines (407 loc) Β· 11.1 KB
/
Copy pathQuestionDate.vue
File metadata and controls
443 lines (407 loc) Β· 11.1 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
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
<!--
- SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<Question
v-bind="questionProps"
:titlePlaceholder="answerType.titlePlaceholder"
:warningInvalid="answerType.warningInvalid"
:errorMessage="errorMessage"
v-on="commonListeners">
<template v-if="answerType.pickerType === 'date'" #actions>
<NcActionCheckbox
:modelValue="dateRange"
@update:modelValue="onDateRangeChange">
{{ t('forms', 'Use date range') }}
</NcActionCheckbox>
<NcActionInput
type="date"
isNativePicker
:modelValue="dateMin"
:label="t('forms', 'Earliest date')"
hideLabel
:formatter="extraSettingsFormatter"
:max="dateMax"
@update:modelValue="onDateMinChange">
<template #icon>
<NcIconSvgWrapper
:svg="svgTodayIcon"
:name="t('forms', 'Earliest date')" />
</template>
</NcActionInput>
<NcActionInput
type="date"
isNativePicker
:modelValue="dateMax"
:label="t('forms', 'Latest date')"
hideLabel
:formatter="extraSettingsFormatter"
:min="dateMin"
@update:modelValue="onDateMaxChange">
<template #icon>
<NcIconSvgWrapper
:svg="svgEventIcon"
:name="t('forms', 'Latest date')" />
</template>
</NcActionInput>
</template>
<template v-else-if="answerType.pickerType === 'time'" #actions>
<NcActionCheckbox
:modelValue="timeRange"
@update:modelValue="onTimeRangeChange">
{{ t('forms', 'Use time range') }}
</NcActionCheckbox>
<NcActionInput
type="time"
isNativePicker
:modelValue="timeMin"
:label="t('forms', 'Earliest time')"
hideLabel
:max="timeMax"
@update:modelValue="onTimeMinChange">
<template #icon>
<NcIconSvgWrapper
:svg="svgClockLoader20"
:name="t('forms', 'Earliest time')" />
</template>
</NcActionInput>
<NcActionInput
type="time"
isNativePicker
:modelValue="timeMax"
:label="t('forms', 'Latest time')"
hideLabel
:min="timeMin"
@update:modelValue="onTimeMaxChange">
<template #icon>
<NcIconSvgWrapper
:svg="svgClockLoader80"
:name="t('forms', 'Latest time')" />
</template>
</NcActionInput>
</template>
<div
class="question__content"
role="group"
:aria-labelledby="titleId"
:aria-describedby="description ? descriptionId : undefined">
<NcDateTimePicker
:modelValue="time"
:disabled="!readOnly"
:format="stringify"
:placeholder="datetimePickerPlaceholder"
:showSecond="false"
:type="dateTimePickerType"
:disabledDate="disabledDates"
:disabledTime="disabledTimes"
:aria-required="isRequired"
:aria-errormessage="hasError ? errorId : undefined"
:aria-invalid="hasError ? 'true' : undefined"
clearable
@update:modelValue="onValueChange" />
</div>
<template #insert>
<slot name="insert" />
</template>
</Question>
</template>
<script>
import moment from '@nextcloud/moment'
import NcActionCheckbox from '@nextcloud/vue/components/NcActionCheckbox'
import NcActionInput from '@nextcloud/vue/components/NcActionInput'
import NcDateTimePicker from '@nextcloud/vue/components/NcDateTimePicker'
import NcIconSvgWrapper from '@nextcloud/vue/components/NcIconSvgWrapper'
import Question from './Question.vue'
import svgClockLoader20 from '../../../img/clock_loader_20.svg?raw'
import svgClockLoader80 from '../../../img/clock_loader_80.svg?raw'
import svgEventIcon from '../../../img/event.svg?raw'
import svgTodayIcon from '../../../img/today.svg?raw'
import QuestionMixin from '../../mixins/QuestionMixin.js'
export default {
name: 'QuestionDate',
components: {
NcActionCheckbox,
NcActionInput,
NcDateTimePicker,
NcIconSvgWrapper,
Question,
},
mixins: [QuestionMixin],
emits: ['update:values'],
data() {
return {
extraSettingsFormatter: {
stringify: this.stringifyDate,
parse: this.parseTimestampToDate,
},
svgClockLoader80,
svgClockLoader20,
svgEventIcon,
svgTodayIcon,
}
},
computed: {
isRangeQuestion() {
return this.extraSettings?.dateRange || this.extraSettings?.timeRange
? true
: false
},
datetimePickerPlaceholder() {
if (this.readOnly) {
return this.isRangeQuestion
? this.answerType.submitPlaceholderRange
: this.answerType.submitPlaceholder
}
return this.isRangeQuestion
? this.answerType.createPlaceholderRange
: this.answerType.createPlaceholder
},
dateTimePickerType() {
return this.isRangeQuestion
? this.answerType.pickerType + '-range'
: this.answerType.pickerType
},
time() {
if (this.isRangeQuestion) {
return this.values?.[0]
? [this.parse(this.values[0]), this.parse(this.values[1])]
: null
}
return this.values?.[0] ? this.parse(this.values[0]) : null
},
/**
* The maximum allowable date for the date input field
*/
dateMax() {
return this.extraSettings?.dateMax
? moment(this.extraSettings.dateMax, 'X').toDate()
: null
},
/**
* The minimum allowable date for the date input field
*/
dateMin() {
return this.extraSettings?.dateMin
? moment(this.extraSettings.dateMin, 'X').toDate()
: null
},
dateRange() {
return this.extraSettings?.dateRange ?? false
},
/**
* The maximum allowable time for the time input field
*/
timeMax() {
return this.extraSettings?.timeMax
? moment(
this.extraSettings.timeMax,
this.answerType.storageFormat,
).toDate()
: new Date(new Date().setHours(24, 0, 0, 0))
},
/**
* The minimum allowable time for the time input field
*/
timeMin() {
return this.extraSettings?.timeMin
? moment(
this.extraSettings.timeMin,
this.answerType.storageFormat,
).toDate()
: new Date(new Date().setHours(0, 0, 0, 0))
},
timeRange() {
return this.extraSettings?.timeRange ?? false
},
},
methods: {
async validate() {
if (this.isRequired && this.time === null) {
this.errorMessage = t('forms', 'You must answer this question')
return false
}
this.errorMessage = null
return true
},
/**
* DateTimepicker show text in picker
* Format depends on component-type date/datetime
*
* @param {Date|Date[]} date the selected datepicker Date
* @return {string}
*/
stringify(date) {
if (this.isRangeQuestion && Array.isArray(date)) {
return `${moment(date[0]).format(this.answerType.momentFormat)} - ${moment(date[1]).format(this.answerType.momentFormat)}`
}
return moment(date).format(this.answerType.momentFormat)
},
/**
* Reinterpret a stored date
*
* @param {string} dateString Stringified date
* @return {Date}
*/
parse(dateString) {
return moment(dateString, [
this.answerType.momentFormat,
this.answerType.storageFormat,
]).toDate()
},
/**
* Handles the change event for the maximum date input.
* Updates the maximum allowable date based on the provided value.
*
* @param {string | Date} value - The new maximum date value. Can be a string or a Date object.
*/
onDateMaxChange(value) {
this.onExtraSettingsChange({
dateMax: parseInt(moment(value).format('X')),
})
},
/**
* Handles the change event for the minimum date input.
* Updates the minimum allowable date based on the provided value.
*
* @param {string | Date} value - The new minimum date value. Can be a string or a Date object.
*/
onDateMinChange(value) {
this.onExtraSettingsChange({
dateMin: parseInt(moment(value).format('X')),
})
},
/**
* Handles the change event for the date range selection.
* Updates the extra settings with the new date range value.
*
* @param {boolean} value - The new value of the date range selection.
* If true, the date range is enabled; otherwise, null.
*/
onDateRangeChange(value) {
this.onExtraSettingsChange({ dateRange: value === true ? true : null })
},
/**
* Handles the change event for the maximum time input.
* Updates the maximum allowable date based on the provided value.
*
* @param {string | Date} value - The new maximum date value. Can be a string or a Date object.
*/
onTimeMaxChange(value) {
this.onExtraSettingsChange({
timeMax:
value === null
|| (value
&& value.getTime
&& value.getTime()
=== new Date(new Date().setHours(24, 0, 0, 0)).getTime())
? null
: moment(value).format(this.answerType.storageFormat),
})
},
/**
* Handles the change event for the minimum date input.
* Updates the minimum allowable date based on the provided value.
*
* @param {string | Date} value - The new minimum date value. Can be a string or a Date object.
*/
onTimeMinChange(value) {
this.onExtraSettingsChange({
timeMin:
value === null
|| (value
&& value.getTime
&& value.getTime()
=== new Date(new Date().setHours(0, 0, 0, 0)).getTime())
? null
: moment(value).format(this.answerType.storageFormat),
})
},
/**
* Handles the change event for the date range selection.
* Updates the extra settings with the new date range value.
*
* @param {boolean} value - The new value of the date range selection.
* If true, the date range is enabled; otherwise, null.
*/
onTimeRangeChange(value) {
this.onExtraSettingsChange({ timeRange: value === true ? true : null })
},
/**
* Store Value
*
* @param {Date|Array<Date>|null} date The date or date range to store
*/
onValueChange(date) {
if (!date) {
this.$emit('update:values', [])
return
}
if (this.isRangeQuestion) {
this.$emit('update:values', [
moment(date[0]).format(this.answerType.storageFormat),
moment(date[1]).format(this.answerType.storageFormat),
])
} else {
this.$emit('update:values', [
moment(date).format(this.answerType.storageFormat),
])
}
},
/**
* Determines if a given date should be disabled.
*
* @param {Date} date - The date to check.
* @return {boolean} - Returns true if the date should be disabled, otherwise false.
*/
disabledDates(date) {
return (
(this.dateMin && date < this.dateMin)
|| (this.dateMax && date > this.dateMax)
)
},
/**
* Determines if a given time should be disabled.
*
* @param {Date} time - The time to check.
* @return {boolean} - Returns true if the time should be disabled, otherwise false.
*/
disabledTimes(time) {
return (
(this.timeMin && time < this.timeMin)
|| (this.timeMax && time > this.timeMax)
)
},
/**
* Datepicker timestamp to string
*
* @param {Date} datetime the datepicker Date
* @return {string}
*/
stringifyDate(datetime) {
return moment(datetime).format('L')
},
/**
* Form expires timestamp to Date of the datepicker
*
* @param {number} value the expires timestamp
* @return {Date}
*/
parseTimestampToDate(value) {
return moment(value, 'X').toDate()
},
},
}
</script>
<style lang="scss" scoped>
.mx-datepicker {
width: 100%;
max-width: 300px;
&.disabled {
inset-inline-start: -12px;
}
:deep(.mx-input) {
height: var(--default-clickable-area) !important;
}
}
</style>