Compare commits

..
3 Commits
Author SHA1 Message Date
yiminghe 6965bbcefe support value/index 2015-07-21 00:03:08 +08:00
yiminghe cf806616b1 Merge pull request #17 from react-component/defaultValUE
change value to defaultValue
2015-07-20 23:51:53 +08:00
yiminghe 9ebe2de0cb change value to defaultValue 2015-07-20 23:49:55 +08:00
5 changed files with 130 additions and 124 deletions
+2 -2
View File
@@ -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>
+6 -1
View File
@@ -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
View File
@@ -1,6 +1,6 @@
{ {
"name": "rc-slider", "name": "rc-slider",
"version": "1.2.10", "version": "1.3.1",
"description": "slider ui component for react", "description": "slider ui component for react",
"keywords": [ "keywords": [
"react", "react",
+117 -116
View File
@@ -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,45 +60,50 @@ 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 {
value: value, 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
});
} else if ('index' in nextProps) {
this.setState({
value: getValueFromIndex(nextProps)
});
}
}, },
getValue: function() { getIndex() {
return this.state.value;
},
getIndex: function() {
var props = this.props; var props = this.props;
var value = this.state.value; var value = this.state.value;
@@ -86,7 +115,7 @@ var Slider = React.createClass({
} }
}, },
_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;
@@ -108,34 +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 * 100 + '%'; return ratio * 100 + '%';
}, },
_calcValue: function(offset) { _calcValue(offset) {
var ratio = offset / this.getSliderLength(); 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]) {
@@ -143,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;
} }
@@ -209,28 +228,28 @@ 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 / this.getSliderLength() * (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');
} }
}, },
getSliderLength: function() { getSliderLength() {
var slider = this.refs.slider; var slider = this.refs.slider;
if (!slider) { if (!slider) {
return 0; return 0;
@@ -239,60 +258,42 @@ var Slider = React.createClass({
return slider.getDOMNode().clientWidth; return slider.getDOMNode().clientWidth;
}, },
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 = 100 / (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 = [];
@@ -322,7 +323,7 @@ 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 = 100 / (marksLen - 1); var unit = 100 / (marksLen - 1);
@@ -338,7 +339,7 @@ var Slider = React.createClass({
style.left = i > 0 ? offset - unit / 4 + '%' : -unit / 4 + '%'; 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) {
@@ -354,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 = [];
@@ -362,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 (
@@ -372,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;
@@ -406,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 (
@@ -419,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;
@@ -431,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
View File
@@ -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);