mirror of
https://github.com/wassname/slider.git
synced 2026-09-11 12:42:49 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c28f14272d | ||
|
|
b70a4e8c94 | ||
|
|
41f5ddb9bd | ||
|
|
38edc4db93 | ||
|
|
93ddaef0c3 | ||
|
|
dbc64888bc | ||
|
|
2112385ccc | ||
|
|
11ef100472 |
-29
@@ -1,29 +0,0 @@
|
|||||||
build/
|
|
||||||
*.cfg
|
|
||||||
nohup.out
|
|
||||||
*.iml
|
|
||||||
.idea/
|
|
||||||
.ipr
|
|
||||||
.iws
|
|
||||||
*~
|
|
||||||
~*
|
|
||||||
*.diff
|
|
||||||
*.log
|
|
||||||
*.patch
|
|
||||||
*.bak
|
|
||||||
.DS_Store
|
|
||||||
Thumbs.db
|
|
||||||
.project
|
|
||||||
.*proj
|
|
||||||
.svn/
|
|
||||||
*.swp
|
|
||||||
out/
|
|
||||||
.build
|
|
||||||
node_modules
|
|
||||||
.cache
|
|
||||||
examples
|
|
||||||
tests
|
|
||||||
src
|
|
||||||
/index.js
|
|
||||||
.*
|
|
||||||
assets/**/*.less
|
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
language: node_js
|
language: node_js
|
||||||
|
|
||||||
|
sudo: false
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
- yiminghe@gmail.com
|
- yiminghe@gmail.com
|
||||||
|
|||||||
@@ -99,6 +99,12 @@ React.render(<Rcslider />, container);
|
|||||||
<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>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>value</td>
|
||||||
|
<td>number</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Determines the current positions of the handles.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>marks</td>
|
<td>marks</td>
|
||||||
@@ -118,6 +124,12 @@ React.render(<Rcslider />, container);
|
|||||||
<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>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>index</td>
|
||||||
|
<td>number</td>
|
||||||
|
<td></td>
|
||||||
|
<td>For step or marks slider, determine current positions of the handles.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>disabled</td>
|
<td>disabled</td>
|
||||||
<td>boolean</td>
|
<td>boolean</td>
|
||||||
@@ -138,7 +150,7 @@ npm start
|
|||||||
|
|
||||||
http://localhost:8000/examples/
|
http://localhost:8000/examples/
|
||||||
|
|
||||||
online example: http://react-component.github.io/slider/examples/
|
online example: http://react-component.github.io/slider/
|
||||||
|
|
||||||
## Test Case
|
## Test Case
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -140,7 +140,7 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-placement-top {
|
&-placement-points-bc-tc {
|
||||||
padding: @tooltip-arrow-width 0 @tooltip-distance 0;
|
padding: @tooltip-arrow-width 0 @tooltip-distance 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -166,7 +166,7 @@
|
|||||||
border-style: solid;
|
border-style: solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-placement-top &-arrow {
|
&-placement-points-bc-tc &-arrow {
|
||||||
bottom: @tooltip-distance - @tooltip-arrow-width;
|
bottom: @tooltip-distance - @tooltip-arrow-width;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
margin-left: -@tooltip-arrow-width;
|
margin-left: -@tooltip-arrow-width;
|
||||||
|
|||||||
+3
-3
@@ -1,6 +1,6 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
require('rc-slider/assets/index.css');
|
require('rc-slider/assets/index.less');
|
||||||
|
|
||||||
var Slider = require('rc-slider');
|
var Slider = require('rc-slider');
|
||||||
var React = require('react');
|
var React = require('react');
|
||||||
@@ -9,6 +9,6 @@ function onChange(v){
|
|||||||
console.log(v);
|
console.log(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
// React.render(<Slider marks={["一","二","三","四","五"]} index={3}/>, document.getElementById('__react-content'));
|
// React.render(<div style={{width:400,margin:100}}><Slider marks={["一","二","三","四","五"]} defaultIndex={2} /></div>, document.getElementById('__react-content'));
|
||||||
// React.render(<Slider className='rc-slider' step={20}/>, document.getElementById('__react-content'));
|
// React.render(<div style={{width:400,margin:100}}><Slider className='rc-slider' step={20}/></div>, document.getElementById('__react-content'));
|
||||||
React.render(<div style={{width:400,margin:100}}><Slider onChange={onChange}/></div>, document.getElementById('__react-content'));
|
React.render(<div style={{width:400,margin:100}}><Slider onChange={onChange}/></div>, document.getElementById('__react-content'));
|
||||||
|
|||||||
@@ -1,3 +1,2 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
module.exports = require('./src/');
|
module.exports = require('./src/');
|
||||||
|
|||||||
+11
-9
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "rc-slider",
|
"name": "rc-slider",
|
||||||
"version": "1.3.1",
|
"version": "1.4.3",
|
||||||
"description": "slider ui component for react",
|
"description": "slider ui component for react",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
@@ -17,6 +17,10 @@
|
|||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "http://github.com/react-component/slider/issues"
|
"url": "http://github.com/react-component/slider/issues"
|
||||||
},
|
},
|
||||||
|
"files": [
|
||||||
|
"assets/*.css",
|
||||||
|
"lib"
|
||||||
|
],
|
||||||
"licenses": "MIT",
|
"licenses": "MIT",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"config": {
|
"config": {
|
||||||
@@ -24,13 +28,11 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "rc-tools run build",
|
"build": "rc-tools run build",
|
||||||
"precommit": "rc-tools run precommit",
|
|
||||||
"less": "rc-tools run less",
|
|
||||||
"gh-pages": "rc-tools run gh-pages",
|
"gh-pages": "rc-tools run gh-pages",
|
||||||
"history": "rc-tools run history",
|
|
||||||
"start": "node --harmony node_modules/.bin/rc-server",
|
"start": "node --harmony node_modules/.bin/rc-server",
|
||||||
"publish": "rc-tools run tag",
|
"pub": "rc-tools run pub",
|
||||||
"lint": "rc-tools run lint",
|
"lint": "rc-tools run lint",
|
||||||
|
"karma": "rc-tools run karma",
|
||||||
"saucelabs": "node --harmony node_modules/.bin/rc-tools run saucelabs",
|
"saucelabs": "node --harmony node_modules/.bin/rc-tools run saucelabs",
|
||||||
"browser-test": "node --harmony node_modules/.bin/rc-tools run browser-test",
|
"browser-test": "node --harmony node_modules/.bin/rc-tools run browser-test",
|
||||||
"browser-test-cover": "node --harmony node_modules/.bin/rc-tools run browser-test-cover"
|
"browser-test-cover": "node --harmony node_modules/.bin/rc-tools run browser-test-cover"
|
||||||
@@ -39,16 +41,16 @@
|
|||||||
"expect.js": "0.3.x",
|
"expect.js": "0.3.x",
|
||||||
"precommit-hook": "^1.0.7",
|
"precommit-hook": "^1.0.7",
|
||||||
"rc-server": "3.x",
|
"rc-server": "3.x",
|
||||||
"rc-tools": "3.x",
|
"rc-tools": "4.x",
|
||||||
"react": "^0.13.x",
|
"react": "^0.13.x",
|
||||||
"node-dev": "2.x",
|
"node-dev": "2.x",
|
||||||
"jquery": "^1.11.2"
|
"jquery": "^1.11.2"
|
||||||
},
|
},
|
||||||
"precommit": [
|
"precommit": [
|
||||||
"precommit"
|
"lint"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"rc-tooltip": "^2.4.0",
|
"rc-tooltip": "2.x",
|
||||||
"rc-util": "^2.0.2"
|
"rc-util": "2.x"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+268
-237
@@ -1,9 +1,6 @@
|
|||||||
'use strict';
|
import React from 'react';
|
||||||
|
import Tooltip from 'rc-tooltip';
|
||||||
var React = require('react');
|
import rcUtil, {Dom as DomUtils} from 'rc-util';
|
||||||
var Tooltip = require('rc-tooltip');
|
|
||||||
var rcUtil = require('rc-util');
|
|
||||||
var DomUtils = rcUtil.Dom;
|
|
||||||
|
|
||||||
function noop() {
|
function noop() {
|
||||||
}
|
}
|
||||||
@@ -19,17 +16,16 @@ function pauseEvent(e) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function prefixClsFn(prefixCls) {
|
function prefixClsFn(prefixCls, ...args) {
|
||||||
var args = Array.prototype.slice.call(arguments, 1);
|
|
||||||
return args.map((s)=> {
|
return args.map((s)=> {
|
||||||
return prefixCls + '-' + s;
|
return prefixCls + '-' + s;
|
||||||
}).join(' ');
|
}).join(' ');
|
||||||
}
|
}
|
||||||
|
|
||||||
function getValueFromIndex(props) {
|
function getValueFromIndex(props) {
|
||||||
var value;
|
let value;
|
||||||
var marksLen = props.marks.length;
|
const marksLen = props.marks.length;
|
||||||
var index;
|
let index;
|
||||||
if ('index' in props) {
|
if ('index' in props) {
|
||||||
index = props.index;
|
index = props.index;
|
||||||
} else {
|
} else {
|
||||||
@@ -37,12 +33,12 @@ function getValueFromIndex(props) {
|
|||||||
}
|
}
|
||||||
if (marksLen > 0) {
|
if (marksLen > 0) {
|
||||||
value = ((props.max - props.min) / (marksLen - 1)) * (index);
|
value = ((props.max - props.min) / (marksLen - 1)) * (index);
|
||||||
value = value.toFixed(5);
|
value = value.toFixed(5) / 1;
|
||||||
}
|
}
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
var Slider = React.createClass({
|
const Slider = React.createClass({
|
||||||
propTypes: {
|
propTypes: {
|
||||||
min: React.PropTypes.number,
|
min: React.PropTypes.number,
|
||||||
max: React.PropTypes.number,
|
max: React.PropTypes.number,
|
||||||
@@ -54,10 +50,12 @@ var Slider = React.createClass({
|
|||||||
marks: React.PropTypes.array,
|
marks: React.PropTypes.array,
|
||||||
isIncluded: React.PropTypes.bool,
|
isIncluded: React.PropTypes.bool,
|
||||||
className: React.PropTypes.string,
|
className: React.PropTypes.string,
|
||||||
|
prefixCls: React.PropTypes.string,
|
||||||
disabled: React.PropTypes.bool,
|
disabled: React.PropTypes.bool,
|
||||||
|
children: React.PropTypes.any,
|
||||||
onBeforeChange: React.PropTypes.func,
|
onBeforeChange: React.PropTypes.func,
|
||||||
onChange: React.PropTypes.func,
|
onChange: React.PropTypes.func,
|
||||||
onAfterChange: React.PropTypes.func
|
onAfterChange: React.PropTypes.func,
|
||||||
},
|
},
|
||||||
|
|
||||||
getDefaultProps() {
|
getDefaultProps() {
|
||||||
@@ -71,186 +69,120 @@ var Slider = React.createClass({
|
|||||||
className: '',
|
className: '',
|
||||||
prefixCls: 'rc-slider',
|
prefixCls: 'rc-slider',
|
||||||
disabled: false,
|
disabled: false,
|
||||||
defaultIndex: 0
|
defaultIndex: 0,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
getInitialState() {
|
getInitialState() {
|
||||||
var props = this.props;
|
const props = this.props;
|
||||||
var value = props.defaultValue;
|
let value = props.defaultValue;
|
||||||
if ('value' in props) {
|
if ('value' in props) {
|
||||||
value = props.value;
|
value = props.value;
|
||||||
}
|
}
|
||||||
value = this._trimAlignValue(value);
|
value = this._trimAlignValue(value);
|
||||||
var marksLen = props.marks.length;
|
const marksLen = props.marks.length;
|
||||||
if (marksLen > 0) {
|
if (marksLen > 0) {
|
||||||
value = getValueFromIndex(props);
|
value = getValueFromIndex(props);
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
value: value
|
dragging: false,
|
||||||
|
showTooltip: false,
|
||||||
|
value: value,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
componentWillReceiveProps(nextProps) {
|
||||||
if ('value' in nextProps) {
|
if ('value' in nextProps) {
|
||||||
this.setState({
|
this.setState({
|
||||||
value: nextProps.value
|
value: nextProps.value,
|
||||||
});
|
});
|
||||||
} else if ('index' in nextProps) {
|
} else if ('index' in nextProps) {
|
||||||
this.setState({
|
this.setState({
|
||||||
value: getValueFromIndex(nextProps)
|
value: getValueFromIndex(nextProps),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
getIndex() {
|
onMouseUp() {
|
||||||
var props = this.props;
|
|
||||||
var value = this.state.value;
|
|
||||||
|
|
||||||
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(val, props) {
|
|
||||||
props = props || this.props;
|
|
||||||
|
|
||||||
var step = props.marks.length > 0 ? (props.max - props.min) / (props.marks.length - 1) : props.step;
|
|
||||||
|
|
||||||
if (val <= props.min) {
|
|
||||||
val = props.min;
|
|
||||||
}
|
|
||||||
if (val >= props.max) {
|
|
||||||
val = props.max;
|
|
||||||
}
|
|
||||||
|
|
||||||
var valModStep = (val - props.min) % step;
|
|
||||||
var alignValue = val - valModStep;
|
|
||||||
|
|
||||||
if (Math.abs(valModStep) * 2 >= step) {
|
|
||||||
alignValue += (valModStep > 0) ? step : (-step);
|
|
||||||
}
|
|
||||||
|
|
||||||
return parseFloat(alignValue.toFixed(5));
|
|
||||||
},
|
|
||||||
|
|
||||||
_calcOffset(value) {
|
|
||||||
var ratio = (value - this.props.min) / (this.props.max - this.props.min);
|
|
||||||
return ratio * 100 + '%';
|
|
||||||
},
|
|
||||||
|
|
||||||
_calcValue(offset) {
|
|
||||||
var ratio = offset / this.getSliderLength();
|
|
||||||
return ratio * (this.props.max - this.props.min) + this.props.min;
|
|
||||||
},
|
|
||||||
|
|
||||||
_calValueByPos(position) {
|
|
||||||
var pixelOffset = position - this.getSliderStart();
|
|
||||||
// pixelOffset -= (this.state.handleSize / 2);
|
|
||||||
var nextValue = this._trimAlignValue(this._calcValue(pixelOffset));
|
|
||||||
// do not use setState
|
|
||||||
this.state.value = nextValue;
|
|
||||||
this.setState({
|
|
||||||
value: nextValue
|
|
||||||
});
|
|
||||||
return nextValue;
|
|
||||||
},
|
|
||||||
|
|
||||||
_getTouchPosition(e) {
|
|
||||||
var touch = e.touches[0];
|
|
||||||
return touch.pageX;
|
|
||||||
},
|
|
||||||
|
|
||||||
_triggerEvents(event) {
|
|
||||||
var props = this.props;
|
|
||||||
var hasMarks = props.marks && props.marks.length > 0;
|
|
||||||
if (props[event]) {
|
|
||||||
props[event](hasMarks ? this.getIndex() : this.state.value);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_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(type) {
|
|
||||||
if (type === 'touch') {
|
|
||||||
this._onTouchMoveListener.remove();
|
|
||||||
this._onTouchUpListener.remove();
|
|
||||||
} else if (type === 'mouse') {
|
|
||||||
this._onMouseMoveListener.remove();
|
|
||||||
this._onMouseUpListener.remove();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_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');
|
this._end('mouse');
|
||||||
},
|
},
|
||||||
|
|
||||||
_onTouchUp() {
|
onTouchUp() {
|
||||||
this._end('touch');
|
this._end('touch');
|
||||||
},
|
},
|
||||||
|
|
||||||
_onMouseMove(e) {
|
onMouseMove(e) {
|
||||||
var position = e.pageX;
|
const position = e.pageX || (e.clientX + document.documentElement.scrollLeft); // to compat ie8
|
||||||
this._handleMove(e, position);
|
this.onMove(e, position);
|
||||||
},
|
},
|
||||||
|
|
||||||
_onTouchMove(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');
|
this._end('touch');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var position = this._getTouchPosition(e);
|
const position = this._getTouchPosition(e);
|
||||||
|
|
||||||
this._handleMove(e, position);
|
this.onMove(e, position);
|
||||||
},
|
},
|
||||||
|
|
||||||
_handleMove(e, position) {
|
onMove(e, position) {
|
||||||
pauseEvent(e);
|
pauseEvent(e);
|
||||||
var props = this.props;
|
const props = this.props;
|
||||||
var state = this.state;
|
const state = this.state;
|
||||||
|
|
||||||
var value = state.value;
|
let value = state.value;
|
||||||
var oldValue = value;
|
const oldValue = value;
|
||||||
|
|
||||||
var diffPosition = position - this.startPosition;
|
const diffPosition = position - this.startPosition;
|
||||||
|
|
||||||
var diffValue = diffPosition / this.getSliderLength() * (props.max - props.min);
|
const diffValue = diffPosition / this.getSliderLength() * (props.max - props.min);
|
||||||
var newValue = this._trimAlignValue(this.startValue + diffValue);
|
value = this._trimAlignValue(this.startValue + diffValue);
|
||||||
|
|
||||||
value = newValue;
|
if (value !== oldValue && !('value' in props) && !('index' in props)) {
|
||||||
|
|
||||||
if (newValue !== oldValue) {
|
|
||||||
this.setState({value: value});
|
this.setState({value: value});
|
||||||
this._triggerEvents('onChange');
|
}
|
||||||
|
if (value !== oldValue) {
|
||||||
|
this._triggerEvents('onChange', value);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onTouchStart(e) {
|
||||||
|
if (e.touches.length > 1 || (e.type.toLowerCase() === 'touchend' && e.touches.length > 0)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const position = this._getTouchPosition(e);
|
||||||
|
const value = this._calValueByPos(position);
|
||||||
|
this._triggerEvents('onChange', value);
|
||||||
|
this._start(position);
|
||||||
|
this._addDocumentEvents('touch');
|
||||||
|
pauseEvent(e);
|
||||||
|
},
|
||||||
|
|
||||||
|
onSliderMouseDown(e) {
|
||||||
|
const position = e.pageX || (e.clientX + document.documentElement.scrollLeft); // to compat ie8
|
||||||
|
const value = this._calValueByPos(position);
|
||||||
|
this._triggerEvents('onChange', value);
|
||||||
|
this._start(position);
|
||||||
|
this._addDocumentEvents('mouse');
|
||||||
|
pauseEvent(e);
|
||||||
|
},
|
||||||
|
|
||||||
|
getIndex(v) {
|
||||||
|
const props = this.props;
|
||||||
|
const value = v === undefined ? this.state.value : v;
|
||||||
|
|
||||||
|
if (props.marks.length === 0) {
|
||||||
|
return Math.floor((value - props.min) / props.step);
|
||||||
|
}
|
||||||
|
const unit = ((props.max - props.min) / (props.marks.length - 1)).toFixed(5);
|
||||||
|
return Math.round(value / unit);
|
||||||
|
},
|
||||||
|
|
||||||
getSliderLength() {
|
getSliderLength() {
|
||||||
var slider = this.refs.slider;
|
const slider = this.refs.slider;
|
||||||
if (!slider) {
|
if (!slider) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -259,50 +191,28 @@ var Slider = React.createClass({
|
|||||||
},
|
},
|
||||||
|
|
||||||
getSliderStart() {
|
getSliderStart() {
|
||||||
var slider = this.refs.slider.getDOMNode();
|
const slider = this.refs.slider.getDOMNode();
|
||||||
var rect = slider.getBoundingClientRect();
|
const rect = slider.getBoundingClientRect();
|
||||||
|
|
||||||
return rect.left;
|
return rect.left;
|
||||||
},
|
},
|
||||||
|
|
||||||
handleTouchStart(e) {
|
|
||||||
if (e.touches.length > 1 || (e.type.toLowerCase() === 'touchend' && e.touches.length > 0)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var position = this._getTouchPosition(e);
|
|
||||||
this._calValueByPos(position);
|
|
||||||
this._triggerEvents('onChange');
|
|
||||||
this._start(position);
|
|
||||||
this._addEventHandles('touch');
|
|
||||||
pauseEvent(e);
|
|
||||||
},
|
|
||||||
|
|
||||||
handleSliderMouseDown(e) {
|
|
||||||
var position = e.pageX;
|
|
||||||
this._calValueByPos(position);
|
|
||||||
this._triggerEvents('onChange');
|
|
||||||
this._start(position);
|
|
||||||
this._addEventHandles('mouse');
|
|
||||||
pauseEvent(e);
|
|
||||||
},
|
|
||||||
|
|
||||||
renderSteps() {
|
renderSteps() {
|
||||||
var props = this.props;
|
const props = this.props;
|
||||||
var marksLen = props.marks.length;
|
const marksLen = props.marks.length;
|
||||||
var stepNum = marksLen > 0 ? marksLen : Math.floor((props.max - props.min) / props.step) + 1;
|
const stepNum = marksLen > 0 ? marksLen : Math.floor((props.max - props.min) / props.step) + 1;
|
||||||
var unit = 100 / (stepNum - 1);
|
const unit = 100 / (stepNum - 1);
|
||||||
|
|
||||||
var prefixCls = props.prefixCls;
|
const prefixCls = props.prefixCls;
|
||||||
var stepClassName = prefixClsFn(prefixCls, 'step');
|
const stepClassName = prefixClsFn(prefixCls, 'step');
|
||||||
|
|
||||||
var elements = [];
|
const elements = [];
|
||||||
for (var i = 0; i < stepNum; i++) {
|
for (let i = 0; i < stepNum; i++) {
|
||||||
var offset = unit * i + '%';
|
const offset = unit * i + '%';
|
||||||
var style = {
|
const style = {
|
||||||
left: offset
|
left: offset,
|
||||||
};
|
};
|
||||||
var className = prefixClsFn(prefixCls, 'dot');
|
let className = prefixClsFn(prefixCls, 'dot');
|
||||||
if (props.isIncluded) {
|
if (props.isIncluded) {
|
||||||
if (i <= this.getIndex()) {
|
if (i <= this.getIndex()) {
|
||||||
className = prefixClsFn(prefixCls, 'dot', 'dot-active');
|
className = prefixClsFn(prefixCls, 'dot', 'dot-active');
|
||||||
@@ -312,7 +222,7 @@ var Slider = React.createClass({
|
|||||||
}
|
}
|
||||||
|
|
||||||
elements[i] = (
|
elements[i] = (
|
||||||
<span className={className} style={style} ref={'step' + i}></span>
|
<span className={className} style={style} ref={'step' + i} key={'step' + i}></span>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -324,13 +234,13 @@ var Slider = React.createClass({
|
|||||||
},
|
},
|
||||||
|
|
||||||
renderMark(i) {
|
renderMark(i) {
|
||||||
var marks = this.props.marks;
|
const marks = this.props.marks;
|
||||||
var marksLen = marks.length;
|
const marksLen = marks.length;
|
||||||
var unit = 100 / (marksLen - 1);
|
const unit = 100 / (marksLen - 1);
|
||||||
var offset = unit * i;
|
const offset = unit * i;
|
||||||
|
|
||||||
var style = {
|
const style = {
|
||||||
width: unit / 2 + '%'
|
width: unit / 2 + '%',
|
||||||
};
|
};
|
||||||
|
|
||||||
if (i === marksLen - 1) {
|
if (i === marksLen - 1) {
|
||||||
@@ -339,8 +249,8 @@ 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.prefixCls;
|
const prefixCls = this.props.prefixCls;
|
||||||
var className = prefixClsFn(prefixCls, 'mark-text');
|
let className = prefixClsFn(prefixCls, 'mark-text');
|
||||||
|
|
||||||
if (this.props.isIncluded) {
|
if (this.props.isIncluded) {
|
||||||
if (i <= this.getIndex()) {
|
if (i <= this.getIndex()) {
|
||||||
@@ -351,20 +261,20 @@ var Slider = React.createClass({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<span className={className} style={style}>{this.props.marks[i]}</span>
|
<span className={className} style={style} key={i}>{this.props.marks[i]}</span>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderMarks() {
|
renderMarks() {
|
||||||
var marks = this.props.marks;
|
const marks = this.props.marks;
|
||||||
var marksLen = marks.length;
|
const marksLen = marks.length;
|
||||||
var elements = [];
|
const elements = [];
|
||||||
for (var i = 0; i < marksLen; i++) {
|
for (let i = 0; i < marksLen; i++) {
|
||||||
elements[i] = this.renderMark(i);
|
elements[i] = this.renderMark(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
var prefixCls = this.props.prefixCls;
|
const prefixCls = this.props.prefixCls;
|
||||||
var className = prefixClsFn(prefixCls, 'mark');
|
const className = prefixClsFn(prefixCls, 'mark');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={className}>
|
<div className={className}>
|
||||||
@@ -373,40 +283,56 @@ var Slider = React.createClass({
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderHandle(offset) {
|
renderHandler(offset) {
|
||||||
var handleStyle = {
|
const onStyle = {
|
||||||
left: offset
|
left: offset,
|
||||||
};
|
};
|
||||||
|
|
||||||
var prefixCls = this.props.prefixCls;
|
const prefixCls = this.props.prefixCls;
|
||||||
var className = prefixClsFn(prefixCls, 'handle');
|
const className = prefixClsFn(prefixCls, 'handle');
|
||||||
|
|
||||||
var handle = <div className={className}
|
let events = {};
|
||||||
ref = "handle"
|
|
||||||
style = {handleStyle}></div>;
|
let tooltipVisible;
|
||||||
|
|
||||||
|
if (this.state.dragging) {
|
||||||
|
tooltipVisible = true;
|
||||||
|
} else {
|
||||||
|
events = {
|
||||||
|
onClick: this.showTooltip.bind(this, true),
|
||||||
|
onMouseEnter: this.showTooltip.bind(this, true),
|
||||||
|
onMouseLeave: this.showTooltip.bind(this, false),
|
||||||
|
};
|
||||||
|
tooltipVisible = this.state.showTooltip;
|
||||||
|
}
|
||||||
|
|
||||||
|
const handle = (<div className={className}
|
||||||
|
{...events}
|
||||||
|
ref="handle"
|
||||||
|
style={onStyle}></div>);
|
||||||
|
|
||||||
if (this.props.marks.length > 0) {
|
if (this.props.marks.length > 0) {
|
||||||
return handle;
|
return handle;
|
||||||
} else {
|
|
||||||
return (
|
|
||||||
<Tooltip
|
|
||||||
placement="top"
|
|
||||||
overlay={<span>{this.state.value}</span>}
|
|
||||||
delay={0}
|
|
||||||
prefixCls={prefixClsFn(prefixCls, 'tooltip')}>
|
|
||||||
{handle}
|
|
||||||
</Tooltip>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
return (
|
||||||
|
<Tooltip
|
||||||
|
placement={{points: ['bc', 'tc']}}
|
||||||
|
visible={tooltipVisible}
|
||||||
|
overlay={<span>{this.state.value}</span>}
|
||||||
|
delay={0}
|
||||||
|
prefixCls={prefixClsFn(prefixCls, 'tooltip')}>
|
||||||
|
{handle}
|
||||||
|
</Tooltip>
|
||||||
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderTrack(offset) {
|
renderTrack(offset) {
|
||||||
var style = {
|
const style = {
|
||||||
width: offset
|
width: offset,
|
||||||
};
|
};
|
||||||
|
|
||||||
var prefixCls = this.props.prefixCls;
|
const prefixCls = this.props.prefixCls;
|
||||||
var trackClassName = prefixClsFn(prefixCls, 'track');
|
const trackClassName = prefixClsFn(prefixCls, 'track');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={trackClassName} ref="track" style={style}></div>
|
<div className={trackClassName} ref="track" style={style}></div>
|
||||||
@@ -414,37 +340,142 @@ var Slider = React.createClass({
|
|||||||
},
|
},
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
var state = this.state;
|
const state = this.state;
|
||||||
var props = this.props;
|
const props = this.props;
|
||||||
|
const value = state.value;
|
||||||
var value = state.value;
|
const offset = this._calcOffset(value);
|
||||||
var offset = this._calcOffset(value);
|
const track = this.props.isIncluded ? this.renderTrack(offset) : null;
|
||||||
|
const ons = this.renderHandler(offset);
|
||||||
var track = this.props.isIncluded ? this.renderTrack(offset) : null;
|
const steps = (props.step > 1 || props.marks.length > 0) ? this.renderSteps() : null;
|
||||||
var handles = this.renderHandle(offset);
|
const sliderMarks = (props.marks.length > 0) ? this.renderMarks() : null;
|
||||||
var steps = (props.step > 1 || props.marks.length > 0) ? this.renderSteps() : null;
|
const prefixCls = props.prefixCls;
|
||||||
var sliderMarks = (props.marks.length > 0) ? this.renderMarks() : null;
|
const disabled = props.disabled;
|
||||||
|
const sliderClassName = {
|
||||||
var prefixCls = props.prefixCls;
|
|
||||||
var disabled = props.disabled;
|
|
||||||
var sliderClassName = {
|
|
||||||
[prefixCls]: 1,
|
[prefixCls]: 1,
|
||||||
[props.className]: !!props.className,
|
[props.className]: !!props.className,
|
||||||
[`${prefixCls}-disabled`]: disabled
|
[`${prefixCls}-disabled`]: disabled,
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={rcUtil.classSet(sliderClassName)} ref="slider"
|
<div className={rcUtil.classSet(sliderClassName)} ref="slider"
|
||||||
onTouchStart={disabled ? noop : this.handleTouchStart}
|
onTouchStart={disabled ? noop : this.onTouchStart}
|
||||||
onMouseDown={disabled ? noop : this.handleSliderMouseDown}>
|
onMouseDown={disabled ? noop : this.onSliderMouseDown}>
|
||||||
{track}
|
{track}
|
||||||
{handles}
|
{ons}
|
||||||
{steps}
|
{steps}
|
||||||
{sliderMarks}
|
{sliderMarks}
|
||||||
{this.props.children}
|
{this.props.children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
|
|
||||||
|
showTooltip(show) {
|
||||||
|
this.setState({
|
||||||
|
showTooltip: show,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
_trimAlignValue(v, propsArg) {
|
||||||
|
let val = v;
|
||||||
|
const props = propsArg || this.props;
|
||||||
|
const step = props.marks.length > 0 ? (props.max - props.min) / (props.marks.length - 1) : props.step;
|
||||||
|
|
||||||
|
if (val <= props.min) {
|
||||||
|
val = props.min;
|
||||||
|
}
|
||||||
|
if (val >= props.max) {
|
||||||
|
val = props.max;
|
||||||
|
}
|
||||||
|
|
||||||
|
const valModStep = (val - props.min) % step;
|
||||||
|
let alignValue = val - valModStep;
|
||||||
|
|
||||||
|
if (Math.abs(valModStep) * 2 >= step) {
|
||||||
|
alignValue += (valModStep > 0) ? step : (-step);
|
||||||
|
}
|
||||||
|
|
||||||
|
return parseFloat(alignValue.toFixed(5));
|
||||||
|
},
|
||||||
|
|
||||||
|
_calcOffset(value) {
|
||||||
|
const ratio = (value - this.props.min) / (this.props.max - this.props.min);
|
||||||
|
return ratio * 100 + '%';
|
||||||
|
},
|
||||||
|
|
||||||
|
_calcValue(offset) {
|
||||||
|
const ratio = offset / this.getSliderLength();
|
||||||
|
return ratio * (this.props.max - this.props.min) + this.props.min;
|
||||||
|
},
|
||||||
|
|
||||||
|
_calValueByPos(position) {
|
||||||
|
const pixelOffset = position - this.getSliderStart();
|
||||||
|
// pixelOffset -= (this.state.onSize / 2);
|
||||||
|
const nextValue = this._trimAlignValue(this._calcValue(pixelOffset));
|
||||||
|
this.setState({
|
||||||
|
value: nextValue,
|
||||||
|
});
|
||||||
|
return nextValue;
|
||||||
|
},
|
||||||
|
|
||||||
|
_getTouchPosition(e) {
|
||||||
|
const touch = e.touches[0];
|
||||||
|
return touch.pageX;
|
||||||
|
},
|
||||||
|
|
||||||
|
_triggerEvents(event, v) {
|
||||||
|
const props = this.props;
|
||||||
|
const hasMarks = props.marks && props.marks.length > 0;
|
||||||
|
if (props[event]) {
|
||||||
|
let data;
|
||||||
|
if (hasMarks) {
|
||||||
|
data = this.getIndex(v);
|
||||||
|
} else if (v === undefined) {
|
||||||
|
data = this.state.value;
|
||||||
|
} else {
|
||||||
|
data = v;
|
||||||
|
}
|
||||||
|
props[event](data);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_addDocumentEvents(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);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_removeEventons(type) {
|
||||||
|
if (type === 'touch') {
|
||||||
|
this.onTouchMoveListener.remove();
|
||||||
|
this.onTouchUpListener.remove();
|
||||||
|
} else if (type === 'mouse') {
|
||||||
|
this.onMouseMoveListener.remove();
|
||||||
|
this.onMouseUpListener.remove();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_start(position) {
|
||||||
|
this._triggerEvents('onBeforeChange');
|
||||||
|
this.startValue = this.state.value;
|
||||||
|
this.startPosition = position;
|
||||||
|
this.setState({
|
||||||
|
dragging: true,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
_end(type) {
|
||||||
|
this._removeEventons(type);
|
||||||
|
this._triggerEvents('onAfterChange');
|
||||||
|
this.setState({
|
||||||
|
dragging: false,
|
||||||
|
showTooltip: false,
|
||||||
|
});
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = Slider;
|
export default Slider;
|
||||||
|
|||||||
@@ -1,3 +1,2 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
module.exports = require('./Slider');
|
module.exports = require('./Slider');
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,3 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
var expect = require('expect.js');
|
var expect = require('expect.js');
|
||||||
var Slider = require('../index.js');
|
var Slider = require('../index.js');
|
||||||
@@ -6,6 +5,7 @@ var React = require('react');
|
|||||||
var TestUtils = React.addons.TestUtils;
|
var TestUtils = React.addons.TestUtils;
|
||||||
var Simulate = TestUtils.Simulate;
|
var Simulate = TestUtils.Simulate;
|
||||||
var $ = require('jquery');
|
var $ = require('jquery');
|
||||||
|
require('../assets/index.less');
|
||||||
|
|
||||||
describe('rc-slider', function () {
|
describe('rc-slider', function () {
|
||||||
this.timeout(5000);
|
this.timeout(5000);
|
||||||
|
|||||||
Reference in New Issue
Block a user