-
Notifications
You must be signed in to change notification settings - Fork 88
/
NcDateTimePickerNative.vue
416 lines (389 loc) · 9.75 KB
/
NcDateTimePickerNative.vue
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
<!--
- @copyright Copyright (c) 2022 Julia Kirschenheuter <[email protected]>
-
- @author Julia Kirschenheuter <[email protected]>
- @author Richard Steinmetz <[email protected]>
-
- @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/>.
-
-->
<docs>
### General description
This components provides a wrapper around the native browser datetime picker. <br>
This is an input with some type of date e.g. https://html.spec.whatwg.org/multipage/input.html#local-date-and-time-state-(type=datetime-local). <br>
All available types are: 'date', 'datetime-local', 'month', 'time' and 'week', please check them here: https://html.spec.whatwg.org/multipage/input.html# <br>
### Examples
#### Usage: type='datetime-local'
```vue
<template>
<div>
<span>Picked date: {{ value || 'null' }}</span>
<NcDateTimePickerNative
v-model="value"
:id="id"
:label="label"
type="datetime-local" />
</div>
</template>
<script>
export default {
data() {
return {
value: new Date(),
id: 'date-time-picker',
label: 'please select a new date',
}
},
}
</script>
```
#### Usage: type='datetime-local' with min date and max date
```vue
<template>
<div>
<span>Picked date: {{ value || 'null' }}</span>
<NcDateTimePickerNative
v-model="value"
:id="id"
:min="yesterdayDate"
:max="someDate"
:label="label"
type="datetime-local" />
</div>
</template>
<script>
export default {
data() {
return {
value: new Date(),
id: 'date-time-picker',
label: 'please select a new date',
yesterdayDate: new Date(new Date().setDate(new Date().getDate() - 1)),
someDate: new Date(new Date().setDate(new Date().getDate() + 7)),
}
},
}
</script>
```
#### Usage: type='week'
```vue
<template>
<div>
<span>Picked date: {{ value || 'null' }}</span>
<NcDateTimePickerNative
v-model="value"
:id="id"
:label="label"
type="week" />
</div>
</template>
<script>
export default {
data() {
return {
value: new Date(),
id: 'date-time-picker',
label: 'please select a new date',
}
},
}
</script>
```
#### Usage: type='month'
```vue
<template>
<div>
<span>Picked date: {{ value || 'null' }}</span>
<NcDateTimePickerNative
v-model="value"
:id="id"
:label="label"
type="month" />
</div>
</template>
<script>
export default {
data() {
return {
value: new Date(),
id: 'date-time-picker',
label: 'please select a new date',
}
},
}
</script>
```
</docs>
<template>
<div class="native-datetime-picker">
<label :class="{ 'hidden-visually': hideLabel }" :for="id">{{ label }}</label>
<input :id="id"
class="native-datetime-picker--input"
:class="inputClass"
:type="type"
:value="formattedValue"
:min="formattedMin"
:max="formattedMax"
v-bind="$attrs"
v-on="listeners">
</div>
</template>
<script>
const inputDateTypes = ['date', 'datetime-local', 'month', 'time', 'week']
export default {
name: 'NcDateTimePickerNative',
inheritAttrs: false,
props: {
/**
* The date is – like the `Date` object in JavaScript – tied to UTC.
* The selected time zone does not have an influence of the selected time and date value.
* You have to translate the time yourself when you want to factor in time zones.
* Pass null to clear the input field.
*/
value: {
type: Date,
default: null,
},
/**
* id attribute of the input field
*/
id: {
type: String,
required: true,
},
/**
* type attribute of the input field
* default type: String
* The type of the input element, it can be `date`, `datetime-local`, `month`, `time`, `week`
*/
type: {
type: String,
default: 'date',
validate: (name) => inputDateTypes.includes(name),
},
/**
* text inside the label element
* default type: String
*/
label: {
type: String,
default: 'Please choose a date',
},
/**
* min attribute of the input field
* default type: null
*/
min: {
type: [Date, Boolean],
default: null,
},
/**
* max attribute of the input field
* default type: null
*/
max: {
type: [Date, Boolean],
default: null,
},
/**
* Flag to hide the label
* default type: String
* The hidden input label for accessibility purposes.
*/
hideLabel: {
type: Boolean,
default: false,
},
/**
* Class to add to the input field.
* Necessary to use NcDateTimePickerNative in the NcActionInput component.
*/
inputClass: {
type: [Object, String],
default: '',
},
},
emits: [
'input',
],
computed: {
formattedValue() {
return this.formatValue(this.value)
},
formattedMin() {
if (this.min) {
return this.formatValue(this.min)
}
return false
},
formattedMax() {
if (this.max) {
return this.formatValue(this.max)
}
return false
},
listeners() {
return {
...this.$listeners,
/**
* Handle the input event
*
* @param {InputEvent} $event input event payload
* @return {Date|string} new chosen Date() or an empty string
*/
input: ($event) => {
if (isNaN($event.target.valueAsNumber)) {
/**
* Emitted when the input value changes
*
* @return {string} empty string
*/
return this.$emit('input', null)
}
if (this.type === 'time') {
const time = $event.target.value
if (this.value === '') {
// this case is because of Chrome bug
const { yyyy, MM, dd } = this.getReadableDate(new Date())
/**
* Emitted when the input value changes
*
* @return {Date} new chosen Date()
*/
return this.$emit('input', new Date(`${yyyy}-${MM}-${dd}T${time}`))
}
const { yyyy, MM, dd } = this.getReadableDate(this.value)
/**
* Emitted when the input value changes
*
* @return {Date} new chosen Date()
*/
return this.$emit('input', new Date(`${yyyy}-${MM}-${dd}T${time}`))
} else if (this.type === 'month') {
const MM = (new Date($event.target.value).getMonth() + 1).toString().padStart(2, '0')
if (this.value === '') {
const { yyyy, dd, hh, mm } = this.getReadableDate(new Date())
/**
* Emitted when the input value changes
*
* @return {Date} new chosen Date()
*/
return this.$emit('input', new Date(`${yyyy}-${MM}-${dd}T${hh}:${mm}`))
}
const { yyyy, dd, hh, mm } = this.getReadableDate(this.value)
/**
* Emitted when the input value changes
*
* @return {Date} new chosen Date()
*/
return this.$emit('input', new Date(`${yyyy}-${MM}-${dd}T${hh}:${mm}`))
}
const timezoneOffsetSeconds = new Date($event.target.valueAsNumber).getTimezoneOffset() * 1000 * 60
const inputDateWithTimezone = $event.target.valueAsNumber + timezoneOffsetSeconds
/**
* Emitted when the input value changes
*
* @return {Date} new chosen Date()
*/
return this.$emit('input', new Date(inputDateWithTimezone))
},
}
},
},
methods: {
/**
* Returns Object with string values of a Date
*
* @param {Date} value The selected value
* @return {object|undefined}
*/
getReadableDate(value) {
if (value instanceof Date) {
const yyyy = value.getFullYear().toString().padStart(4, '0')
const MM = (value.getMonth() + 1).toString().padStart(2, '0')
const dd = value.getDate().toString().padStart(2, '0')
const hh = value.getHours().toString().padStart(2, '0')
const mm = value.getMinutes().toString().padStart(2, '0')
return { yyyy, MM, dd, hh, mm }
}
},
/**
* Returns preformatted value for the input field
*
* @param {Date} value The selected value
* @return {string|undefined}
*/
formatValue(value) {
if (value instanceof Date) {
const { yyyy, MM, dd, hh, mm } = this.getReadableDate(value)
if (this.type === 'datetime-local') {
return `${yyyy}-${MM}-${dd}T${hh}:${mm}`
} else if (this.type === 'date') {
return `${yyyy}-${MM}-${dd}`
} else if (this.type === 'month') {
return `${yyyy}-${MM}`
} else if (this.type === 'time') {
return `${hh}:${mm}`
} else if (this.type === 'week') {
const startDate = new Date(yyyy, 0, 1)
const daysSinceBeginningOfYear = Math.floor((value - startDate)
/ (24 * 60 * 60 * 1000))
const weekNumber = Math.ceil(daysSinceBeginningOfYear / 7)
return `${yyyy}-W${weekNumber}`
}
} else {
return ''
}
},
},
}
</script>
<style lang="scss" scoped>
.native-datetime-picker {
display: flex;
flex-direction: column;
}
.native-datetime-picker .native-datetime-picker--input {
width: 100%;
flex: 0 0 auto;
padding-right: 4px;
}
[data-theme-light],
[data-themes*=light] {
.native-datetime-picker--input {
color-scheme: light;
}
}
[data-theme-dark],
[data-themes*=dark] {
.native-datetime-picker--input {
color-scheme: dark;
}
}
[data-theme-default],
[data-themes*=default] {
@media (prefers-color-scheme: light) {
.native-datetime-picker--input {
color-scheme: light;
}
}
@media (prefers-color-scheme: dark) {
.native-datetime-picker--input {
color-scheme: dark;
}
}
}
</style>