Blame view

src/components/date-picker/base/date-table.vue 9.34 KB
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
7
8
          <div :class="[prefixCls + '-header']">
              <span>日</span><span>一</span><span>二</span><span>三</span><span>四</span><span>五</span><span>六</span>
          </div>
c46f385a   梁灏   update DatePicker
9
          <span :class="getCellCls(cell)" v-for="cell in cells"><em :index="$index">{{ cell.text }}</em></span>
50637863   梁灏   update DatePicker
10
      </div>
17e1fcf1   梁灏   init DatePicker
11
12
  </template>
  <script>
50637863   梁灏   update DatePicker
13
14
15
16
17
18
19
20
21
22
      import { getFirstDayOfMonth, getDayCountOfMonth, getStartDateOfMonth } from '../util';
      import { deepCopy } from '../../../utils/assist';
  
      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
23
  
17e1fcf1   梁灏   init DatePicker
24
      export default {
0f677893   梁灏   update DatePicker
25
26
27
28
          props: {
              date: {},
              year: {},
              month: {},
0f677893   梁灏   update DatePicker
29
30
31
              selectionMode: {
                  default: 'day'
              },
0f677893   梁灏   update DatePicker
32
33
34
35
36
37
38
              disabledDate: {},
              minDate: {},
              maxDate: {},
              rangeState: {
                  default () {
                      return {
                          endDate: null,
3cf7cfd1   梁灏   update DatePicker
39
                          selecting: false
0f677893   梁灏   update DatePicker
40
41
42
                      };
                  }
              },
50637863   梁灏   update DatePicker
43
              value: ''
0f677893   梁灏   update DatePicker
44
          },
17e1fcf1   梁灏   init DatePicker
45
          data () {
0f677893   梁灏   update DatePicker
46
47
48
49
50
51
52
              return {
                  prefixCls: prefixCls
              }
          },
          computed: {
              classes () {
                  return [
50637863   梁灏   update DatePicker
53
                      `${prefixCls}`
0f677893   梁灏   update DatePicker
54
                  ]
50637863   梁灏   update DatePicker
55
56
57
58
59
60
61
62
63
64
              },
              startDate() {
                  return getStartDateOfMonth(this.year, this.month);
              },
              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
65
66
                  const minDay = clearHours(new Date(this.minDate));
                  const maxDay = clearHours(new Date(this.maxDate));
50637863   梁灏   update DatePicker
67
68
69
70
71
72
73
74
75
76
77
  
                  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
78
79
80
81
                      disabled: false,
                      range: false,
                      start: false,
                      end: false
50637863   梁灏   update DatePicker
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
                  };
                  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
108
109
110
111
                      cell.range = time >= minDay && time <= maxDay;
                      cell.start = this.minDate && time === minDay;
                      cell.end = this.maxDate && time === maxDay;
  
50637863   梁灏   update DatePicker
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
                      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
133
              }
17e1fcf1   梁灏   init DatePicker
134
          },
0f677893   梁灏   update DatePicker
135
          methods: {
c46f385a   梁灏   update DatePicker
136
137
138
139
140
              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
141
  
c46f385a   梁灏   update DatePicker
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
                      let year = this.year;
                      let month = this.month;
                      let day = cell.text;
  
                      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++;
                          }
                      }
  
                      const newDate = new Date(year, month, day);
  
                      if (this.selectionMode === 'range') {
                          // todo
3cf7cfd1   梁灏   update DatePicker
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
                          if (this.minDate && this.maxDate) {
                              const minDate = new Date(newDate.getTime());
                              const maxDate = null;
                              this.$emit('on-pick', {minDate, maxDate}, false);
                              this.rangeState.selecting = true;
                              this.markRange(this.minDate);
                          } 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());
  
                              this.$emit('on-pick', {minDate, maxDate: this.maxDate}, false);
                              this.rangeState.selecting = true;
                              this.markRange(this.minDate);
                          }
c46f385a   梁灏   update DatePicker
190
191
192
193
                      } else {
                          this.$emit('on-pick', newDate);
                      }
                  }
0f677893   梁灏   update DatePicker
194
195
196
197
              },
              handleMouseMove () {
  
              },
3cf7cfd1   梁灏   update DatePicker
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
              markRange (maxDate) {
                  const startDate = this.startDate;
                  if (!maxDate) {
                      maxDate = this.maxDate;
                  }
  
                  const rows = this.rows;
                  const minDate = this.minDate;
                  for (var i = 0, k = rows.length; i < k; i++) {
                      const row = rows[i];
                      for (var j = 0, l = row.length; j < l; j++) {
                          if (this.showWeekNumber && j === 0) continue;
  
                          const cell = row[j];
                          const index = i * 7 + j + (this.showWeekNumber ? -1 : 0);
                          const time = startDate.getTime() + DAY_DURATION * index;
  
                          cell.inRange = minDate && time >= clearHours(minDate) && time <= clearHours(maxDate);
                          cell.start = minDate && time === clearHours(minDate.getTime());
                          cell.end = maxDate && time === clearHours(maxDate.getTime());
                      }
                  }
              },
0f677893   梁灏   update DatePicker
221
222
223
224
              getCellCls (cell) {
                  return [
                      `${prefixCls}-cell`,
                      {
3cf7cfd1   梁灏   update DatePicker
225
                          [`${prefixCls}-cell-selected`]: cell.selected || cell.start || cell.end,
50637863   梁灏   update DatePicker
226
227
228
                          [`${prefixCls}-cell-disabled`]: cell.disabled,
                          [`${prefixCls}-cell-today`]: cell.type === 'today',
                          [`${prefixCls}-cell-prev-month`]: cell.type === 'prev-month',
3cf7cfd1   梁灏   update DatePicker
229
230
                          [`${prefixCls}-cell-next-month`]: cell.type === 'next-month',
                          [`${prefixCls}-cell-range`]: cell.range && !cell.start && !cell.end
0f677893   梁灏   update DatePicker
231
232
                      }
                  ]
50637863   梁灏   update DatePicker
233
234
              },
  
0f677893   梁灏   update DatePicker
235
          }
17e1fcf1   梁灏   init DatePicker
236
237
      }
  </script>