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
|
import React, { PropTypes } from 'react';
import Select from './Select';
const formatOption = (option, disabledOptions) => {
let value = `${option}`;
if (option < 10) {
value = `0${option}`;
}
let disabled = false;
if (disabledOptions && disabledOptions.indexOf(option) >= 0) {
disabled = true;
}
return {
value,
disabled,
};
};
const Combobox = React.createClass({
propTypes: {
format: PropTypes.string,
defaultOpenValue: PropTypes.object,
prefixCls: PropTypes.string,
value: PropTypes.object,
onChange: PropTypes.func,
showHour: PropTypes.bool,
showSecond: PropTypes.bool,
hourOptions: PropTypes.array,
minuteOptions: PropTypes.array,
secondOptions: PropTypes.array,
disabledHours: PropTypes.func,
disabledMinutes: PropTypes.func,
disabledSeconds: PropTypes.func,
onCurrentSelectPanelChange: PropTypes.func,
},
onItemChange(type, itemValue) {
const { onChange, defaultOpenValue } = this.props;
const value = (this.props.value || defaultOpenValue).clone();
if (type === 'hour') {
value.hour(itemValue);
} else if (type === 'minute') {
value.minute(itemValue);
} else {
value.second(itemValue);
}
onChange(value);
},
onEnterSelectPanel(range) {
this.props.onCurrentSelectPanelChange(range);
},
getHourSelect(hour) {
const { prefixCls, hourOptions, disabledHours, showHour } = this.props;
if (!showHour) {
return null;
}
const disabledOptions = disabledHours();
return (
<Select
prefixCls={prefixCls}
options={hourOptions.map(option => formatOption(option, disabledOptions))}
selectedIndex={hourOptions.indexOf(hour)}
type="hour"
onSelect={this.onItemChange}
onMouseEnter={this.onEnterSelectPanel.bind(this, 'hour')}
/>
);
},
getMinuteSelect(minute) {
const { prefixCls, minuteOptions, disabledMinutes, defaultOpenValue } = this.props;
const value = this.props.value || defaultOpenValue;
const disabledOptions = disabledMinutes(value.hour());
return (
<Select
prefixCls={prefixCls}
options={minuteOptions.map(option => formatOption(option, disabledOptions))}
selectedIndex={minuteOptions.indexOf(minute)}
type="minute"
onSelect={this.onItemChange}
onMouseEnter={this.onEnterSelectPanel.bind(this, 'minute')}
/>
);
},
getSecondSelect(second) {
const { prefixCls, secondOptions, disabledSeconds, showSecond, defaultOpenValue } = this.props;
if (!showSecond) {
return null;
}
const value = this.props.value || defaultOpenValue;
const disabledOptions = disabledSeconds(value.hour(), value.minute());
return (
<Select
prefixCls={prefixCls}
options={secondOptions.map(option => formatOption(option, disabledOptions))}
selectedIndex={secondOptions.indexOf(second)}
type="second"
onSelect={this.onItemChange}
onMouseEnter={this.onEnterSelectPanel.bind(this, 'second')}
/>
);
},
render() {
const { prefixCls, defaultOpenValue } = this.props;
const value = this.props.value || defaultOpenValue;
return (
<div className={`${prefixCls}-combobox`}>
{this.getHourSelect(value.hour())}
{this.getMinuteSelect(value.minute())}
{this.getSecondSelect(value.second())}
</div>
);
},
});
export default Combobox;
|