mirror of
https://github.com/wassname/slider.git
synced 2026-09-11 12:42:49 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6965bbcefe | ||
|
|
cf806616b1 | ||
|
|
9ebe2de0cb | ||
|
|
ccdaa08a9a | ||
|
|
58b18484fe | ||
|
|
3a61ef37c6 | ||
|
|
fc76a93949 | ||
|
|
2cd34c0e40 | ||
|
|
0dc20afce7 | ||
|
|
b69a4af14f | ||
|
|
84e999697f | ||
|
|
8290cb0337 | ||
|
|
be15e1c8db |
@@ -95,7 +95,7 @@ React.render(<Rcslider />, container);
|
|||||||
<td>Value to be added or subtracted on each step the slider makes. Must be greater than zero. max - min should be evenly divisible by the step value.</td>
|
<td>Value to be added or subtracted on each step the slider makes. Must be greater than zero. max - min should be evenly divisible by the step value.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>value</td>
|
<td>defaultValue</td>
|
||||||
<td>number</td>
|
<td>number</td>
|
||||||
<td>0</td>
|
<td>0</td>
|
||||||
<td>Determines the initial positions of the handles.</td>
|
<td>Determines the initial positions of the handles.</td>
|
||||||
@@ -113,7 +113,7 @@ React.render(<Rcslider />, container);
|
|||||||
<td>if the value is true, it means a continuous value interval, otherwise, it is a independent value.</td>
|
<td>if the value is true, it means a continuous value interval, otherwise, it is a independent value.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>index</td>
|
<td>defaultIndex</td>
|
||||||
<td>number</td>
|
<td>number</td>
|
||||||
<td>0</td>
|
<td>0</td>
|
||||||
<td>For step or marks slider, determine the initial positions of the handles.</td>
|
<td>For step or marks slider, determine the initial positions of the handles.</td>
|
||||||
@@ -138,7 +138,7 @@ npm start
|
|||||||
|
|
||||||
http://localhost:8000/examples/
|
http://localhost:8000/examples/
|
||||||
|
|
||||||
online example: http://react-component.github.io/slider/build/examples/
|
online example: http://react-component.github.io/slider/examples/
|
||||||
|
|
||||||
## Test Case
|
## Test Case
|
||||||
|
|
||||||
|
|||||||
+6
-1
@@ -4,6 +4,11 @@ require('rc-slider/assets/index.css');
|
|||||||
|
|
||||||
var Slider = require('rc-slider');
|
var Slider = require('rc-slider');
|
||||||
var React = require('react');
|
var React = require('react');
|
||||||
|
|
||||||
|
function onChange(v){
|
||||||
|
console.log(v);
|
||||||
|
}
|
||||||
|
|
||||||
// React.render(<Slider marks={["一","二","三","四","五"]} index={3}/>, document.getElementById('__react-content'));
|
// React.render(<Slider marks={["一","二","三","四","五"]} index={3}/>, document.getElementById('__react-content'));
|
||||||
// React.render(<Slider className='rc-slider' step={20}/>, document.getElementById('__react-content'));
|
// React.render(<Slider className='rc-slider' step={20}/>, document.getElementById('__react-content'));
|
||||||
React.render(<Slider />, document.getElementById('__react-content'));
|
React.render(<div style={{width:400,margin:100}}><Slider onChange={onChange}/></div>, document.getElementById('__react-content'));
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "rc-slider",
|
"name": "rc-slider",
|
||||||
"version": "1.2.7",
|
"version": "1.3.1",
|
||||||
"description": "slider ui component for react",
|
"description": "slider ui component for react",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
|
|||||||
+139
-154
@@ -2,9 +2,15 @@
|
|||||||
|
|
||||||
var React = require('react');
|
var React = require('react');
|
||||||
var Tooltip = require('rc-tooltip');
|
var Tooltip = require('rc-tooltip');
|
||||||
var DomUtils = require('rc-util').Dom;
|
var rcUtil = require('rc-util');
|
||||||
|
var DomUtils = rcUtil.Dom;
|
||||||
|
|
||||||
|
function noop() {
|
||||||
|
}
|
||||||
|
|
||||||
function pauseEvent(e) {
|
function pauseEvent(e) {
|
||||||
|
e.cancelBubble = true;
|
||||||
|
e.returnValue = false;
|
||||||
if (e.stopPropagation) {
|
if (e.stopPropagation) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
}
|
}
|
||||||
@@ -20,11 +26,29 @@ function prefixClsFn(prefixCls) {
|
|||||||
}).join(' ');
|
}).join(' ');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getValueFromIndex(props) {
|
||||||
|
var value;
|
||||||
|
var marksLen = props.marks.length;
|
||||||
|
var index;
|
||||||
|
if ('index' in props) {
|
||||||
|
index = props.index;
|
||||||
|
} else {
|
||||||
|
index = props.defaultIndex;
|
||||||
|
}
|
||||||
|
if (marksLen > 0) {
|
||||||
|
value = ((props.max - props.min) / (marksLen - 1)) * (index);
|
||||||
|
value = value.toFixed(5);
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
var Slider = React.createClass({
|
var Slider = React.createClass({
|
||||||
propTypes: {
|
propTypes: {
|
||||||
min: React.PropTypes.number,
|
min: React.PropTypes.number,
|
||||||
max: React.PropTypes.number,
|
max: React.PropTypes.number,
|
||||||
step: React.PropTypes.number,
|
step: React.PropTypes.number,
|
||||||
|
defaultValue: React.PropTypes.number,
|
||||||
|
defaultIndex: React.PropTypes.number,
|
||||||
value: React.PropTypes.number,
|
value: React.PropTypes.number,
|
||||||
index: React.PropTypes.number,
|
index: React.PropTypes.number,
|
||||||
marks: React.PropTypes.array,
|
marks: React.PropTypes.array,
|
||||||
@@ -36,68 +60,62 @@ var Slider = React.createClass({
|
|||||||
onAfterChange: React.PropTypes.func
|
onAfterChange: React.PropTypes.func
|
||||||
},
|
},
|
||||||
|
|
||||||
getDefaultProps: function() {
|
getDefaultProps() {
|
||||||
return {
|
return {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 100,
|
max: 100,
|
||||||
step: 1,
|
step: 1,
|
||||||
value: 0,
|
defaultValue: 0,
|
||||||
marks: [],
|
marks: [],
|
||||||
isIncluded: true,
|
isIncluded: true,
|
||||||
className: 'rc-slider',
|
className: '',
|
||||||
|
prefixCls: 'rc-slider',
|
||||||
disabled: false,
|
disabled: false,
|
||||||
index: 0
|
defaultIndex: 0
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
getInitialState: function() {
|
getInitialState() {
|
||||||
var props = this.props;
|
var props = this.props;
|
||||||
var value = this._trimAlignValue(props.value);
|
var value = props.defaultValue;
|
||||||
|
if ('value' in props) {
|
||||||
|
value = props.value;
|
||||||
|
}
|
||||||
|
value = this._trimAlignValue(value);
|
||||||
var marksLen = props.marks.length;
|
var marksLen = props.marks.length;
|
||||||
if (marksLen > 0) {
|
if (marksLen > 0) {
|
||||||
value = ((props.max - props.min) / (marksLen - 1)) * (props.index);
|
value = getValueFromIndex(props);
|
||||||
value = value.toFixed(5);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
upperBound: 0,
|
value: value
|
||||||
sliderLength: 0,
|
|
||||||
value: value,
|
|
||||||
active: props.disabled ? '' : ((value > props.min || props.index > 0) ? 'active' : '')
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
componentWillReceiveProps: function(newProps) {
|
componentWillReceiveProps(nextProps) {
|
||||||
var value = newProps.value;
|
if ('value' in nextProps) {
|
||||||
this.state.value = this._trimAlignValue(value, newProps);
|
this.setState({
|
||||||
},
|
value: nextProps.value
|
||||||
|
});
|
||||||
componentDidMount: function() {
|
} else if ('index' in nextProps) {
|
||||||
this._onHandleResizeListener = DomUtils.addEventListener(window, 'resize', this.handleResize);
|
this.setState({
|
||||||
setTimeout(this.handleResize, 0);
|
value: getValueFromIndex(nextProps)
|
||||||
},
|
});
|
||||||
|
|
||||||
componentWillUnmount: function() {
|
|
||||||
if (this._onHandleResizeListener) {
|
|
||||||
this._onHandleResizeListener.remove();
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
getValue: function() {
|
getIndex() {
|
||||||
return this.state.value;
|
|
||||||
},
|
|
||||||
|
|
||||||
getIndex: function() {
|
|
||||||
var props = this.props;
|
var props = this.props;
|
||||||
if (props.marks.length === 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
var value = this.state.value;
|
var value = this.state.value;
|
||||||
var unit = ((props.max - props.min) / (props.marks.length - 1)).toFixed(5);
|
|
||||||
return Math.floor(value / unit);
|
if (props.marks.length === 0) {
|
||||||
|
return Math.floor((value - props.min) / props.step);
|
||||||
|
} else {
|
||||||
|
var unit = ((props.max - props.min) / (props.marks.length - 1)).toFixed(5);
|
||||||
|
return Math.round(value / unit);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
_trimAlignValue: function(val, props) {
|
_trimAlignValue(val, props) {
|
||||||
props = props || this.props;
|
props = props || this.props;
|
||||||
|
|
||||||
var step = props.marks.length > 0 ? (props.max - props.min) / (props.marks.length - 1) : props.step;
|
var step = props.marks.length > 0 ? (props.max - props.min) / (props.marks.length - 1) : props.step;
|
||||||
@@ -119,35 +137,34 @@ var Slider = React.createClass({
|
|||||||
return parseFloat(alignValue.toFixed(5));
|
return parseFloat(alignValue.toFixed(5));
|
||||||
},
|
},
|
||||||
|
|
||||||
_calcOffset: function(value) {
|
_calcOffset(value) {
|
||||||
var ratio = (value - this.props.min) / (this.props.max - this.props.min);
|
var ratio = (value - this.props.min) / (this.props.max - this.props.min);
|
||||||
return ratio * this.state.upperBound;
|
return ratio * 100 + '%';
|
||||||
},
|
},
|
||||||
|
|
||||||
_calcValue: function(offset) {
|
_calcValue(offset) {
|
||||||
var ratio = offset / this.state.upperBound;
|
var ratio = offset / this.getSliderLength();
|
||||||
return ratio * (this.props.max - this.props.min) + this.props.min;
|
return ratio * (this.props.max - this.props.min) + this.props.min;
|
||||||
},
|
},
|
||||||
|
|
||||||
_calValueByPos: function (position, callback) {
|
_calValueByPos(position) {
|
||||||
var pixelOffset = position - this.getSliderStart();
|
var pixelOffset = position - this.getSliderStart();
|
||||||
// pixelOffset -= (this.state.handleSize / 2);
|
// pixelOffset -= (this.state.handleSize / 2);
|
||||||
|
|
||||||
var nextValue = this._trimAlignValue(this._calcValue(pixelOffset));
|
var nextValue = this._trimAlignValue(this._calcValue(pixelOffset));
|
||||||
|
// do not use setState
|
||||||
this.setState({value: nextValue, active: 'active'}, callback);
|
this.state.value = nextValue;
|
||||||
|
this.setState({
|
||||||
|
value: nextValue
|
||||||
|
});
|
||||||
|
return nextValue;
|
||||||
},
|
},
|
||||||
|
|
||||||
_getMousePosition: function(e) {
|
_getTouchPosition(e) {
|
||||||
return e.pageX || (e.clientX + document.documentElement.scrollLeft);
|
|
||||||
},
|
|
||||||
|
|
||||||
_getTouchPosition: function (e) {
|
|
||||||
var touch = e.touches[0];
|
var touch = e.touches[0];
|
||||||
return touch.pageX;
|
return touch.pageX;
|
||||||
},
|
},
|
||||||
|
|
||||||
_triggerEvents: function(event) {
|
_triggerEvents(event) {
|
||||||
var props = this.props;
|
var props = this.props;
|
||||||
var hasMarks = props.marks && props.marks.length > 0;
|
var hasMarks = props.marks && props.marks.length > 0;
|
||||||
if (props[event]) {
|
if (props[event]) {
|
||||||
@@ -155,64 +172,54 @@ var Slider = React.createClass({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
_addEventHandles: function(type) {
|
_addEventHandles(type) {
|
||||||
if (type === 'touch') {
|
if (type === 'touch') {
|
||||||
// just work for chrome iOS Safari and Android Browser
|
// just work for chrome iOS Safari and Android Browser
|
||||||
this._onTouchMoveListener = DomUtils.addEventListener(document, 'touchmove', this._onTouchMove);
|
this._onTouchMoveListener = DomUtils.addEventListener(document, 'touchmove', this._onTouchMove);
|
||||||
this._onTouchUpListener = DomUtils.addEventListener(document, 'touchend', this._onTouchUp);
|
this._onTouchUpListener = DomUtils.addEventListener(document, 'touchend', this._onTouchUp);
|
||||||
}
|
} else if (type === 'mouse') {
|
||||||
|
|
||||||
if (type === 'mouse') {
|
|
||||||
this._onMouseMoveListener = DomUtils.addEventListener(document, 'mousemove', this._onMouseMove);
|
this._onMouseMoveListener = DomUtils.addEventListener(document, 'mousemove', this._onMouseMove);
|
||||||
this._onMouseUpListener = DomUtils.addEventListener(document, 'mouseup', this._onMouseUp);
|
this._onMouseUpListener = DomUtils.addEventListener(document, 'mouseup', this._onMouseUp);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
_removeEventHandles: function (type) {
|
_removeEventHandles(type) {
|
||||||
if (type === 'touch') {
|
if (type === 'touch') {
|
||||||
this._onTouchMoveListener.remove();
|
this._onTouchMoveListener.remove();
|
||||||
this._onTouchUpListener.remove();
|
this._onTouchUpListener.remove();
|
||||||
}
|
} else if (type === 'mouse') {
|
||||||
|
|
||||||
if (type === 'mouse') {
|
|
||||||
this._onMouseMoveListener.remove();
|
this._onMouseMoveListener.remove();
|
||||||
this._onMouseUpListener.remove();
|
this._onMouseUpListener.remove();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
_start: function(position) {
|
_start(position) {
|
||||||
if (document.activeElement) {
|
|
||||||
document.activeElement.blur();
|
|
||||||
}
|
|
||||||
|
|
||||||
this._triggerEvents('onBeforeChange');
|
this._triggerEvents('onBeforeChange');
|
||||||
|
this.startValue = this.state.value;
|
||||||
this.setState({
|
this.startPosition = position;
|
||||||
startValue: this.state.value,
|
|
||||||
startPosition: position
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
_end: function(type) {
|
_end(type) {
|
||||||
this._removeEventHandles(type);
|
this._removeEventHandles(type);
|
||||||
this.setState(this._triggerEvents.bind(this, 'onAfterChange'));
|
this._triggerEvents('onAfterChange');
|
||||||
},
|
},
|
||||||
|
|
||||||
_onMouseUp: function() {
|
_onMouseUp() {
|
||||||
this._end('mouse');
|
this._end('mouse');
|
||||||
},
|
},
|
||||||
|
|
||||||
_onTouchUp: function() {
|
_onTouchUp() {
|
||||||
this._end('touch');
|
this._end('touch');
|
||||||
},
|
},
|
||||||
|
|
||||||
_onMouseMove: function(e) {
|
_onMouseMove(e) {
|
||||||
var position = this._getMousePosition(e);
|
var position = e.pageX;
|
||||||
this._handleMove(e, position);
|
this._handleMove(e, position);
|
||||||
},
|
},
|
||||||
|
|
||||||
_onTouchMove: function(e) {
|
_onTouchMove(e) {
|
||||||
if (e.touches.length > 1 || (e.type === 'touchend' && e.touches.length > 0)) {
|
if (e.touches.length > 1 || (e.type === 'touchend' && e.touches.length > 0)) {
|
||||||
|
this._end('touch');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -221,105 +228,83 @@ var Slider = React.createClass({
|
|||||||
this._handleMove(e, position);
|
this._handleMove(e, position);
|
||||||
},
|
},
|
||||||
|
|
||||||
_handleMove: function(e, position) {
|
_handleMove(e, position) {
|
||||||
pauseEvent(e);
|
pauseEvent(e);
|
||||||
// var position = this._getMousePosition(e);
|
|
||||||
var props = this.props;
|
var props = this.props;
|
||||||
var state = this.state;
|
var state = this.state;
|
||||||
|
|
||||||
var value = state.value;
|
var value = state.value;
|
||||||
var oldValue = value;
|
var oldValue = value;
|
||||||
|
|
||||||
var diffPosition = position - state.startPosition;
|
var diffPosition = position - this.startPosition;
|
||||||
|
|
||||||
var diffValue = diffPosition / (state.sliderLength) * (props.max - props.min);
|
var diffValue = diffPosition / this.getSliderLength() * (props.max - props.min);
|
||||||
var newValue = this._trimAlignValue(state.startValue + diffValue);
|
var newValue = this._trimAlignValue(this.startValue + diffValue);
|
||||||
|
|
||||||
value = newValue;
|
value = newValue;
|
||||||
|
|
||||||
if (newValue !== oldValue) {
|
if (newValue !== oldValue) {
|
||||||
this.setState({value: value, active: 'active'}, this._triggerEvents.bind(this, 'onChange'));
|
this.setState({value: value});
|
||||||
|
this._triggerEvents('onChange');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
handleResize: function() {
|
getSliderLength() {
|
||||||
var slider = this.refs.slider.getDOMNode();
|
var slider = this.refs.slider;
|
||||||
var rect = slider.getBoundingClientRect();
|
if (!slider) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
var sliderMin = rect.left;
|
return slider.getDOMNode().clientWidth;
|
||||||
var sliderMax = rect.right;
|
|
||||||
|
|
||||||
this.setState({
|
|
||||||
upperBound: slider.clientWidth,
|
|
||||||
sliderLength: Math.abs(sliderMax - sliderMin)
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
getSliderStart: function() {
|
getSliderStart() {
|
||||||
var slider = this.refs.slider.getDOMNode();
|
var slider = this.refs.slider.getDOMNode();
|
||||||
var rect = slider.getBoundingClientRect();
|
var rect = slider.getBoundingClientRect();
|
||||||
|
|
||||||
return rect.left;
|
return rect.left;
|
||||||
},
|
},
|
||||||
|
|
||||||
handleTouchStart: function(e) {
|
handleTouchStart(e) {
|
||||||
if (this.props.disabled || e.touches.length > 1 || (e.type === 'touchend' && e.touches.length > 0)) {
|
if (e.touches.length > 1 || (e.type.toLowerCase() === 'touchend' && e.touches.length > 0)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var position = this._getTouchPosition(e);
|
var position = this._getTouchPosition(e);
|
||||||
this.startPosition = position;
|
this._calValueByPos(position);
|
||||||
|
this._triggerEvents('onChange');
|
||||||
this._start(position);
|
this._start(position);
|
||||||
this._addEventHandles('touch');
|
this._addEventHandles('touch');
|
||||||
pauseEvent(e);
|
pauseEvent(e);
|
||||||
},
|
},
|
||||||
|
|
||||||
handleMouseDown: function() {
|
handleSliderMouseDown(e) {
|
||||||
return (e) => {
|
var position = e.pageX;
|
||||||
if (this.props.disabled) {
|
this._calValueByPos(position);
|
||||||
return;
|
this._triggerEvents('onChange');
|
||||||
}
|
this._start(position);
|
||||||
var position = this._getMousePosition(e);
|
this._addEventHandles('mouse');
|
||||||
this._start(position);
|
|
||||||
this._addEventHandles('mouse');
|
|
||||||
pauseEvent(e);
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
handleSliderMouseDown: function(e) {
|
|
||||||
if (this.props.disabled) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
var position = this._getMousePosition(e);
|
|
||||||
this._calValueByPos(position,
|
|
||||||
() => {
|
|
||||||
this._triggerEvents('onChange');
|
|
||||||
this._start(position);
|
|
||||||
this._addEventHandles('mouse');
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
pauseEvent(e);
|
pauseEvent(e);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderSteps: function() {
|
renderSteps() {
|
||||||
var props = this.props;
|
var props = this.props;
|
||||||
var marksLen = props.marks.length;
|
var marksLen = props.marks.length;
|
||||||
var stepNum = marksLen > 0 ? marksLen : Math.floor((props.max - props.min) / props.step) + 1;
|
var stepNum = marksLen > 0 ? marksLen : Math.floor((props.max - props.min) / props.step) + 1;
|
||||||
var unit = this.state.sliderLength / (stepNum - 1);
|
var unit = 100 / (stepNum - 1);
|
||||||
|
|
||||||
var prefixCls = props.className;
|
var prefixCls = props.prefixCls;
|
||||||
var stepClassName = prefixClsFn(prefixCls, 'step');
|
var stepClassName = prefixClsFn(prefixCls, 'step');
|
||||||
|
|
||||||
var elements = [];
|
var elements = [];
|
||||||
for (var i = 0; i < stepNum; i++) {
|
for (var i = 0; i < stepNum; i++) {
|
||||||
var offset = unit * i;
|
var offset = unit * i + '%';
|
||||||
var style = {
|
var style = {
|
||||||
left: offset.toFixed(5)
|
left: offset
|
||||||
};
|
};
|
||||||
var className = prefixClsFn(prefixCls, 'dot');
|
var className = prefixClsFn(prefixCls, 'dot');
|
||||||
if (props.isIncluded) {
|
if (props.isIncluded) {
|
||||||
if (i <= this.getIndex() || (this._calcValue(offset) <= this.getValue())) {
|
if (i <= this.getIndex()) {
|
||||||
className = prefixClsFn(prefixCls, 'dot', 'dot-active');
|
className = prefixClsFn(prefixCls, 'dot', 'dot-active');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -338,23 +323,23 @@ var Slider = React.createClass({
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderMark: function(i) {
|
renderMark(i) {
|
||||||
var marks = this.props.marks;
|
var marks = this.props.marks;
|
||||||
var marksLen = marks.length;
|
var marksLen = marks.length;
|
||||||
var unit = this.state.sliderLength / (marksLen - 1);
|
var unit = 100 / (marksLen - 1);
|
||||||
var offset = unit * i;
|
var offset = unit * i;
|
||||||
|
|
||||||
var style = {
|
var style = {
|
||||||
width: (unit / 2).toFixed(5)
|
width: unit / 2 + '%'
|
||||||
};
|
};
|
||||||
|
|
||||||
if (i === marksLen - 1) {
|
if (i === marksLen - 1) {
|
||||||
style.right = -(style.width / 2).toFixed(5);
|
style.right = -unit / 4 + '%';
|
||||||
} else {
|
} else {
|
||||||
style.left = i > 0 ? (offset - unit / 4).toFixed(5) : -(style.width / 2).toFixed(5);
|
style.left = i > 0 ? offset - unit / 4 + '%' : -unit / 4 + '%';
|
||||||
}
|
}
|
||||||
|
|
||||||
var prefixCls = this.props.className;
|
var prefixCls = this.props.prefixCls;
|
||||||
var className = prefixClsFn(prefixCls, 'mark-text');
|
var className = prefixClsFn(prefixCls, 'mark-text');
|
||||||
|
|
||||||
if (this.props.isIncluded) {
|
if (this.props.isIncluded) {
|
||||||
@@ -370,7 +355,7 @@ var Slider = React.createClass({
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderMarks: function() {
|
renderMarks() {
|
||||||
var marks = this.props.marks;
|
var marks = this.props.marks;
|
||||||
var marksLen = marks.length;
|
var marksLen = marks.length;
|
||||||
var elements = [];
|
var elements = [];
|
||||||
@@ -378,7 +363,7 @@ var Slider = React.createClass({
|
|||||||
elements[i] = this.renderMark(i);
|
elements[i] = this.renderMark(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
var prefixCls = this.props.className;
|
var prefixCls = this.props.prefixCls;
|
||||||
var className = prefixClsFn(prefixCls, 'mark');
|
var className = prefixClsFn(prefixCls, 'mark');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -388,24 +373,17 @@ var Slider = React.createClass({
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderHandle: function(offset) {
|
renderHandle(offset) {
|
||||||
var handleStyle = {
|
var handleStyle = {
|
||||||
left: offset
|
left: offset
|
||||||
};
|
};
|
||||||
|
|
||||||
var prefixCls = this.props.className;
|
var prefixCls = this.props.prefixCls;
|
||||||
var className = prefixClsFn(prefixCls, 'handle');
|
var className = prefixClsFn(prefixCls, 'handle');
|
||||||
|
|
||||||
if (this.state.active) {
|
var handle = <div className={className}
|
||||||
className = prefixClsFn(prefixCls, 'handle', 'handle-active');
|
ref = "handle"
|
||||||
}
|
style = {handleStyle}></div>;
|
||||||
|
|
||||||
var handle = <div className={className}
|
|
||||||
ref = "handle"
|
|
||||||
style = {handleStyle}
|
|
||||||
href = "#"
|
|
||||||
onMouseDown = {this.handleMouseDown}
|
|
||||||
onTouchStart = {this.handleTouchStart}></div>;
|
|
||||||
|
|
||||||
if (this.props.marks.length > 0) {
|
if (this.props.marks.length > 0) {
|
||||||
return handle;
|
return handle;
|
||||||
@@ -422,12 +400,12 @@ var Slider = React.createClass({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
renderTrack: function(offset) {
|
renderTrack(offset) {
|
||||||
var style = {
|
var style = {
|
||||||
width: offset
|
width: offset
|
||||||
};
|
};
|
||||||
|
|
||||||
var prefixCls = this.props.className;
|
var prefixCls = this.props.prefixCls;
|
||||||
var trackClassName = prefixClsFn(prefixCls, 'track');
|
var trackClassName = prefixClsFn(prefixCls, 'track');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -435,7 +413,7 @@ var Slider = React.createClass({
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function() {
|
render() {
|
||||||
var state = this.state;
|
var state = this.state;
|
||||||
var props = this.props;
|
var props = this.props;
|
||||||
|
|
||||||
@@ -447,11 +425,18 @@ var Slider = React.createClass({
|
|||||||
var steps = (props.step > 1 || props.marks.length > 0) ? this.renderSteps() : null;
|
var steps = (props.step > 1 || props.marks.length > 0) ? this.renderSteps() : null;
|
||||||
var sliderMarks = (props.marks.length > 0) ? this.renderMarks() : null;
|
var sliderMarks = (props.marks.length > 0) ? this.renderMarks() : null;
|
||||||
|
|
||||||
var prefixCls = props.className;
|
var prefixCls = props.prefixCls;
|
||||||
var sliderClassName = props.disabled ? prefixCls + ' ' + prefixClsFn(prefixCls, 'disabled') : prefixCls;
|
var disabled = props.disabled;
|
||||||
|
var sliderClassName = {
|
||||||
|
[prefixCls]: 1,
|
||||||
|
[props.className]: !!props.className,
|
||||||
|
[`${prefixCls}-disabled`]: disabled
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={sliderClassName} ref="slider" onMouseDown={this.handleSliderMouseDown}>
|
<div className={rcUtil.classSet(sliderClassName)} ref="slider"
|
||||||
|
onTouchStart={disabled ? noop : this.handleTouchStart}
|
||||||
|
onMouseDown={disabled ? noop : this.handleSliderMouseDown}>
|
||||||
{track}
|
{track}
|
||||||
{handles}
|
{handles}
|
||||||
{steps}
|
{steps}
|
||||||
|
|||||||
+4
-4
@@ -18,14 +18,14 @@ describe('rc-slider', function () {
|
|||||||
|
|
||||||
it('should render a simple slider with value correctly!', function () {
|
it('should render a simple slider with value correctly!', function () {
|
||||||
var slider = React.render(
|
var slider = React.render(
|
||||||
<Slider className='rc-slider' value={40}/>,
|
<Slider className='rc-slider' defaultValue={40}/>,
|
||||||
div
|
div
|
||||||
);
|
);
|
||||||
var node = $(div);
|
var node = $(div);
|
||||||
expect(node.find('.rc-slider').length).to.be(1);
|
expect(node.find('.rc-slider').length).to.be(1);
|
||||||
expect(node.find('.rc-slider-handle').length).to.be(1);
|
expect(node.find('.rc-slider-handle').length).to.be(1);
|
||||||
expect(node.find('.rc-slider-track').length).to.be(1);
|
expect(node.find('.rc-slider-track').length).to.be(1);
|
||||||
expect(slider.getValue()).to.be(40);
|
expect(slider.state.value).to.be(40);
|
||||||
var trackWidth = node.find('.rc-slider-track')[0].style.width;
|
var trackWidth = node.find('.rc-slider-track')[0].style.width;
|
||||||
expect(trackWidth).to.eql(node.find('.rc-slider-handle')[0].style.left);
|
expect(trackWidth).to.eql(node.find('.rc-slider-handle')[0].style.left);
|
||||||
});
|
});
|
||||||
@@ -40,12 +40,12 @@ describe('rc-slider', function () {
|
|||||||
expect(node.find('.rc-slider-handle').length).to.be(1);
|
expect(node.find('.rc-slider-handle').length).to.be(1);
|
||||||
expect(node.find('.rc-slider-track').length).to.be(1);
|
expect(node.find('.rc-slider-track').length).to.be(1);
|
||||||
expect(node.find('.rc-slider-dot').length).to.be(6);
|
expect(node.find('.rc-slider-dot').length).to.be(6);
|
||||||
expect(slider.getValue()).to.be(0);
|
expect(slider.state.value).to.be(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render a slider with marks correctly!', function () {
|
it('should render a slider with marks correctly!', function () {
|
||||||
var slider = React.render(
|
var slider = React.render(
|
||||||
<Slider marks={["一","二","三","四","五"]} index={3} />,
|
<Slider marks={["一","二","三","四","五"]} defaultIndex={3} />,
|
||||||
div
|
div
|
||||||
);
|
);
|
||||||
var node = $(div);
|
var node = $(div);
|
||||||
|
|||||||
Reference in New Issue
Block a user