-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathQuestionDate.vue
More file actions
286 lines (262 loc) Β· 6.8 KB
/
QuestionDate.vue
File metadata and controls
286 lines (262 loc) Β· 6.8 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
<!--
- SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<Question
v-bind="questionProps"
:title-placeholder="answerType.titlePlaceholder"
:warning-invalid="answerType.warningInvalid"
v-on="commonListeners">
<template v-if="answerType.pickerType === 'date'" #actions>
<NcActionCheckbox
:model-value="dateRange"
@update:model-value="onDateRangeChange">
{{ t('forms', 'Use date range') }}
</NcActionCheckbox>
<NcActionInput
type="date"
is-native-picker
:model-value="dateMin"
:label="t('forms', 'Earliest date')"
hide-label
:formatter="extraSettingsFormatter"
:max="dateMax"
@update:model-value="onDateMinChange">
<template #icon>
<NcIconSvgWrapper
:svg="svgTodayIcon"
:name="t('forms', 'Earliest date')" />
</template>
</NcActionInput>
<NcActionInput
type="date"
is-native-picker
:model-value="dateMax"
:label="t('forms', 'Latest date')"
hide-label
:formatter="extraSettingsFormatter"
:min="dateMin"
@update:model-value="onDateMaxChange">
<template #icon>
<NcIconSvgWrapper
:svg="svgEventIcon"
:name="t('forms', 'Latest date')" />
</template>
</NcActionInput>
</template>
<div class="question__content">
<NcDateTimePicker
:value="time"
:disabled="!readOnly"
:formatter="formatter"
:placeholder="datetimePickerPlaceholder"
:show-second="false"
:type="answerType.pickerType"
:disabled-date="disabledDates"
:input-attr="inputAttr"
:range="extraSettings?.dateRange"
range-separator=" - "
@change="onValueChange" />
</div>
</Question>
</template>
<script>
import svgEventIcon from '../../../img/event.svg?raw'
import svgTodayIcon from '../../../img/today.svg?raw'
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 QuestionMixin from '../../mixins/QuestionMixin.js'
export default {
name: 'QuestionDate',
components: {
NcActionCheckbox,
NcActionInput,
NcDateTimePicker,
NcIconSvgWrapper,
},
mixins: [QuestionMixin],
data() {
return {
formatter: {
stringify: this.stringify,
parse: this.parse,
},
extraSettingsFormatter: {
stringify: this.stringifyDate,
parse: this.parseTimestampToDate,
},
svgEventIcon,
svgTodayIcon,
}
},
computed: {
datetimePickerPlaceholder() {
if (this.readOnly) {
return this.extraSettings?.dateRange
? this.answerType.submitPlaceholderRange
: this.answerType.submitPlaceholder
}
return this.extraSettings?.dateRange
? this.answerType.createPlaceholderRange
: this.answerType.createPlaceholder
},
/**
* All non-exposed props onto datepicker input-element.
*
* @return {object}
*/
inputAttr() {
return {
required: this.isRequired,
name: this.name || undefined,
}
},
time() {
if (this.extraSettings?.dateRange) {
return this.values
? [this.parse(this.values[0]), this.parse(this.values[1])]
: null
}
return this.values ? 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
},
},
methods: {
/**
* DateTimepicker show text in picker
* Format depends on component-type date/datetime
*
* @param {Date} date the selected datepicker Date
* @return {string}
*/
stringify(date) {
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 ?? null })
},
/**
* Store Value
*
* @param {Date|Array<Date>} date The date or date range to store
*/
onValueChange(date) {
if (this.extraSettings?.dateRange) {
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)
)
},
/**
* 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>