forked from vueComponent/ant-design-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYearPanel.jsx
161 lines (156 loc) · 4.67 KB
/
YearPanel.jsx
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
import PropTypes from '../../../_util/vue-types';
import BaseMixin from '../../../_util/BaseMixin';
import { getListeners } from '../../../_util/props-util';
const ROW = 4;
const COL = 3;
function noop() {}
function goYear(direction) {
const value = this.sValue.clone();
value.add(direction, 'year');
this.setState({
sValue: value,
});
}
function chooseYear(year) {
const value = this.sValue.clone();
value.year(year);
value.month(this.sValue.month());
this.sValue = value;
this.__emit('select', value);
}
export default {
mixins: [BaseMixin],
props: {
rootPrefixCls: PropTypes.string,
value: PropTypes.object,
defaultValue: PropTypes.object,
locale: PropTypes.object,
renderFooter: PropTypes.func,
disabledDate: PropTypes.func,
},
data() {
this.nextDecade = goYear.bind(this, 10);
this.previousDecade = goYear.bind(this, -10);
return {
sValue: this.value || this.defaultValue,
};
},
watch: {
value(val) {
this.sValue = val;
},
},
methods: {
years() {
const value = this.sValue;
const currentYear = value.year();
const startYear = parseInt(currentYear / 10, 10) * 10;
const previousYear = startYear - 1;
const years = [];
let index = 0;
for (let rowIndex = 0; rowIndex < ROW; rowIndex++) {
years[rowIndex] = [];
for (let colIndex = 0; colIndex < COL; colIndex++) {
const year = previousYear + index;
const content = String(year);
years[rowIndex][colIndex] = {
content,
year,
title: content,
};
index++;
}
}
return years;
},
},
render() {
const { sValue: value, locale, renderFooter, $props } = this;
const decadePanelShow = getListeners(this).decadePanelShow || noop;
const years = this.years();
const currentYear = value.year();
const startYear = parseInt(currentYear / 10, 10) * 10;
const endYear = startYear + 9;
const prefixCls = `${this.rootPrefixCls}-year-panel`;
const { disabledDate } = $props;
const yeasEls = years.map((row, index) => {
const tds = row.map(yearData => {
let disabled = false;
if (disabledDate) {
const testValue = value.clone();
testValue.year(yearData.year);
disabled = disabledDate(testValue);
}
const classNameMap = {
[`${prefixCls}-cell`]: 1,
[`${prefixCls}-cell-disabled`]: disabled,
[`${prefixCls}-selected-cell`]: yearData.year === currentYear,
[`${prefixCls}-last-decade-cell`]: yearData.year < startYear,
[`${prefixCls}-next-decade-cell`]: yearData.year > endYear,
};
let clickHandler = noop;
if (yearData.year < startYear) {
clickHandler = this.previousDecade;
} else if (yearData.year > endYear) {
clickHandler = this.nextDecade;
} else {
clickHandler = chooseYear.bind(this, yearData.year);
}
return (
<td
role="gridcell"
title={yearData.title}
key={yearData.content}
onClick={disabled ? noop : clickHandler}
class={classNameMap}
>
<a class={`${prefixCls}-year`}>{yearData.content}</a>
</td>
);
});
return (
<tr key={index} role="row">
{tds}
</tr>
);
});
const footer = renderFooter && renderFooter('year');
return (
<div class={prefixCls}>
<div>
<div class={`${prefixCls}-header`}>
<a
class={`${prefixCls}-prev-decade-btn`}
role="button"
onClick={this.previousDecade}
title={locale.previousDecade}
/>
<a
class={`${prefixCls}-decade-select`}
role="button"
onClick={decadePanelShow}
title={locale.decadeSelect}
>
<span class={`${prefixCls}-decade-select-content`}>
{startYear}-{endYear}
</span>
<span class={`${prefixCls}-decade-select-arrow`}>x</span>
</a>
<a
class={`${prefixCls}-next-decade-btn`}
role="button"
onClick={this.nextDecade}
title={locale.nextDecade}
/>
</div>
<div class={`${prefixCls}-body`}>
<table class={`${prefixCls}-table`} cellSpacing="0" role="grid">
<tbody class={`${prefixCls}-tbody`}>{yeasEls}</tbody>
</table>
</div>
{footer && <div class={`${prefixCls}-footer`}>{footer}</div>}
</div>
</div>
);
},
};