-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathSelect.jsx
More file actions
136 lines (122 loc) · 3.26 KB
/
Select.jsx
File metadata and controls
136 lines (122 loc) · 3.26 KB
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
/* eslint jsx-a11y/no-noninteractive-element-to-interactive-role: 0 */
import React, { Component } from 'react';
import classNames from 'classnames';
import raf from 'raf';
const scrollTo = (element, to, duration) => {
// jump to target if duration zero
if (duration <= 0) {
raf(() => {
// eslint-disable-next-line no-param-reassign
element.scrollTop = to;
});
return;
}
const difference = to - element.scrollTop;
const perTick = (difference / duration) * 10;
raf(() => {
// eslint-disable-next-line no-param-reassign
element.scrollTop += perTick;
if (element.scrollTop === to) return;
scrollTo(element, to, duration - 10);
});
};
class Select extends Component {
state = {
active: false,
};
componentDidMount() {
// jump to selected option
this.scrollToSelected(0);
}
componentDidUpdate(prevProps) {
const { selectedIndex } = this.props;
// smooth scroll to selected option
if (prevProps.selectedIndex !== selectedIndex) {
this.scrollToSelected(120);
}
}
onSelect = (value, e) => {
const { onSelect, type } = this.props;
onSelect(type, value, e);
};
getOptions() {
const { options, selectedIndex, prefixCls, onEsc } = this.props;
return options.map((item, index) => {
const cls = classNames({
[`${prefixCls}-select-option-selected`]: selectedIndex === index,
[`${prefixCls}-select-option-disabled`]: item.disabled,
});
const onClick = item.disabled
? undefined
: (e) => {
this.onSelect(item.value, e);
};
const onKeyDown = e => {
if (e.keyCode === 13) onClick(e);
else if (e.keyCode === 27) onEsc();
};
return (
<li
role="button"
onClick={onClick}
className={cls}
key={index} // eslint-disable-line react/no-array-index-key
disabled={item.disabled}
tabIndex="0"
onKeyDown={onKeyDown}
>
{item.value}
</li>
);
});
}
handleMouseEnter = e => {
const { onMouseEnter } = this.props;
this.setState({ active: true });
onMouseEnter(e);
};
handleMouseLeave = () => {
this.setState({ active: false });
};
saveRoot = node => {
this.root = node;
};
saveList = node => {
this.list = node;
};
scrollToSelected(duration) {
// move to selected item
const { selectedIndex } = this.props;
if (!this.list) {
return;
}
let index = selectedIndex;
if (index < 0) {
index = 0;
}
const topOption = this.list.children[index];
const to = topOption.offsetTop + topOption.offsetHeight / 2 - this.root.offsetHeight / 2; // align center
scrollTo(this.root, to, duration);
}
render() {
const { prefixCls, options } = this.props;
const { active } = this.state;
if (options.length === 0) {
return null;
}
const cls = classNames(`${prefixCls}-select`, {
[`${prefixCls}-select-active`]: active,
});
return (
<div
className={cls}
onMouseEnter={this.handleMouseEnter}
onMouseLeave={this.handleMouseLeave}
ref={this.saveRoot}
>
<ul ref={this.saveList}>{this.getOptions()}</ul>
</div>
);
}
}
export default Select;