-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Expand file tree
/
Copy pathRequestTime.vue
More file actions
150 lines (134 loc) · 3.14 KB
/
Copy pathRequestTime.vue
File metadata and controls
150 lines (134 loc) · 3.14 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
<!--
- SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div class="timeslot">
<input
v-model="newValue.startTime"
type="text"
class="timeslot--start"
placeholder="e.g. 08:00"
@input="update">
<input
v-model="newValue.endTime"
type="text"
placeholder="e.g. 18:00"
@input="update">
<p v-if="!valid" class="invalid-hint">
{{ t('workflowengine', 'Please enter a valid time span') }}
</p>
<NcSelect
v-show="valid"
v-model="newValue.timezone"
:clearable="false"
:options="timezones"
@input="update" />
</div>
</template>
<script>
import moment from 'moment-timezone'
import NcSelect from '@nextcloud/vue/components/NcSelect'
const zones = moment.tz.names()
export default {
name: 'RequestTime',
components: {
NcSelect,
},
props: {
modelValue: {
type: String,
default: '[]',
},
},
emits: ['update:model-value'],
data() {
return {
timezones: zones,
valid: false,
newValue: {
startTime: null,
endTime: null,
timezone: moment.tz.guess(),
},
stringifiedValue: '[]',
}
},
watch: {
modelValue() {
this.updateInternalValue()
},
},
beforeMount() {
// this is necessary to keep so the value is re-applied when a different
// check is being removed.
this.updateInternalValue()
},
methods: {
updateInternalValue() {
try {
const data = JSON.parse(this.modelValue)
if (data.length === 2) {
this.newValue = {
startTime: data[0].split(' ', 2)[0],
endTime: data[1].split(' ', 2)[0],
timezone: data[0].split(' ', 2)[1],
}
this.stringifiedValue = `["${this.newValue.startTime} ${this.newValue.timezone}","${this.newValue.endTime} ${this.newValue.timezone}"]`
this.validate()
}
} catch {
// ignore invalid values
}
},
validate() {
this.valid = this.newValue.startTime && this.newValue.startTime.match(/^(0[0-9]|1[0-9]|2[0-3]|[0-9]):[0-5][0-9]$/i) !== null
&& this.newValue.endTime && this.newValue.endTime.match(/^(0[0-9]|1[0-9]|2[0-3]|[0-9]):[0-5][0-9]$/i) !== null
&& moment.tz.zone(this.newValue.timezone) !== null
if (this.valid) {
this.$emit('valid')
} else {
this.$emit('invalid')
}
return this.valid
},
update() {
if (this.newValue.timezone === null) {
this.newValue.timezone = moment.tz.guess()
}
if (this.validate()) {
this.stringifiedValue = `["${this.newValue.startTime} ${this.newValue.timezone}","${this.newValue.endTime} ${this.newValue.timezone}"]`
this.$emit('update:model-value', this.stringifiedValue)
}
},
},
}
</script>
<style scoped lang="scss">
.timeslot {
display: flex;
flex-grow: 1;
flex-wrap: wrap;
max-width: 180px;
.multiselect {
width: 100%;
margin-bottom: 5px;
}
.multiselect:deep(.multiselect__tags:not(:hover):not(:focus):not(:active)) {
border: 1px solid transparent;
}
input[type=text] {
width: 50%;
margin: 0;
margin-bottom: 5px;
min-height: 48px;
&.timeslot--start {
margin-inline-end: 5px;
width: calc(50% - 5px);
}
}
.invalid-hint {
color: var(--color-text-maxcontrast);
}
}
</style>