forked from pencilpix/vue2-clock-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClockPicker.vue
358 lines (297 loc) · 8.13 KB
/
ClockPicker.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
<template>
<div class="clock-picker">
<div
:class="{
[inputContainerClass]: true,
[inputValueClass]: hasValue,
[inputErrorClass]: hasError && isTouched,
[inputFocusClass]: isFocused,
}">
<label :for="uuid" v-if="label" :class="labelClass">{{ label }}</label>
<input
type="text"
:id="uuid"
:name="name"
:placeholder="placeholder"
:class="inputClass"
:value="value"
readonly
ref="input"
@click="open">
<slot name="error" :has-error="hasError" :is-touched="isTouched">
{{ hasError && isTouched ? 'Error' : '' }}
</slot>
</div>
<clock-picker-dialog ref="dialog"
:initial-value="hasError || !value ? '--:--' : value"
:disabled-from="disabledFrom"
:disabled-to="disabledTo"
:done-text="doneText"
:cancel-text="cancelText"
:color="color"
:disabled-color="disabledColor"
:active-color="activeColor"
:active-text-color="activeTextColor"
:close-on-overlay="closeOnOverlay"
:font="font"
@cancel="cancel($event)"
@done="handleDone($event)">
</clock-picker-dialog>
</div>
</template>
<script>
import ClockPickerDialog from './ClockPickerDialog.vue';
/**
* generate randomly unique id
* via random number and date
* @return {String} unique id
*/
const ID = () => {
const random = Math.random().toString(36).substring(2, 9);
const now = Date.now().toString(36);
return `clock_picker_input_${now + random}`;
};
const classes = {
container: 'clock-picker__input-container',
focus: 'clock-picker__input--focused',
error: 'clock-picker__input--error',
value: 'clock-picker__input--has-value',
input: 'clock-picker__input',
label: 'clock-picker__label',
};
export default {
name: 'VueClockPicker',
props: {
inputContainerClass: { type: String, default: classes.container },
inputClass: { type: String, default: classes.input },
inputFocusClass: { type: String, default: classes.focus },
inputErrorClass: { type: String, default: classes.error },
inputValueClass: { type: String, default: classes.value },
labelClass: { type: String, default: classes.label },
placeholder: { type: String, default: '' },
name: { type: String, default: 'time_input' },
label: { type: String, default: '' },
id: { type: String, default: null },
required: { type: Boolean, default: false },
value: { type: String, default: '' },
disabledFrom: { type: String, default: '' },
disabledTo: { type: String, default: '' },
doneText: { type: String, default: 'done' },
cancelText: { type: String, default: 'cancel' },
activeColor: { type: String, default: '#a48bd1' },
activeTextColor: { type: String, default: 'white' },
color: { type: String, default: '#757575' },
disabledColor: { type: String, default: '#ddd' },
closeOnEsc: { type: Boolean, default: false },
closeOnOverlay: { type: Boolean, default: false },
font: { type: String, default: 'Roboto, arial, san-serif' },
},
components: {
ClockPickerDialog,
},
data() {
return {
isFocused: false,
dialogOpen: false,
showError: false,
isTouched: false,
uuid: this.id || ID(),
timeErrors: {},
};
},
computed: {
/**
* check if has error
*/
hasError() {
return this.checkErrors() && this.isTouched;
},
hasValue() {
return !!this.value;
},
},
methods: {
/**
* open the dialog of clockpicker
*/
open() {
this.emitEvent('beforeOpen');
this.$refs.dialog.open();
this.$nextTick(() => {
this.emitEvent('open');
});
},
/**
* close the dialog of clockpicker
*/
close() {
this.emitEvent('beforeClose');
this.$refs.dialog.close();
this.$nextTick(() => {
this.emitEvent('close');
this.isTouched = true;
});
},
/**
* emit cancel and close.
* @param {String} time value at the cancel time.
*/
cancel(time) {
this.emitEvent('cancel', time);
this.close();
},
/**
* bind Escape key to Cancel.
*/
onKeydown(e) {
if (e.key === 'Escape') {
this.cancel();
}
},
/**
* handle set time and check validation
* @param {String} time in format HH:MM
*/
handleDone(time) {
this.$emit('input', time);
this.validate();
this.$emit('timeset', time);
this.close();
},
/**
* @param {String} name event.
* @param {any} value data to be recieved by listener
*/
emitEvent(name, value) {
this.$emit(name, value);
},
/**
* get current value
* @return {String} current input value in format `HH:MM`.
*/
getValue() {
return this.value;
},
/**
* set value to dedicated time
* @param {String} time matches `HH:MM`.
*/
setValue(time) {
this.handleDone(time);
},
/**
* check the current input value
* is match pattern `HH:MM` or not
* @return {Boolean}
*/
isValid() {
const pattern = /^([0-9]|0[0-9]|1[0-9]|2[0-3]):[0-5][0-9]$/;
return pattern.test(this.value);
},
/**
* check if a value should be disabled
* @param {String} value hh:mm
* @return {Boolean}
*/
isDisabled(value) {
const startHr = parseInt(this.disabledFrom.slice(0, 2), 10);
const endHr = parseInt(this.disabledTo.slice(0, 2), 10);
const startMin = parseInt(this.disabledFrom.slice(3), 10);
const endMin = parseInt(this.disabledTo.slice(3), 10);
const valueHr = parseInt(value.slice(0, 2), 10);
const valueMin = parseInt(value.slice(3), 10);
const minutesCondition =
(valueHr === startHr && valueMin >= startMin) ||
(valueHr === endHr && valueMin <= endMin);
// if disabled overnight like 19:00 - 06:00
if (startHr > endHr) {
return valueHr > startHr || valueHr < endHr || minutesCondition;
}
// regular case not passsing over midnight
return (valueHr > startHr && valueHr < endHr) || minutesCondition;
},
/**
* check if there is any error
* @return {Boolean} has error or not
*/
checkErrors() {
const required = this.required && !this.value;
const notValid = this.value && !this.isValid();
const disabled = this.value && this.isDisabled(this.value);
this.timeErrors = Object.assign(this.timeErrors, { required, notValid, disabled });
return required || notValid || disabled;
},
/**
* validate the current value of input
*/
validate() {
this.showError = this.checkErrors();
this.isTouched = true;
},
},
mounted() {
if (this.value) {
this.validate();
}
if (this.closeOnEsc) {
document.body.addEventListener('keydown', this.onKeydown);
}
},
destroy() {
if (this.closeOnEsc) {
document.body.removeEventListener('keydown', this.onKeydown);
}
},
};
</script>
<style lang="sass">
@import '~theme/theme'
.clock-picker
&__input
border: 1px solid darken($gray-light, 10%)
&__input--error
&,
&.clock-picker__input--has-value
color: #F44336
.clock-picker__input
border-color: #F44336
&__input--has-value
.clock-picker__input
border-color: #00E676
&__button
background: none
width: 24px
height: 24px
display: inline-block
border: 0
border-radius: 12px
line-height: 24px
padding: 0
margin: 0
cursor: pointer
color: $gray
font-weight: 500
font-size: 13px
&:hover
background-color: $gray-light
&:active
background-color: darken($gray-light, 3%)
&:focus
background-color: darken($gray-light, 5%)
&--active
&,
&:active,
&:hover,
&:focus
background-color: $primary
color: $white
&[disabled]
opacity: .4 !important
cursor: default
&,
&:active,
&:hover,
&:focus
background-color: $gray-light
color: $gray
</style>