forked from WebbyLab/react-components
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMultiSwitcher.jsx
142 lines (113 loc) · 3.81 KB
/
MultiSwitcher.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
var React = require('react');
var cx = require('react-classset');
var _ = require('lodash');
require('./MultiSwitcher.less');
var BORDER_SIZE = 3;
var MultiSwitcher = React.createClass({
propTypes: {
activeId: React.PropTypes.string,
buttons: React.PropTypes.array.isRequired,
disabled: React.PropTypes.bool,
onChange: React.PropTypes.func,
display: React.PropTypes.string
},
getInitialState() {
var activeButton = _.find(this.props.buttons, (btn) => { return btn.id == this.props.activeId; });
return {
activeId: this.props.activeId,
activeLabel: activeButton.label,
left: 0,
width: 0
};
},
componentWillReceiveProps(nextProps) {
var activeButton = _.find(this.props.buttons, (btn) => { return btn.id == nextProps.activeId; });
this.setState({
activeId: nextProps.activeId,
activeLabel: activeButton.label
});
},
getSelectedValue() {
return this.state.activeId;
},
handleClick(id,label) {
if (this.props.disabled) return;
this.setState({
activeId: id,
activeLabel: label
});
if (this.props.dataMap) {
var data = {path:this.props.dataMap, newValue:id};
this.delayedHandleChange(data);
}
if (this.props.onChange && !this.props.dataMap) {
this.delayedHandleChange(id);
}
},
delayedHandleChange: _.debounce(function (data) { this.props.onChange(data); }, 200),
renderSingleBtn(btn) {
var isActive = this.state.activeId === btn.id;
var rectangleClass = cx({
'WLC-active': isActive,
'WLC-RadioBtnWithLabel': true,
});
var labelNode = btn.label
? <span onTouchTap={this.handleClick.bind(this, btn.id, btn.label)}>{btn.label}</span>
: '';
return (
<div ref={isActive ? 'active' : ''}
className={rectangleClass}
key={btn.id}
onTouchTap={this.handleClick.bind(this, btn.id, btn.label)}>
{labelNode}
</div>
);
},
componentDidMount() {
var element = $(this.refs.active.getDOMNode())[0];
this.setState({
left: $(element).offsetLeft,
width: $(element).css('width')
});
},
componentDidUpdate() {
var element = $(this.refs.active.getDOMNode())[0];
this.setState({
left: element.offsetLeft,
width: $(element).css('width')
});
},
shouldComponentUpdate(nextProps, nextState) {
return nextState.activeId != this.state.activeId ||
nextProps.activeId != this.props.activeId ||
nextProps.disabled != this.props.disabled ||
nextState.left != this.state.left;
},
render() {
var curtainStyle = {
'-webkit-transform': `translateX(${this.state.left + BORDER_SIZE}px)`,
'-ms-transform': `translateX(${this.state.left + BORDER_SIZE}px)`,
transform: `translateX(${this.state.left + BORDER_SIZE}px)`,
width: this.state.width
};
var curtainNode = (
<div className='WLC-curtain' style={curtainStyle}>
{this.state.activeLabel}
</div>
);
var radioButtonsNode = _.map(this.props.buttons,(btn,i) => {
return this.renderSingleBtn(btn,i);
});
var rootClass = cx({
'WLC-MultiSwitcher': true,
'WLC-disabled': this.props.disabled,
});
return (
<div className={rootClass}>
{curtainNode}
{radioButtonsNode}
</div>
);
}
});
module.exports = MultiSwitcher;