17e1fcf1
梁灏
init DatePicker
|
1
|
<template>
|
50637863
梁灏
update DatePicker
|
2
|
<div
|
0f677893
梁灏
update DatePicker
|
3
4
5
|
:class="classes"
@click="handleClick"
@mousemove="handleMouseMove">
|
50637863
梁灏
update DatePicker
|
6
|
<div :class="[prefixCls + '-header']">
|
4ab11811
梁灏
some component su...
|
7
|
<span>{{ t('i.datepicker.weeks.sun') }}</span><span>{{ t('i.datepicker.weeks.mon') }}</span><span>{{ t('i.datepicker.weeks.tue') }}</span><span>{{ t('i.datepicker.weeks.wed') }}</span><span>{{ t('i.datepicker.weeks.thu') }}</span><span>{{ t('i.datepicker.weeks.fri') }}</span><span>{{ t('i.datepicker.weeks.sat') }}</span>
|
50637863
梁灏
update DatePicker
|
8
|
</div>
|
531cd165
梁灏
support DatePicke...
|
9
|
<span :class="getCellCls(cell)" v-for="(cell, index) in readCells"><em :index="index">{{ cell.text }}</em></span>
|
50637863
梁灏
update DatePicker
|
10
|
</div>
|
17e1fcf1
梁灏
init DatePicker
|
11
12
|
</template>
<script>
|
b0893113
jingsam
add eslint
|
13
|
import { getFirstDayOfMonth, getDayCountOfMonth } from '../util';
|
50637863
梁灏
update DatePicker
|
14
|
import { deepCopy } from '../../../utils/assist';
|
4ab11811
梁灏
some component su...
|
15
|
import Locale from '../../../mixins/locale';
|
50637863
梁灏
update DatePicker
|
16
17
18
19
20
21
22
23
|
const prefixCls = 'ivu-date-picker-cells';
const clearHours = function (time) {
const cloneDate = new Date(time);
cloneDate.setHours(0, 0, 0, 0);
return cloneDate.getTime();
};
|
0f677893
梁灏
update DatePicker
|
24
|
|
17e1fcf1
梁灏
init DatePicker
|
25
|
export default {
|
4ab11811
梁灏
some component su...
|
26
|
mixins: [ Locale ],
|
0f677893
梁灏
update DatePicker
|
27
28
29
30
|
props: {
date: {},
year: {},
month: {},
|
0f677893
梁灏
update DatePicker
|
31
32
33
|
selectionMode: {
default: 'day'
},
|
0f677893
梁灏
update DatePicker
|
34
35
36
37
38
39
40
|
disabledDate: {},
minDate: {},
maxDate: {},
rangeState: {
default () {
return {
endDate: null,
|
3cf7cfd1
梁灏
update DatePicker
|
41
|
selecting: false
|
0f677893
梁灏
update DatePicker
|
42
43
44
|
};
}
},
|
50637863
梁灏
update DatePicker
|
45
|
value: ''
|
0f677893
梁灏
update DatePicker
|
46
|
},
|
17e1fcf1
梁灏
init DatePicker
|
47
|
data () {
|
0f677893
梁灏
update DatePicker
|
48
|
return {
|
fa3a666d
梁灏
update DatePicker
|
49
50
|
prefixCls: prefixCls,
readCells: []
|
b0893113
jingsam
add eslint
|
51
|
};
|
0f677893
梁灏
update DatePicker
|
52
|
},
|
472b4ff1
梁灏
update DatePicker
|
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
watch: {
'rangeState.endDate' (newVal) {
this.markRange(newVal);
},
minDate(newVal, oldVal) {
if (newVal && !oldVal) {
this.rangeState.selecting = true;
this.markRange(newVal);
} else if (!newVal) {
this.rangeState.selecting = false;
this.markRange(newVal);
} else {
this.markRange();
}
},
maxDate(newVal, oldVal) {
if (newVal && !oldVal) {
this.rangeState.selecting = false;
this.markRange(newVal);
|
3602b78d
梁灏
update DatePicker
|
72
73
74
75
|
// this.$emit('on-pick', {
// minDate: this.minDate,
// maxDate: this.maxDate
// });
|
472b4ff1
梁灏
update DatePicker
|
76
|
}
|
fa3a666d
梁灏
update DatePicker
|
77
|
},
|
7c5ccdab
梁灏
update DatePicker
|
78
79
80
81
82
|
cells: {
handler (cells) {
this.readCells = cells;
},
immediate: true
|
472b4ff1
梁灏
update DatePicker
|
83
84
|
}
},
|
0f677893
梁灏
update DatePicker
|
85
86
87
|
computed: {
classes () {
return [
|
50637863
梁灏
update DatePicker
|
88
|
`${prefixCls}`
|
b0893113
jingsam
add eslint
|
89
|
];
|
50637863
梁灏
update DatePicker
|
90
|
},
|
50637863
梁灏
update DatePicker
|
91
92
93
94
95
96
|
cells () {
const date = new Date(this.year, this.month, 1);
let day = getFirstDayOfMonth(date); // day of first day
day = (day === 0 ? 7 : day);
const today = clearHours(new Date()); // timestamp of today
const selectDay = clearHours(new Date(this.value)); // timestamp of selected day
|
3cf7cfd1
梁灏
update DatePicker
|
97
98
|
const minDay = clearHours(new Date(this.minDate));
const maxDay = clearHours(new Date(this.maxDate));
|
50637863
梁灏
update DatePicker
|
99
100
101
102
103
104
105
106
107
108
109
|
const dateCountOfMonth = getDayCountOfMonth(date.getFullYear(), date.getMonth());
const dateCountOfLastMonth = getDayCountOfMonth(date.getFullYear(), (date.getMonth() === 0 ? 11 : date.getMonth() - 1));
const disabledDate = this.disabledDate;
let cells = [];
const cell_tmpl = {
text: '',
type: '',
selected: false,
|
3cf7cfd1
梁灏
update DatePicker
|
110
111
112
113
|
disabled: false,
range: false,
start: false,
end: false
|
50637863
梁灏
update DatePicker
|
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
|
};
if (day !== 7) {
for (let i = 0; i < day; i++) {
const cell = deepCopy(cell_tmpl);
cell.type = 'prev-month';
cell.text = dateCountOfLastMonth - (day - 1) + i;
let prevMonth = this.month - 1;
let prevYear = this.year;
if (this.month === 0) {
prevMonth = 11;
prevYear -= 1;
}
const time = clearHours(new Date(prevYear, prevMonth, cell.text));
cell.disabled = typeof disabledDate === 'function' && disabledDate(new Date(time));
cells.push(cell);
}
}
for (let i = 1; i <= dateCountOfMonth; i++) {
const cell = deepCopy(cell_tmpl);
const time = clearHours(new Date(this.year, this.month, i));
cell.type = time === today ? 'today' : 'normal';
cell.text = i;
cell.selected = time === selectDay;
cell.disabled = typeof disabledDate === 'function' && disabledDate(new Date(time));
|
3cf7cfd1
梁灏
update DatePicker
|
140
141
142
143
|
cell.range = time >= minDay && time <= maxDay;
cell.start = this.minDate && time === minDay;
cell.end = this.maxDate && time === maxDay;
|
50637863
梁灏
update DatePicker
|
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
cells.push(cell);
}
const nextMonthCount = 42 - cells.length;
for (let i = 1; i <= nextMonthCount; i++) {
const cell = deepCopy(cell_tmpl);
cell.type = 'next-month';
cell.text = i;
let nextMonth = this.month + 1;
let nextYear = this.year;
if (this.month === 11) {
nextMonth = 0;
nextYear += 1;
}
const time = clearHours(new Date(nextYear, nextMonth, cell.text));
cell.disabled = typeof disabledDate === 'function' && disabledDate(new Date(time));
cells.push(cell);
}
return cells;
|
0f677893
梁灏
update DatePicker
|
165
|
}
|
17e1fcf1
梁灏
init DatePicker
|
166
|
},
|
0f677893
梁灏
update DatePicker
|
167
|
methods: {
|
472b4ff1
梁灏
update DatePicker
|
168
169
170
171
172
|
getDateOfCell (cell) {
let year = this.year;
let month = this.month;
let day = cell.text;
|
5cc9b892
梁灏
update DateTimePi...
|
173
174
175
176
177
|
const date = this.date;
const hours = date.getHours();
const minutes = date.getMinutes();
const seconds = date.getSeconds();
|
472b4ff1
梁灏
update DatePicker
|
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
if (cell.type === 'prev-month') {
if (month === 0) {
month = 11;
year--;
} else {
month--;
}
} else if (cell.type === 'next-month') {
if (month === 11) {
month = 0;
year++;
} else {
month++;
}
}
|
5cc9b892
梁灏
update DateTimePi...
|
194
|
return new Date(year, month, day, hours, minutes, seconds);
|
472b4ff1
梁灏
update DatePicker
|
195
|
},
|
c46f385a
梁灏
update DatePicker
|
196
197
198
199
200
|
handleClick (event) {
const target = event.target;
if (target.tagName === 'EM') {
const cell = this.cells[parseInt(event.target.getAttribute('index'))];
if (cell.disabled) return;
|
0f677893
梁灏
update DatePicker
|
201
|
|
472b4ff1
梁灏
update DatePicker
|
202
|
const newDate = this.getDateOfCell(cell);
|
c46f385a
梁灏
update DatePicker
|
203
204
|
if (this.selectionMode === 'range') {
|
3cf7cfd1
梁灏
update DatePicker
|
205
206
207
|
if (this.minDate && this.maxDate) {
const minDate = new Date(newDate.getTime());
const maxDate = null;
|
3cf7cfd1
梁灏
update DatePicker
|
208
209
|
this.rangeState.selecting = true;
this.markRange(this.minDate);
|
472b4ff1
梁灏
update DatePicker
|
210
211
|
this.$emit('on-pick', {minDate, maxDate}, false);
|
3cf7cfd1
梁灏
update DatePicker
|
212
213
214
215
216
217
218
219
220
221
222
223
224
|
} else if (this.minDate && !this.maxDate) {
if (newDate >= this.minDate) {
const maxDate = new Date(newDate.getTime());
this.rangeState.selecting = false;
this.$emit('on-pick', {minDate: this.minDate, maxDate});
} else {
const minDate = new Date(newDate.getTime());
this.$emit('on-pick', {minDate, maxDate: this.maxDate}, false);
}
} else if (!this.minDate) {
const minDate = new Date(newDate.getTime());
|
3cf7cfd1
梁灏
update DatePicker
|
225
226
|
this.rangeState.selecting = true;
this.markRange(this.minDate);
|
472b4ff1
梁灏
update DatePicker
|
227
228
|
this.$emit('on-pick', {minDate, maxDate: this.maxDate}, false);
|
3cf7cfd1
梁灏
update DatePicker
|
229
|
}
|
c46f385a
梁灏
update DatePicker
|
230
231
232
233
|
} else {
this.$emit('on-pick', newDate);
}
}
|
68e9b100
梁灏
update DatePicker
|
234
|
this.$emit('on-pick-click');
|
0f677893
梁灏
update DatePicker
|
235
|
},
|
472b4ff1
梁灏
update DatePicker
|
236
237
|
handleMouseMove (event) {
if (!this.rangeState.selecting) return;
|
0f677893
梁灏
update DatePicker
|
238
|
|
472b4ff1
梁灏
update DatePicker
|
239
240
241
242
243
244
245
246
247
248
249
250
|
this.$emit('on-changerange', {
minDate: this.minDate,
maxDate: this.maxDate,
rangeState: this.rangeState
});
const target = event.target;
if (target.tagName === 'EM') {
const cell = this.cells[parseInt(event.target.getAttribute('index'))];
// if (cell.disabled) return; // todo 待确定
this.rangeState.endDate = this.getDateOfCell(cell);
}
|
0f677893
梁灏
update DatePicker
|
251
|
},
|
3cf7cfd1
梁灏
update DatePicker
|
252
|
markRange (maxDate) {
|
3cf7cfd1
梁灏
update DatePicker
|
253
|
const minDate = this.minDate;
|
472b4ff1
梁灏
update DatePicker
|
254
255
256
257
258
259
260
261
262
263
264
|
if (!maxDate) maxDate = this.maxDate;
const minDay = clearHours(new Date(minDate));
const maxDay = clearHours(new Date(maxDate));
this.cells.forEach(cell => {
if (cell.type === 'today' || cell.type === 'normal') {
const time = clearHours(new Date(this.year, this.month, cell.text));
cell.range = time >= minDay && time <= maxDay;
cell.start = minDate && time === minDay;
cell.end = maxDate && time === maxDay;
|
3cf7cfd1
梁灏
update DatePicker
|
265
|
}
|
472b4ff1
梁灏
update DatePicker
|
266
|
});
|
3cf7cfd1
梁灏
update DatePicker
|
267
|
},
|
0f677893
梁灏
update DatePicker
|
268
269
270
271
|
getCellCls (cell) {
return [
`${prefixCls}-cell`,
{
|
3cf7cfd1
梁灏
update DatePicker
|
272
|
[`${prefixCls}-cell-selected`]: cell.selected || cell.start || cell.end,
|
50637863
梁灏
update DatePicker
|
273
274
275
|
[`${prefixCls}-cell-disabled`]: cell.disabled,
[`${prefixCls}-cell-today`]: cell.type === 'today',
[`${prefixCls}-cell-prev-month`]: cell.type === 'prev-month',
|
3cf7cfd1
梁灏
update DatePicker
|
276
277
|
[`${prefixCls}-cell-next-month`]: cell.type === 'next-month',
[`${prefixCls}-cell-range`]: cell.range && !cell.start && !cell.end
|
0f677893
梁灏
update DatePicker
|
278
|
}
|
b0893113
jingsam
add eslint
|
279
|
];
|
50637863
梁灏
update DatePicker
|
280
281
|
},
|
0f677893
梁灏
update DatePicker
|
282
|
}
|
b0893113
jingsam
add eslint
|
283
284
|
};
</script>
|