-
-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathSchedule.vue
More file actions
178 lines (130 loc) · 2.65 KB
/
Copy pathSchedule.vue
File metadata and controls
178 lines (130 loc) · 2.65 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
<template>
<div class="ds-schedule"
:class="classes">
<div class="ds-schedule-span" v-if="showRange">
<!-- Span -->
<slot name="scheduleSpan" v-bind="{schedule, day}">
<ds-schedule-span
:schedule="schedule"
:day="day"
:read-only="readOnly"
></ds-schedule-span>
</slot>
</div>
<div class="ds-schedule-type-line">
<div class="ds-schedule-type">
<!-- Type -->
<slot name="scheduleType" v-bind="{schedule, day, setType, custom}">
<ds-schedule-type
:day="day"
:schedule="schedule"
:read-only="readOnly"
@change="setType"
@custom="custom"
></ds-schedule-type>
</slot>
</div>
</div>
<v-layout row wrap>
<v-flex xs12>
<!-- Times -->
<slot name="scheduleTimes" v-bind="{schedule, day}">
<ds-schedule-times
:schedule="schedule"
:read-only="readOnly"
></ds-schedule-times>
</slot>
</v-flex>
<v-flex xs12 v-if="!isReadOnly">
<slot name="scheduleFooter" v-bind="{schedule, day}"></slot>
<!-- Custom -->
<ds-schedule-type-custom-dialog
v-bind="{$scopedSlots}"
ref="customScheduler"
></ds-schedule-type-custom-dialog>
</v-flex>
</v-layout>
</div>
</template>
<script>
import { Day, Schedule, Functions as fn } from 'dayspan';
export default {
name: 'dsSchedule',
props:
{
schedule:
{
required: true,
type: Schedule
},
day:
{
type: Day
},
readOnly:
{
type: Boolean,
default: false
},
labels:
{
validate(x) {
return this.$dsValidate(x, 'labels');
},
default() {
return this.$dsDefaults().labels;
}
},
allowsRange:
{
type: Boolean,
default() {
return this.$dsDefaults().allowsRange;
}
}
},
data: vm => ({
}),
computed:
{
showRange()
{
return this.allowsRange && !this.schedule.isSingleEvent();
},
classes()
{
return {
'ds-schedule-small': this.$vuetify.breakpoint.smAndDown
};
},
isReadOnly()
{
return this.readOnly || this.$dayspan.readOnly;
}
},
methods:
{
custom()
{
this.$refs.customScheduler.edit(this.schedule, this.day);
},
setType(type)
{
this.$emit('type', type);
}
}
}
</script>
<style lang="scss">
.ds-schedule {
.ds-schedule-type {
max-width: 436px;
padding-right: 8px;
}
&.ds-schedule-small {
.ds-schedule-type {
width: 100%;
}
}
}
</style>