Compare commits

..
25 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
simaQ ccdaa08a9a bug fix 2015-07-15 16:21:40 +08:00
simaQ 58b18484fe update version 2015-07-15 15:19:19 +08:00
simaQ 3a61ef37c6 bugfix: active step fix 2015-07-15 15:19:00 +08:00
Emma fc76a93949 Merge pull request #14 from benjycui/master
修复 Slider 滑块越界与 step 偏移的 Bug。
2015-07-15 14:51:17 +08:00
Benjy Cui 2cd34c0e40 Merge branch 'master' of github.com:react-component/slider 2015-07-15 14:21:11 +08:00
Benjy Cui 0dc20afce7 修复 Slider 滑块越界与 step 偏移的 Bug。 2015-07-15 10:48:35 +08:00
Benjy Cui b69a4af14f Merge pull request #13 from react-component/revert-10-master
Revert "修复 Slider 初始 `upperBound` 与 `sliderLength` 错误的 Bug。"
2015-07-15 09:19:45 +08:00
Benjy Cui 84e999697f Revert "修复 Slider 初始 upperBoundsliderLength 错误的 Bug。" 2015-07-15 17:11:25 +08:00
simaQ 8290cb0337 update online example url 2015-07-14 21:34:17 +08:00
simaQ be15e1c8db update version 2015-07-14 21:16:26 +08:00
simaQ 02b53e8676 update 2015-07-14 20:49:23 +08:00
Benjy Cui 8bed86feaf Merge pull request #10 from benjycui/master
修复 Slider 初始 `upperBound` 与 `sliderLength` 错误的 Bug。
2015-07-14 17:12:05 +08:00
Benjy Cui 5fb5b5cbf6 修复 Slider 初始 upperBoundsliderLength 错误的 Bug。 2015-07-14 16:23:33 +08:00
simaQ 8bb867158a update slider style 2015-07-14 14:22:08 +08:00
Emma 0f636eafd3 Merge pull request #9 from benjycui/fix-bug
修复动画导致 Slider 滑块偏移的 Bug。
2015-07-13 14:21:46 +08:00
simaQ b8c8f768d8 update HISTORY.md 2015-07-13 14:18:30 +08:00
Benjy Cui 0faf6fb0ee 修复动画导致 Slider 滑块偏移的 Bug。 2015-07-13 14:15:34 +08:00
simaQ 855bcda785 feat add isIncluded props closes #8 2015-07-13 14:12:56 +08:00
simaQ 85336f8e9d update slider style 2015-07-13 14:11:54 +08:00
simaQ 727ee709c7 update slider example 2015-07-13 14:11:29 +08:00
simaQ b1645aa1ab feat add tooltip for handler closes #7 2015-07-13 14:08:31 +08:00
simaQ 19deaeeee2 update version 2015-06-29 10:08:18 +08:00
7 changed files with 303 additions and 220 deletions
+9
View File
@@ -0,0 +1,9 @@
# History
----
## 1.2.5 / 2015-07-13
[#8](https://github.com/react-component/slider/issues/8) add `isIncluded` props ([@simaQ](https://github.com/simaQ))
[#7](https://github.com/react-component/slider/issues/7) add tooltip for handler when slider has no `marks` props ([@simaQ](https://github.com/simaQ))
+9 -3
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>
@@ -107,7 +107,13 @@ React.render(<Rcslider />, container);
<td>mark every step for the slider, it will ignore the `step` parameter if it has been defined</td> <td>mark every step for the slider, it will ignore the `step` parameter if it has been defined</td>
</tr> </tr>
<tr> <tr>
<td>index</td> <td>isIncluded</td>
<td>boolean</td>
<td>true</td>
<td>if the value is true, it means a continuous value interval, otherwise, it is a independent value.</td>
</tr>
<tr>
<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>
@@ -132,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
+83 -35
View File
@@ -1,26 +1,37 @@
@prefixClass: rc-slider; @prefixClass: rc-slider;
// color @disabledColor: #ccc;
@disabledColor: #e7eaec; @border-radius-base: 6px;
@primary-color: #2db7f5;
@tooltip-color: #fff;
@tooltip-bg: tint(#666, 4%);
@tooltip-arrow-width: 4px;
@tooltip-distance: @tooltip-arrow-width+4;
@tooltip-arrow-color: @tooltip-bg;
* { * {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); //remove tap highlight color for mobile safari box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); // remove tap highlight color for mobile safari
}
*:before,
*:after {
box-sizing: border-box;
} }
.@{prefixClass} { .@{prefixClass} {
position: relative; position: relative;
margin: 6px auto;
height: 4px; height: 4px;
width: 100%; width: 100%;
border-radius: 2px; border-radius: @border-radius-base;
background-color: #e9e9e9; background-color: #e9e9e9;
&-track { &-track {
position: absolute; position: absolute;
left: 0; left: 0;
height: 4px; height: 4px;
border-radius: 2px; border-radius: @border-radius-base;
background-color: #b2e9fd; background-color: tint(@primary-color, 60%);
z-index: 1; z-index: 1;
} }
@@ -28,26 +39,21 @@
position: absolute; position: absolute;
margin-left: -7px; margin-left: -7px;
margin-top: -5px; margin-top: -5px;
width: 10px; width: 14px;
height: 10px; height: 14px;
cursor: pointer; cursor: pointer;
border-radius: 50%; border-radius: 50%;
border: solid 2px #d9d9d9; border: solid 2px tint(@primary-color, 50%);
background-color: #fff; background-color: #fff;
z-index: 2; z-index: 2;
&:hover { &:hover {
border-color: #999; border-color: tint(@primary-color, 20%);
} }
&-active { &-active {
border-color: #8cddfc;
&:active { &:active {
border-color: #2db7f5; border-color: tint(@primary-color, 20%);
background-color: #2db7f5; box-shadow: 0 0 5px tint(@primary-color, 20%);
box-shadow: 0 0 3px rgba(45, 183, 245, .75);
}
&:hover {
border-color: #23c0fa;
} }
} }
} }
@@ -55,9 +61,8 @@
&-mark { &-mark {
position: absolute; position: absolute;
top: 10px; top: 10px;
left: 0px; left: 0;
width: 100%; width: 100%;
height: 20px;
font-size: 12px; font-size: 12px;
z-index: 3; z-index: 3;
} }
@@ -65,17 +70,13 @@
&-mark-text { &-mark-text {
position: absolute; position: absolute;
display: inline-block; display: inline-block;
line-height: 1.5;
height: 20px;
vertical-align: middle; vertical-align: middle;
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
color: #ccc; color: #999;
&:first-child {
text-align: left;
}
&-active { &-active {
color: #999; color: #666;
} }
} }
@@ -91,26 +92,26 @@
position: absolute; position: absolute;
top: -2px; top: -2px;
margin-left: -4px; margin-left: -4px;
width: 4px; width: 8px;
height: 4px; height: 8px;
border: 2px solid #fff; border: 2px solid #e9e9e9;
background-color: #bcbcbc; background-color: #fff;
cursor: pointer; cursor: pointer;
border-radius: 50%; border-radius: 50%;
vertical-align: middle; vertical-align: middle;
&:first-child { &:first-child {
margin-left: -2px; margin-left: -4px;
} }
&:last-child { &:last-child {
margin-left: -6px; margin-left: -4px;
} }
&-active { &-active {
background-color: #8cddfc; border-color: tint(@primary-color, 50%);
} }
} }
&-disabled { &-disabled {
background-color: @disabledColor; background-color: #e9e9e9;
.@{prefixClass}-track { .@{prefixClass}-track {
background-color: @disabledColor; background-color: @disabledColor;
@@ -126,4 +127,51 @@
cursor: not-allowed!important; cursor: not-allowed!important;
} }
} }
// slider tooltip style
&-tooltip {
position: absolute;
left: -9999px;
top: -9999px;
z-index: 4;
visibility: visible;
&-hidden {
display: none;
}
&-placement-top {
padding: @tooltip-arrow-width 0 @tooltip-distance 0;
}
&-inner {
padding: 6px 0;
width: 24px;
height: 24px;
font-size: 12px;
line-height: 1;
color: @tooltip-color;
text-align: center;
text-decoration: none;
background-color: @tooltip-bg;
border-radius: @border-radius-base;
box-shadow: 0 0 4px #d9d9d9;
}
&-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
&-placement-top &-arrow {
bottom: @tooltip-distance - @tooltip-arrow-width;
left: 50%;
margin-left: -@tooltip-arrow-width;
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
border-top-color: @tooltip-arrow-color;
}
}
} }
+7 -1
View File
@@ -1,8 +1,14 @@
'use strict'; 'use strict';
require('rc-slider/assets/index.css'); 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'));
+3 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "rc-slider", "name": "rc-slider",
"version": "1.2.3", "version": "1.3.1",
"description": "slider ui component for react", "description": "slider ui component for react",
"keywords": [ "keywords": [
"react", "react",
@@ -18,7 +18,7 @@
"url": "http://github.com/react-component/slider/issues" "url": "http://github.com/react-component/slider/issues"
}, },
"licenses": "MIT", "licenses": "MIT",
"main":"./lib/index.js", "main": "./lib/index.js",
"config": { "config": {
"port": 8000 "port": 8000
}, },
@@ -48,6 +48,7 @@
"precommit" "precommit"
], ],
"dependencies": { "dependencies": {
"rc-tooltip": "^2.4.0",
"rc-util": "^2.0.2" "rc-util": "^2.0.2"
} }
} }
+176 -163
View File
@@ -1,18 +1,22 @@
'use strict'; 'use strict';
var React = require('react'); var React = require('react');
var DomUtils = require('rc-util').Dom; var Tooltip = require('rc-tooltip');
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();
} }
if (e.preventDefault) { if (e.preventDefault) {
e.preventDefault(); e.preventDefault();
} }
e.cancelBubble = true;
e.returnValue = false;
return false;
} }
function prefixClsFn(prefixCls) { function prefixClsFn(prefixCls) {
@@ -22,14 +26,33 @@ 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,
isIncluded: React.PropTypes.bool,
className: React.PropTypes.string, className: React.PropTypes.string,
disabled: React.PropTypes.bool, disabled: React.PropTypes.bool,
onBeforeChange: React.PropTypes.func, onBeforeChange: React.PropTypes.func,
@@ -37,67 +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: [],
className: 'rc-slider', isIncluded: true,
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({
this.handleResize(); 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);
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.state.sliderStart; 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,99 +228,89 @@ 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;
if (!slider) {
return 0;
}
return slider.getDOMNode().clientWidth;
},
getSliderStart() {
var slider = this.refs.slider.getDOMNode(); var slider = this.refs.slider.getDOMNode();
var rect = slider.getBoundingClientRect(); var rect = slider.getBoundingClientRect();
var sliderMin = rect.left; return rect.left;
var sliderMax = rect.right;
this.setState({
upperBound: slider.clientWidth,
sliderLength: Math.abs(sliderMax - sliderMin),
sliderStart: sliderMin
});
}, },
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 (i <= this.getIndex() || (this._calcValue(offset) <= this.getValue())) { if (props.isIncluded) {
className = prefixClsFn(prefixCls, 'dot', 'dot-active'); if (i <= this.getIndex()) {
className = prefixClsFn(prefixCls, 'dot', 'dot-active');
}
} else {
className = (i === this.getIndex()) ? prefixClsFn(prefixCls, 'dot', 'dot-active') : className;
} }
elements[i] = ( elements[i] = (
<span className={className} style={style} ref={'step' + i}></span> <span className={className} style={style} ref={'step' + i}></span>
); );
@@ -326,28 +323,31 @@ 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 = '0'; style.right = -unit / 4 + '%';
style.width = 'auto'; } else {
}else { style.left = i > 0 ? offset - unit / 4 + '%' : -unit / 4 + '%';
style.left = (i > 0 ? (offset - (unit / 4)).toFixed(5) : offset);
} }
var prefixCls = this.props.className; var prefixCls = this.props.prefixCls;
var className = prefixClsFn(prefixCls, 'mark-text'); var className = prefixClsFn(prefixCls, 'mark-text');
if (i <= this.getIndex()) { if (this.props.isIncluded) {
className = prefixClsFn(prefixCls, 'mark-text', 'mark-text-active'); if (i <= this.getIndex()) {
className = prefixClsFn(prefixCls, 'mark-text', 'mark-text-active');
}
} else {
className = (i === this.getIndex()) ? prefixClsFn(prefixCls, 'mark-text', 'mark-text-active') : className;
} }
return ( return (
@@ -355,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 = [];
@@ -363,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 (
@@ -373,34 +373,39 @@ 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>;
return ( if (this.props.marks.length > 0) {
<a className={className} return handle;
ref = "handle" } else {
style = {handleStyle} return (
href = "#" <Tooltip
onMouseDown = {this.handleMouseDown} placement="top"
onTouchStart = {this.handleTouchStart}></a> overlay={<span>{this.state.value}</span>}
); delay={0}
prefixCls={prefixClsFn(prefixCls, 'tooltip')}>
{handle}
</Tooltip>
);
}
}, },
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 (
@@ -408,27 +413,35 @@ var Slider = React.createClass({
); );
}, },
render: function() { render() {
var state = this.state; var state = this.state;
var props = this.props; var props = this.props;
var value = state.value; var value = state.value;
var offset = this._calcOffset(value); var offset = this._calcOffset(value);
var track = this.renderTrack(offset); var track = this.props.isIncluded ? this.renderTrack(offset) : null;
var handles = this.renderHandle(offset); var handles = this.renderHandle(offset);
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 ? 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}
{sliderMarks} {sliderMarks}
{this.props.children}
</div> </div>
); );
} }
+16 -16
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);
@@ -58,19 +58,19 @@ describe('rc-slider', function () {
expect(slider.getIndex()).to.be(3); expect(slider.getIndex()).to.be(3);
}); });
it('should mouseDown works!', function (done) { // it('should mouseDown works!', function (done) {
var slider = React.render( // var slider = React.render(
<Slider marks={["一","二","三","四","五"]} />, // <Slider marks={["一","二","三","四","五"]} />,
div // div
); // );
var selectedStep = slider.refs.step3.getDOMNode(); // var selectedStep = slider.refs.step3.getDOMNode();
Simulate.mouseDown(selectedStep); // Simulate.mouseDown(selectedStep);
setTimeout( function() { // setTimeout( function() {
expect(slider.state.active).to.be('active'); // expect(slider.state.active).to.be('active');
done(); // done();
}, 200); // }, 200);
}); // });
}); });