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
|
/* eslint no-console:0 */
import 'rc-time-picker/assets/index.less';
import React from 'react';
import ReactDom from 'react-dom';
import moment from 'moment';
import TimePicker from 'rc-time-picker';
const showSecond = true;
const str = showSecond ? 'HH:mm:ss' : 'HH:mm';
const now = moment().hour(14).minute(30);
function generateOptions(length, excludedOptions) {
const arr = [];
for (let value = 0; value < length; value++) {
if (excludedOptions.indexOf(value) < 0) {
arr.push(value);
}
}
return arr;
}
function onChange(value) {
console.log(value && value.format(str));
}
function disabledHours() {
return [0, 1, 2, 3, 4, 5, 6, 7, 8, 22, 23];
}
function disabledMinutes(h) {
switch (h) {
case 9:
return generateOptions(60, [30]);
case 21:
return generateOptions(60, [0]);
default:
return generateOptions(60, [0, 30]);
}
}
function disabledSeconds(h, m) {
return [h + m % 60];
}
ReactDom.render(
<TimePicker
showSecond={showSecond}
defaultValue={now}
className="xxx"
onChange={onChange}
disabledHours={disabledHours}
disabledMinutes={disabledMinutes}
disabledSeconds={disabledSeconds}
/>,
document.getElementById('__react-content')
);
|