-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSlider.jsx
101 lines (82 loc) · 2.87 KB
/
Slider.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
var React = require('react/addons');
var cx = React.addons.classSet;
require('./Slider.less');
var Slider = React.createClass({
propTypes: {
disabled: React.PropTypes.bool,
onChange: React.PropTypes.func
},
getInitialState() {
return {
value: this.props.value ? this.props.value : 0,
min: this.props.min ? this.props.min : 0,
max: this.props.max ? this.props.max : 10,
fillWidth : '0',
};
},
componentDidMount() {
var fillValue = this.state.value > this.state.max ? this.state.max : this.state.value;
this.setState({
fillWidth: this.setSliderFill(fillValue),
});
},
setSliderFill(value) {
var fillPercent = (value - this.state.min) / (this.state.max - this.state.min);
var fillFixPercent = fillPercent / 11; // Fix fill that overlaps slider thumb
var sliderWidth = getComputedStyle(this.getDOMNode()).width;
return (fillPercent-fillFixPercent)*parseInt(sliderWidth);
},
componentWillReceiveProps(nextProps) {
var value = nextProps.value;
var min = nextProps.min;
var max = nextProps.max;
if (value < min) value = min;
if (value > max) value = max;
this.setState({
min: min,
max: max,
value: value,
fillWidth: this.setSliderFill(value),
});
},
handleChange(event) {
var value = event.target.value;
if (this.props.onChange) {
if (this.props.dataMap) {
this.props.onChange({newValue:value, path:this.props.dataMap, valueToSend:this.formatBeforeSend(value)});
} else this.props.onChange(value);
}
},
formatBeforeSend(val) {
if (this.props.type === 'percent') {
return parseFloat(val / 100);
}
return parseFloat(val);
},
render() {
var fillStyle = {
width: this.state.fillWidth,
};
var fillClass = cx({
'WLC-slider-fill': true,
'WLC-disabled': this.props.disabled
});
var labelNode = this.props.label ? <span className='WLC-sub-label'>{this.props.label}</span> : '';
return (
<div className='WLC-Slider'>
<div className='WLC-track' />
<input type = 'range'
ref = 'input'
disabled = {this.props.disabled}
onChange = {this.handleChange}
step = {this.props.step}
value = {this.state.value}
min = {this.state.min}
max = {this.state.max} />
<div className={fillClass} style={fillStyle} />
{labelNode}
</div>
);
}
});
module.exports = Slider;