mirror of
https://github.com/wassname/slider.git
synced 2026-09-10 12:38:09 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6965bbcefe | ||
|
|
cf806616b1 | ||
|
|
9ebe2de0cb | ||
|
|
ccdaa08a9a | ||
|
|
58b18484fe | ||
|
|
3a61ef37c6 | ||
|
|
fc76a93949 | ||
|
|
2cd34c0e40 | ||
|
|
0dc20afce7 | ||
|
|
b69a4af14f | ||
|
|
84e999697f | ||
|
|
8290cb0337 | ||
|
|
be15e1c8db | ||
|
|
02b53e8676 | ||
|
|
8bed86feaf | ||
|
|
5fb5b5cbf6 | ||
|
|
8bb867158a | ||
|
|
0f636eafd3 | ||
|
|
b8c8f768d8 | ||
|
|
0faf6fb0ee | ||
|
|
855bcda785 | ||
|
|
85336f8e9d | ||
|
|
727ee709c7 | ||
|
|
b1645aa1ab | ||
|
|
19deaeeee2 | ||
|
|
413db89971 | ||
|
|
4463d446ce | ||
|
|
5e40b3de7d | ||
|
|
28337cbd06 |
@@ -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))
|
||||
|
||||
@@ -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>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>value</td>
|
||||
<td>defaultValue</td>
|
||||
<td>number</td>
|
||||
<td>0</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>
|
||||
</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>0</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/
|
||||
|
||||
online example: http://react-component.github.io/slider/build/examples/
|
||||
online example: http://react-component.github.io/slider/examples/
|
||||
|
||||
## Test Case
|
||||
|
||||
|
||||
+87
-35
@@ -1,22 +1,37 @@
|
||||
@prefixClass: rc-slider;
|
||||
|
||||
// color
|
||||
@disabledColor: #e7eaec;
|
||||
@disabledColor: #ccc;
|
||||
@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;
|
||||
|
||||
* {
|
||||
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} {
|
||||
position: relative;
|
||||
margin: 6px;
|
||||
height: 4px;
|
||||
width: 100%;
|
||||
border-radius: 2px;
|
||||
border-radius: @border-radius-base;
|
||||
background-color: #e9e9e9;
|
||||
|
||||
&-track {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
height: 4px;
|
||||
border-radius: 2px;
|
||||
background-color: #b2e9fd;
|
||||
border-radius: @border-radius-base;
|
||||
background-color: tint(@primary-color, 60%);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
@@ -24,26 +39,21 @@
|
||||
position: absolute;
|
||||
margin-left: -7px;
|
||||
margin-top: -5px;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
cursor: default;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
cursor: pointer;
|
||||
border-radius: 50%;
|
||||
border: solid 2px #d9d9d9;
|
||||
border: solid 2px tint(@primary-color, 50%);
|
||||
background-color: #fff;
|
||||
z-index: 2;
|
||||
|
||||
&:hover {
|
||||
border-color: #999;
|
||||
border-color: tint(@primary-color, 20%);
|
||||
}
|
||||
&-active {
|
||||
border-color: #8cddfc;
|
||||
&:active {
|
||||
border-color: #2db7f5;
|
||||
background-color: #2db7f5;
|
||||
box-shadow: 0 0 3px rgba(45, 183, 245, .75);
|
||||
}
|
||||
&:hover {
|
||||
border-color: #23c0fa;
|
||||
border-color: tint(@primary-color, 20%);
|
||||
box-shadow: 0 0 5px tint(@primary-color, 20%);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -51,9 +61,8 @@
|
||||
&-mark {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
left: 0px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
font-size: 12px;
|
||||
z-index: 3;
|
||||
}
|
||||
@@ -61,17 +70,13 @@
|
||||
&-mark-text {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
line-height: 1.5;
|
||||
height: 20px;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
color: #ccc;
|
||||
&:first-child {
|
||||
text-align: left;
|
||||
}
|
||||
color: #999;
|
||||
|
||||
&-active {
|
||||
color: #999;
|
||||
color: #666;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -87,26 +92,26 @@
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
margin-left: -4px;
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
border: 2px solid #fff;
|
||||
background-color: #bcbcbc;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border: 2px solid #e9e9e9;
|
||||
background-color: #fff;
|
||||
cursor: pointer;
|
||||
border-radius: 50%;
|
||||
vertical-align: middle;
|
||||
&:first-child {
|
||||
margin-left: -2px;
|
||||
margin-left: -4px;
|
||||
}
|
||||
&:last-child {
|
||||
margin-left: -6px;
|
||||
margin-left: -4px;
|
||||
}
|
||||
&-active {
|
||||
background-color: #8cddfc;
|
||||
border-color: tint(@primary-color, 50%);
|
||||
}
|
||||
}
|
||||
|
||||
&-disabled {
|
||||
background-color: @disabledColor;
|
||||
background-color: #e9e9e9;
|
||||
|
||||
.@{prefixClass}-track {
|
||||
background-color: @disabledColor;
|
||||
@@ -122,4 +127,51 @@
|
||||
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
@@ -1,8 +1,14 @@
|
||||
'use strict';
|
||||
|
||||
require('rc-slider/assets/index.css');
|
||||
|
||||
var Slider = require('rc-slider');
|
||||
var React = require('react');
|
||||
|
||||
function onChange(v){
|
||||
console.log(v);
|
||||
}
|
||||
|
||||
// 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 />, document.getElementById('__react-content'));
|
||||
React.render(<div style={{width:400,margin:100}}><Slider onChange={onChange}/></div>, document.getElementById('__react-content'));
|
||||
|
||||
+3
-2
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "rc-slider",
|
||||
"version": "1.2.2",
|
||||
"version": "1.3.1",
|
||||
"description": "slider ui component for react",
|
||||
"keywords": [
|
||||
"react",
|
||||
@@ -18,7 +18,7 @@
|
||||
"url": "http://github.com/react-component/slider/issues"
|
||||
},
|
||||
"licenses": "MIT",
|
||||
"main":"./lib/index.js",
|
||||
"main": "./lib/index.js",
|
||||
"config": {
|
||||
"port": 8000
|
||||
},
|
||||
@@ -48,6 +48,7 @@
|
||||
"precommit"
|
||||
],
|
||||
"dependencies": {
|
||||
"rc-tooltip": "^2.4.0",
|
||||
"rc-util": "^2.0.2"
|
||||
}
|
||||
}
|
||||
|
||||
+214
-154
@@ -1,18 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
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) {
|
||||
e.cancelBubble = true;
|
||||
e.returnValue = false;
|
||||
if (e.stopPropagation) {
|
||||
e.stopPropagation();
|
||||
}
|
||||
if (e.preventDefault) {
|
||||
e.preventDefault();
|
||||
}
|
||||
e.cancelBubble = true;
|
||||
e.returnValue = false;
|
||||
return false;
|
||||
}
|
||||
|
||||
function prefixClsFn(prefixCls) {
|
||||
@@ -22,14 +26,33 @@ function prefixClsFn(prefixCls) {
|
||||
}).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({
|
||||
propTypes: {
|
||||
min: React.PropTypes.number,
|
||||
max: React.PropTypes.number,
|
||||
step: React.PropTypes.number,
|
||||
defaultValue: React.PropTypes.number,
|
||||
defaultIndex: React.PropTypes.number,
|
||||
value: React.PropTypes.number,
|
||||
index: React.PropTypes.number,
|
||||
marks: React.PropTypes.array,
|
||||
isIncluded: React.PropTypes.bool,
|
||||
className: React.PropTypes.string,
|
||||
disabled: React.PropTypes.bool,
|
||||
onBeforeChange: React.PropTypes.func,
|
||||
@@ -37,67 +60,62 @@ var Slider = React.createClass({
|
||||
onAfterChange: React.PropTypes.func
|
||||
},
|
||||
|
||||
getDefaultProps: function() {
|
||||
getDefaultProps() {
|
||||
return {
|
||||
min: 0,
|
||||
max: 100,
|
||||
step: 1,
|
||||
value: 0,
|
||||
defaultValue: 0,
|
||||
marks: [],
|
||||
className: 'rc-slider',
|
||||
isIncluded: true,
|
||||
className: '',
|
||||
prefixCls: 'rc-slider',
|
||||
disabled: false,
|
||||
index: 0
|
||||
defaultIndex: 0
|
||||
};
|
||||
},
|
||||
|
||||
getInitialState: function() {
|
||||
getInitialState() {
|
||||
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;
|
||||
if (marksLen > 0) {
|
||||
value = ((props.max - props.min) / (marksLen - 1)) * (props.index);
|
||||
value = value.toFixed(5);
|
||||
value = getValueFromIndex(props);
|
||||
}
|
||||
|
||||
return {
|
||||
upperBound: 0,
|
||||
sliderLength: 0,
|
||||
value: value,
|
||||
active: props.disabled ? '' : ((value > props.min || props.index > 0) ? 'active' : '')
|
||||
value: value
|
||||
};
|
||||
},
|
||||
|
||||
componentWillReceiveProps: function(newProps) {
|
||||
var value = newProps.value;
|
||||
this.state.value = this._trimAlignValue(value, newProps);
|
||||
},
|
||||
|
||||
componentDidMount: function() {
|
||||
this._onHandleResizeListener = DomUtils.addEventListener(window, 'resize', this.handleResize);
|
||||
this.handleResize();
|
||||
},
|
||||
|
||||
componentWillUnmount: function() {
|
||||
if (this._onHandleResizeListener) {
|
||||
this._onHandleResizeListener.remove();
|
||||
componentWillReceiveProps(nextProps) {
|
||||
if ('value' in nextProps) {
|
||||
this.setState({
|
||||
value: nextProps.value
|
||||
});
|
||||
} else if ('index' in nextProps) {
|
||||
this.setState({
|
||||
value: getValueFromIndex(nextProps)
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
getValue: function() {
|
||||
return this.state.value;
|
||||
},
|
||||
|
||||
getIndex: function() {
|
||||
getIndex() {
|
||||
var props = this.props;
|
||||
if (props.marks.length === 0) {
|
||||
return 0;
|
||||
}
|
||||
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;
|
||||
|
||||
var step = props.marks.length > 0 ? (props.max - props.min) / (props.marks.length - 1) : props.step;
|
||||
@@ -119,30 +137,34 @@ var Slider = React.createClass({
|
||||
return parseFloat(alignValue.toFixed(5));
|
||||
},
|
||||
|
||||
_calcOffset: function(value) {
|
||||
_calcOffset(value) {
|
||||
var ratio = (value - this.props.min) / (this.props.max - this.props.min);
|
||||
return ratio * this.state.upperBound;
|
||||
return ratio * 100 + '%';
|
||||
},
|
||||
|
||||
_calcValue: function(offset) {
|
||||
var ratio = offset / this.state.upperBound;
|
||||
_calcValue(offset) {
|
||||
var ratio = offset / this.getSliderLength();
|
||||
return ratio * (this.props.max - this.props.min) + this.props.min;
|
||||
},
|
||||
|
||||
_calValueByPos: function (position, callback) {
|
||||
var pixelOffset = position - this.state.sliderStart;
|
||||
_calValueByPos(position) {
|
||||
var pixelOffset = position - this.getSliderStart();
|
||||
// pixelOffset -= (this.state.handleSize / 2);
|
||||
|
||||
var nextValue = this._trimAlignValue(this._calcValue(pixelOffset));
|
||||
|
||||
this.setState({value: nextValue, active: 'active'}, callback);
|
||||
// do not use setState
|
||||
this.state.value = nextValue;
|
||||
this.setState({
|
||||
value: nextValue
|
||||
});
|
||||
return nextValue;
|
||||
},
|
||||
|
||||
_getMousePosition: function(e) {
|
||||
return e.pageX || (e.clientX + document.documentElement.scrollLeft);
|
||||
_getTouchPosition(e) {
|
||||
var touch = e.touches[0];
|
||||
return touch.pageX;
|
||||
},
|
||||
|
||||
_triggerEvents: function(event) {
|
||||
_triggerEvents(event) {
|
||||
var props = this.props;
|
||||
var hasMarks = props.marks && props.marks.length > 0;
|
||||
if (props[event]) {
|
||||
@@ -150,124 +172,145 @@ var Slider = React.createClass({
|
||||
}
|
||||
},
|
||||
|
||||
_addEventHandles: function() {
|
||||
this._onMouseMoveListener = DomUtils.addEventListener(document, 'mousemove', this._onMouseMove);
|
||||
this._onMouseUpListener = DomUtils.addEventListener(document, 'mouseup', this._onMouseUp);
|
||||
_addEventHandles(type) {
|
||||
if (type === 'touch') {
|
||||
// just work for chrome iOS Safari and Android Browser
|
||||
this._onTouchMoveListener = DomUtils.addEventListener(document, 'touchmove', this._onTouchMove);
|
||||
this._onTouchUpListener = DomUtils.addEventListener(document, 'touchend', this._onTouchUp);
|
||||
} else if (type === 'mouse') {
|
||||
this._onMouseMoveListener = DomUtils.addEventListener(document, 'mousemove', this._onMouseMove);
|
||||
this._onMouseUpListener = DomUtils.addEventListener(document, 'mouseup', this._onMouseUp);
|
||||
}
|
||||
},
|
||||
|
||||
_removeEventHandles: function () {
|
||||
if (this._onMouseMoveListener) {
|
||||
_removeEventHandles(type) {
|
||||
if (type === 'touch') {
|
||||
this._onTouchMoveListener.remove();
|
||||
this._onTouchUpListener.remove();
|
||||
} else if (type === 'mouse') {
|
||||
this._onMouseMoveListener.remove();
|
||||
}
|
||||
|
||||
if (this._onMouseUpListener) {
|
||||
this._onMouseUpListener.remove();
|
||||
}
|
||||
},
|
||||
|
||||
_start: function(position) {
|
||||
if (document.activeElement) {
|
||||
document.activeElement.blur();
|
||||
_start(position) {
|
||||
this._triggerEvents('onBeforeChange');
|
||||
this.startValue = this.state.value;
|
||||
this.startPosition = position;
|
||||
},
|
||||
|
||||
_end(type) {
|
||||
this._removeEventHandles(type);
|
||||
this._triggerEvents('onAfterChange');
|
||||
},
|
||||
|
||||
_onMouseUp() {
|
||||
this._end('mouse');
|
||||
},
|
||||
|
||||
_onTouchUp() {
|
||||
this._end('touch');
|
||||
},
|
||||
|
||||
_onMouseMove(e) {
|
||||
var position = e.pageX;
|
||||
this._handleMove(e, position);
|
||||
},
|
||||
|
||||
_onTouchMove(e) {
|
||||
if (e.touches.length > 1 || (e.type === 'touchend' && e.touches.length > 0)) {
|
||||
this._end('touch');
|
||||
return;
|
||||
}
|
||||
|
||||
this._triggerEvents('onBeforeChange');
|
||||
var position = this._getTouchPosition(e);
|
||||
|
||||
this.setState({
|
||||
startValue: this.state.value,
|
||||
startPosition: position
|
||||
});
|
||||
this._handleMove(e, position);
|
||||
},
|
||||
|
||||
_end: function() {
|
||||
this._removeEventHandles();
|
||||
this.setState(this._triggerEvents.bind(this, 'onAfterChange'));
|
||||
},
|
||||
|
||||
_onMouseUp: function() {
|
||||
this._end();
|
||||
},
|
||||
|
||||
_onMouseMove: function(e) {
|
||||
_handleMove(e, position) {
|
||||
pauseEvent(e);
|
||||
var position = this._getMousePosition(e);
|
||||
var props = this.props;
|
||||
var state = this.state;
|
||||
|
||||
var value = state.value;
|
||||
var oldValue = value;
|
||||
|
||||
var diffPosition = position - state.startPosition;
|
||||
var diffPosition = position - this.startPosition;
|
||||
|
||||
var diffValue = diffPosition / (state.sliderLength) * (props.max - props.min);
|
||||
var newValue = this._trimAlignValue(state.startValue + diffValue);
|
||||
var diffValue = diffPosition / this.getSliderLength() * (props.max - props.min);
|
||||
var newValue = this._trimAlignValue(this.startValue + diffValue);
|
||||
|
||||
value = newValue;
|
||||
|
||||
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 rect = slider.getBoundingClientRect();
|
||||
|
||||
var sliderMin = rect.left;
|
||||
var sliderMax = rect.right;
|
||||
|
||||
this.setState({
|
||||
upperBound: slider.clientWidth,
|
||||
sliderLength: Math.abs(sliderMax - sliderMin),
|
||||
sliderStart: sliderMin
|
||||
});
|
||||
return rect.left;
|
||||
},
|
||||
|
||||
handleMouseDown: function() {
|
||||
return (e) => {
|
||||
if (this.props.disabled) {
|
||||
return;
|
||||
}
|
||||
var position = this._getMousePosition(e);
|
||||
this._start(position);
|
||||
this._addEventHandles();
|
||||
pauseEvent(e);
|
||||
};
|
||||
},
|
||||
|
||||
handleSliderMouseDown: function(e) {
|
||||
if (this.props.disabled) {
|
||||
handleTouchStart(e) {
|
||||
if (e.touches.length > 1 || (e.type.toLowerCase() === 'touchend' && e.touches.length > 0)) {
|
||||
return;
|
||||
}
|
||||
var position = this._getMousePosition(e);
|
||||
this._calValueByPos(position,
|
||||
() => {
|
||||
this._triggerEvents('onChange');
|
||||
this._start(position);
|
||||
this._addEventHandles();
|
||||
}
|
||||
);
|
||||
|
||||
var position = this._getTouchPosition(e);
|
||||
this._calValueByPos(position);
|
||||
this._triggerEvents('onChange');
|
||||
this._start(position);
|
||||
this._addEventHandles('touch');
|
||||
pauseEvent(e);
|
||||
},
|
||||
|
||||
renderSteps: function() {
|
||||
handleSliderMouseDown(e) {
|
||||
var position = e.pageX;
|
||||
this._calValueByPos(position);
|
||||
this._triggerEvents('onChange');
|
||||
this._start(position);
|
||||
this._addEventHandles('mouse');
|
||||
pauseEvent(e);
|
||||
},
|
||||
|
||||
renderSteps() {
|
||||
var props = this.props;
|
||||
var marksLen = props.marks.length;
|
||||
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 elements = [];
|
||||
for (var i = 0; i < stepNum; i++) {
|
||||
var offset = unit * i;
|
||||
var offset = unit * i + '%';
|
||||
var style = {
|
||||
left: offset.toFixed(5)
|
||||
left: offset
|
||||
};
|
||||
var className = prefixClsFn(prefixCls, 'dot');
|
||||
if (i <= this.getIndex() || (this._calcValue(offset) <= this.getValue())) {
|
||||
className = prefixClsFn(prefixCls, 'dot', 'dot-active');
|
||||
if (props.isIncluded) {
|
||||
if (i <= this.getIndex()) {
|
||||
className = prefixClsFn(prefixCls, 'dot', 'dot-active');
|
||||
}
|
||||
} else {
|
||||
className = (i === this.getIndex()) ? prefixClsFn(prefixCls, 'dot', 'dot-active') : className;
|
||||
}
|
||||
|
||||
elements[i] = (
|
||||
<span className={className} style={style} ref={'step' + i}></span>
|
||||
);
|
||||
@@ -280,28 +323,31 @@ var Slider = React.createClass({
|
||||
);
|
||||
},
|
||||
|
||||
renderMark: function(i) {
|
||||
renderMark(i) {
|
||||
var marks = this.props.marks;
|
||||
var marksLen = marks.length;
|
||||
var unit = this.state.sliderLength / (marksLen - 1);
|
||||
var unit = 100 / (marksLen - 1);
|
||||
var offset = unit * i;
|
||||
|
||||
var style = {
|
||||
width: (unit / 2).toFixed(5)
|
||||
width: unit / 2 + '%'
|
||||
};
|
||||
|
||||
if (i === (marksLen - 1)) {
|
||||
style.right = '0';
|
||||
style.width = 'auto';
|
||||
}else {
|
||||
style.left = (i > 0 ? (offset - (unit / 4)).toFixed(5) : offset);
|
||||
if (i === marksLen - 1) {
|
||||
style.right = -unit / 4 + '%';
|
||||
} else {
|
||||
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');
|
||||
|
||||
if (i <= this.getIndex()) {
|
||||
className = prefixClsFn(prefixCls, 'mark-text', 'mark-text-active');
|
||||
if (this.props.isIncluded) {
|
||||
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 (
|
||||
@@ -309,7 +355,7 @@ var Slider = React.createClass({
|
||||
);
|
||||
},
|
||||
|
||||
renderMarks: function() {
|
||||
renderMarks() {
|
||||
var marks = this.props.marks;
|
||||
var marksLen = marks.length;
|
||||
var elements = [];
|
||||
@@ -317,7 +363,7 @@ var Slider = React.createClass({
|
||||
elements[i] = this.renderMark(i);
|
||||
}
|
||||
|
||||
var prefixCls = this.props.className;
|
||||
var prefixCls = this.props.prefixCls;
|
||||
var className = prefixClsFn(prefixCls, 'mark');
|
||||
|
||||
return (
|
||||
@@ -327,33 +373,39 @@ var Slider = React.createClass({
|
||||
);
|
||||
},
|
||||
|
||||
renderHandle: function(offset) {
|
||||
renderHandle(offset) {
|
||||
var handleStyle = {
|
||||
left: offset
|
||||
};
|
||||
|
||||
var prefixCls = this.props.className;
|
||||
var prefixCls = this.props.prefixCls;
|
||||
var className = prefixClsFn(prefixCls, 'handle');
|
||||
|
||||
if (this.state.active) {
|
||||
className = prefixClsFn(prefixCls, 'handle', 'handle-active');
|
||||
}
|
||||
var handle = <div className={className}
|
||||
ref = "handle"
|
||||
style = {handleStyle}></div>;
|
||||
|
||||
return (
|
||||
<a className={className}
|
||||
ref = "handle"
|
||||
style = {handleStyle}
|
||||
href = "#"
|
||||
onMouseDown={this.handleMouseDown}></a>
|
||||
);
|
||||
if (this.props.marks.length > 0) {
|
||||
return handle;
|
||||
} else {
|
||||
return (
|
||||
<Tooltip
|
||||
placement="top"
|
||||
overlay={<span>{this.state.value}</span>}
|
||||
delay={0}
|
||||
prefixCls={prefixClsFn(prefixCls, 'tooltip')}>
|
||||
{handle}
|
||||
</Tooltip>
|
||||
);
|
||||
}
|
||||
},
|
||||
|
||||
renderTrack: function(offset) {
|
||||
renderTrack(offset) {
|
||||
var style = {
|
||||
width: offset
|
||||
};
|
||||
|
||||
var prefixCls = this.props.className;
|
||||
var prefixCls = this.props.prefixCls;
|
||||
var trackClassName = prefixClsFn(prefixCls, 'track');
|
||||
|
||||
return (
|
||||
@@ -361,27 +413,35 @@ var Slider = React.createClass({
|
||||
);
|
||||
},
|
||||
|
||||
render: function() {
|
||||
render() {
|
||||
var state = this.state;
|
||||
var props = this.props;
|
||||
|
||||
var value = state.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 steps = (props.step > 1 || props.marks.length > 0) ? this.renderSteps() : null;
|
||||
var sliderMarks = (props.marks.length > 0) ? this.renderMarks() : null;
|
||||
|
||||
var prefixCls = props.className;
|
||||
var sliderClassName = props.disabled ? prefixClsFn(prefixCls, 'disabled') : prefixCls;
|
||||
var prefixCls = props.prefixCls;
|
||||
var disabled = props.disabled;
|
||||
var sliderClassName = {
|
||||
[prefixCls]: 1,
|
||||
[props.className]: !!props.className,
|
||||
[`${prefixCls}-disabled`]: disabled
|
||||
};
|
||||
|
||||
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}
|
||||
{handles}
|
||||
{steps}
|
||||
{sliderMarks}
|
||||
{this.props.children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
+16
-16
@@ -18,14 +18,14 @@ describe('rc-slider', function () {
|
||||
|
||||
it('should render a simple slider with value correctly!', function () {
|
||||
var slider = React.render(
|
||||
<Slider className='rc-slider' value={40}/>,
|
||||
<Slider className='rc-slider' defaultValue={40}/>,
|
||||
div
|
||||
);
|
||||
var node = $(div);
|
||||
expect(node.find('.rc-slider').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(slider.getValue()).to.be(40);
|
||||
expect(slider.state.value).to.be(40);
|
||||
var trackWidth = node.find('.rc-slider-track')[0].style.width;
|
||||
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-track').length).to.be(1);
|
||||
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 () {
|
||||
var slider = React.render(
|
||||
<Slider marks={["一","二","三","四","五"]} index={3} />,
|
||||
<Slider marks={["一","二","三","四","五"]} defaultIndex={3} />,
|
||||
div
|
||||
);
|
||||
var node = $(div);
|
||||
@@ -58,19 +58,19 @@ describe('rc-slider', function () {
|
||||
expect(slider.getIndex()).to.be(3);
|
||||
});
|
||||
|
||||
it('should mouseDown works!', function (done) {
|
||||
var slider = React.render(
|
||||
<Slider marks={["一","二","三","四","五"]} />,
|
||||
div
|
||||
);
|
||||
var selectedStep = slider.refs.step3.getDOMNode();
|
||||
// it('should mouseDown works!', function (done) {
|
||||
// var slider = React.render(
|
||||
// <Slider marks={["一","二","三","四","五"]} />,
|
||||
// div
|
||||
// );
|
||||
// var selectedStep = slider.refs.step3.getDOMNode();
|
||||
|
||||
Simulate.mouseDown(selectedStep);
|
||||
// Simulate.mouseDown(selectedStep);
|
||||
|
||||
setTimeout( function() {
|
||||
expect(slider.state.active).to.be('active');
|
||||
done();
|
||||
}, 200);
|
||||
});
|
||||
// setTimeout( function() {
|
||||
// expect(slider.state.active).to.be('active');
|
||||
// done();
|
||||
// }, 200);
|
||||
// });
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user