-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSwitcher.jsx
68 lines (54 loc) · 1.79 KB
/
Switcher.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
var React = require('react');
var cx = require('react-classset');
var _ = require('lodash');
require('./Switcher.less');
var Switcher = React.createClass({
propTypes: {
disabled: React.PropTypes.bool,
isEnabled: React.PropTypes.bool,
onClick: React.PropTypes.func
},
getInitialState() {
return {
isEnabled: this.props.isEnabled
};
},
componentWillReceiveProps(nextProps) {
this.setState({
isEnabled: nextProps.isEnabled
});
},
shouldComponentUpdate(nextProps, nextState) {
return !_.isEqual(nextProps, this.props) || (!_.isEqual(nextState, this.state));
},
_handleClick() {
if (this.props.disabled) return;
var isEnabled = !this.state.isEnabled;
this.setState({
isEnabled: isEnabled,
});
if (this.props.onClick) {
this.delayedHandleClick(isEnabled);
}
},
delayedHandleClick: _.debounce(function (isEnabled) { this.props.onClick(isEnabled); }, 20),
render() {
var curtainPosition = this.state.isEnabled ? '50%' : '0';
var curtainStyle = {left: curtainPosition};
var switcherClass = cx({
"WLC-Switcher": true,
"WLC-off": !this.state.isEnabled,
"WLC-disabled": this.props.disabled
});
var onText = this.props.onText || 'ON';
var offText = this.props.offText || 'OFF';
return (
<div className={switcherClass} onTouchTap={this._handleClick}>
<div className="WLC-curtain" style={curtainStyle}/>
<div className="WLC-on">{onText}</div>
<div className="WLC-off">{offText}</div>
</div>
);
}
});
module.exports = Switcher;