mirror of
https://github.com/wassname/slider.git
synced 2026-09-10 12:38:09 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
978d877323 | ||
|
|
a1ae3a8374 | ||
|
|
15f568283c | ||
|
|
e85d325542 | ||
|
|
395fa6c201 | ||
|
|
0329df0c5a | ||
|
|
7fa8dfdd03 | ||
|
|
555f5a0660 | ||
|
|
c232d62c86 | ||
|
|
1262a78638 | ||
|
|
e7d98e0ee4 | ||
|
|
5f9a65137a | ||
|
|
64296d4957 | ||
|
|
ee0dd09a4f | ||
|
|
a5de9b0dbc | ||
|
|
37d32ae71c | ||
|
|
f339db494b | ||
|
|
c097b8f761 | ||
|
|
10244cf01b | ||
|
|
e8a86b91e2 | ||
|
|
05dafc0f10 | ||
|
|
5dbde43da8 | ||
|
|
0a23a67f31 | ||
|
|
6f39212df5 | ||
|
|
a7c2319949 | ||
|
|
ee71955e14 | ||
|
|
8448e80212 | ||
|
|
99e61001fc | ||
|
|
1546546040 | ||
|
|
d4e2aad482 | ||
|
|
7680347dfe | ||
|
|
e2530ad2bf | ||
|
|
0566e7f098 | ||
|
|
1e430ba694 | ||
|
|
f29894e690 | ||
|
|
fd6c393f66 | ||
|
|
e3ba1eee5b | ||
|
|
8dc66dd2a4 | ||
|
|
b9501ef414 | ||
|
|
a329b00347 | ||
|
|
ccf3803d20 | ||
|
|
b585f2fa1a | ||
|
|
6f0e618a30 | ||
|
|
ae4be7392d | ||
|
|
d5891c79df | ||
|
|
87442eac35 | ||
|
|
5e559a1555 | ||
|
|
315849a0f3 | ||
|
|
5f91e9a648 |
@@ -88,11 +88,17 @@ ReactDOM.render(<Rcslider />, container);
|
|||||||
<td>100</td>
|
<td>100</td>
|
||||||
<td>The maximum value of the slider</td>
|
<td>The maximum value of the slider</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>marks</td>
|
||||||
|
<td>object {number: string}</td>
|
||||||
|
<td>{}</td>
|
||||||
|
<td>Mark on the slider. The key determines the position, and the value determines what will show.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>step</td>
|
<td>step</td>
|
||||||
<td>number</td>
|
<td>number or `null`</td>
|
||||||
<td>1</td>
|
<td>1</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>
|
<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. When `marks` is not an empty object, `step` can be set to `null`, to make marks as steps.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>range</td>
|
<td>range</td>
|
||||||
@@ -100,6 +106,12 @@ ReactDOM.render(<Rcslider />, container);
|
|||||||
<td>false</td>
|
<td>false</td>
|
||||||
<td>Determines the type of slider. If range is `true`, two handles will be rendered in order to select a range.</td>
|
<td>Determines the type of slider. If range is `true`, two handles will be rendered in order to select a range.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>allowCross</td>
|
||||||
|
<td>boolean</td>
|
||||||
|
<td>true</td>
|
||||||
|
<td>When `range` is `true`, `allowCross` could be set as `true` to allow those two handles cross.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>defaultValue</td>
|
<td>defaultValue</td>
|
||||||
<td>number or [number, number]</td>
|
<td>number or [number, number]</td>
|
||||||
@@ -112,35 +124,17 @@ ReactDOM.render(<Rcslider />, container);
|
|||||||
<td></td>
|
<td></td>
|
||||||
<td>Set current positions of handles. If range is `false`, the type of `defaultValue` should be `number`. Otherwise, `[number, number]`</td>
|
<td>Set current positions of handles. If range is `false`, the type of `defaultValue` should be `number`. Otherwise, `[number, number]`</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<td>marks</td>
|
|
||||||
<td>array</td>
|
|
||||||
<td>[]</td>
|
|
||||||
<td>Mark every step for the slider, it will ignore the `step` parameter if it has been defined. Does not work with `range`</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>included</td>
|
<td>included</td>
|
||||||
<td>boolean</td>
|
<td>boolean</td>
|
||||||
<td>true</td>
|
<td>true</td>
|
||||||
<td>If the value is `true`, it means a continuous value interval, otherwise, it is a independent value.</td>
|
<td>If the value is `true`, it means a continuous value interval, otherwise, it is a independent value.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<td>defaultIndex</td>
|
|
||||||
<td>number</td>
|
|
||||||
<td>0</td>
|
|
||||||
<td>For step or marks slider, determines the initial position of the handle. Does not work with `range`</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>index</td>
|
|
||||||
<td>number</td>
|
|
||||||
<td></td>
|
|
||||||
<td>For step or marks slider, determines current position of the handle. Does not work with `range`</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>disabled</td>
|
<td>disabled</td>
|
||||||
<td>boolean</td>
|
<td>boolean</td>
|
||||||
<td>false</td>
|
<td>false</td>
|
||||||
<td>If true the handles can't be moved.</td>
|
<td>If `true`, handles can't be moved.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>tipTransitionName</td>
|
<td>tipTransitionName</td>
|
||||||
@@ -150,7 +144,7 @@ ReactDOM.render(<Rcslider />, container);
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>tipFormatter</td>
|
<td>tipFormatter</td>
|
||||||
<td>func</td>
|
<td>function</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td>Format the value of the tooltip if it shows.</td>
|
<td>Format the value of the tooltip if it shows.</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -158,7 +152,19 @@ ReactDOM.render(<Rcslider />, container);
|
|||||||
<td>dots</td>
|
<td>dots</td>
|
||||||
<td>bool</td>
|
<td>bool</td>
|
||||||
<td>false</td>
|
<td>false</td>
|
||||||
<td>For linear slider, when the `step` value is greater than 1, you can set the `dots` to `true` if you want to render the slider bar with dots.</td>
|
<td>When the `step` value is greater than 1, you can set the `dots` to `true` if you want to render the slider with dots.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>onChange</td>
|
||||||
|
<td>function</td>
|
||||||
|
<td>NOOP</td>
|
||||||
|
<td>`onChange` will be triggered while the value of Slider changing.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>onAfterChange</td>
|
||||||
|
<td>function</td>
|
||||||
|
<td>NOOP</td>
|
||||||
|
<td>`onAfterChange` will be triggered when `ontouchend` or `onmouseup` is triggered.</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
+48
-49
@@ -131,55 +131,6 @@
|
|||||||
cursor: not-allowed!important;
|
cursor: not-allowed!important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// slider tooltip style
|
|
||||||
&-tooltip {
|
|
||||||
position: absolute;
|
|
||||||
left: -9999px;
|
|
||||||
top: -9999px;
|
|
||||||
z-index: 4;
|
|
||||||
visibility: visible;
|
|
||||||
|
|
||||||
.borderBox();
|
|
||||||
|
|
||||||
&-hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-placement-top {
|
|
||||||
padding: @tooltip-arrow-width 0 @tooltip-distance 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-inner {
|
|
||||||
padding: 6px 2px;
|
|
||||||
min-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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.motion-common() {
|
.motion-common() {
|
||||||
@@ -241,3 +192,51 @@
|
|||||||
transform: scale(0, 0);
|
transform: scale(0, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.rc-tooltip {
|
||||||
|
position: absolute;
|
||||||
|
left: -9999px;
|
||||||
|
top: -9999px;
|
||||||
|
z-index: 4;
|
||||||
|
visibility: visible;
|
||||||
|
|
||||||
|
.borderBox();
|
||||||
|
|
||||||
|
&-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-placement-top {
|
||||||
|
padding: @tooltip-arrow-width 0 @tooltip-distance 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-inner {
|
||||||
|
padding: 6px 2px;
|
||||||
|
min-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;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
placeholder
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
require('rc-slider/assets/index.less');
|
||||||
|
|
||||||
|
const React = require('react');
|
||||||
|
const ReactDOM = require('react-dom');
|
||||||
|
const Slider = require('rc-slider');
|
||||||
|
|
||||||
|
const style = {width: 400, margin: 50};
|
||||||
|
const marks = {
|
||||||
|
'-10': '-10°C',
|
||||||
|
0: '0°C',
|
||||||
|
26: '26°C',
|
||||||
|
37: '37°C',
|
||||||
|
100: '100°C',
|
||||||
|
};
|
||||||
|
|
||||||
|
function log(value) {
|
||||||
|
console.log(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
ReactDOM.render(
|
||||||
|
<div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Slider with marks, `step=null`</p>
|
||||||
|
<Slider min={-10} marks={marks} step={null} onChange={log} defaultValue={20} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Slider with marks and steps</p>
|
||||||
|
<Slider min={-10} marks={marks} step={10} onChange={log} defaultValue={20} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style={style}>
|
||||||
|
<p>Slider with marks, `included=false`</p>
|
||||||
|
<Slider min={-10} marks={marks} included={false} defaultValue={20} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Slider with marks and steps, `included=false`</p>
|
||||||
|
<Slider min={-10} marks={marks} step={10} included={false} defaultValue={20} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style={style}>
|
||||||
|
<p>Range with marks</p>
|
||||||
|
<Slider min={-10} range marks={marks} onChange={log} defaultValue={[20, 40]} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Range with marks and steps</p>
|
||||||
|
<Slider min={-10} range marks={marks} step={10} onChange={log} defaultValue={[20, 40]} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
, document.getElementById('__react-content'));
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
placeholder
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
/* eslint react/no-multi-comp: 0 */
|
||||||
|
require('rc-slider/assets/index.less');
|
||||||
|
|
||||||
|
const React = require('react');
|
||||||
|
const ReactDOM = require('react-dom');
|
||||||
|
const Slider = require('rc-slider');
|
||||||
|
|
||||||
|
const style = {width: 400, margin: 50};
|
||||||
|
|
||||||
|
function log(value) {
|
||||||
|
console.log(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
const CustomizedRange = React.createClass({
|
||||||
|
getInitialState: function() {
|
||||||
|
return {
|
||||||
|
value: [20, 40],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onSliderChange: function(value) {
|
||||||
|
log(value);
|
||||||
|
this.setState({
|
||||||
|
value: value,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
render: function() {
|
||||||
|
return <Slider range value={this.state.value} onChange={this.onSliderChange} />;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const DynamicBounds = React.createClass({
|
||||||
|
getInitialState() {
|
||||||
|
return {
|
||||||
|
min: 0,
|
||||||
|
max: 100,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onSliderChange: function(value) {
|
||||||
|
log(value);
|
||||||
|
},
|
||||||
|
onMinChange: function(e) {
|
||||||
|
this.setState({
|
||||||
|
min: +e.target.value || 0,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
onMaxChange: function(e) {
|
||||||
|
this.setState({
|
||||||
|
max: +e.target.value || 100,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
render: function() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<label>Min: </label>
|
||||||
|
<input type="number" value={this.state.min} onChange={this.onMinChange} />
|
||||||
|
<br />
|
||||||
|
<label>Max: </label>
|
||||||
|
<input type="number" value={this.state.max} onChange={this.onMaxChange} />
|
||||||
|
<br /><br />
|
||||||
|
<Slider range defaultValue={[20, 50]} min={this.state.min} max={this.state.max} onChange={this.onSliderChange} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
ReactDOM.render(
|
||||||
|
<div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Basic Range,`allowCross=false`</p>
|
||||||
|
<Slider range allowCross={false} defaultValue={[0, 20]} onChange={log} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Basic Range,`step=20` </p>
|
||||||
|
<Slider range step={20} defaultValue={[20, 40]} onBeforeChange={log} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Basic Range,`step=20, dots` </p>
|
||||||
|
<Slider range dots step={20} defaultValue={[20, 40]} onAfterChange={log} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Controlled Range</p>
|
||||||
|
<Slider range value={[20, 40]} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Customized Range</p>
|
||||||
|
<CustomizedRange />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Range with dynamic `max` `min`</p>
|
||||||
|
<DynamicBounds />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
, document.getElementById('__react-content'));
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
require('rc-slider/assets/index.less');
|
|
||||||
|
|
||||||
var React = require('react');
|
|
||||||
var ReactDOM = require('react-dom');
|
|
||||||
var Slider = require('rc-slider');
|
|
||||||
var style = {width:400,margin:50};
|
|
||||||
|
|
||||||
var log = console.log.bind(console);
|
|
||||||
|
|
||||||
|
|
||||||
var marks = ["状态1","状态2","状态3","状态4"];
|
|
||||||
|
|
||||||
function percentFormatter(v) {
|
|
||||||
return v + " %";
|
|
||||||
}
|
|
||||||
|
|
||||||
ReactDOM.render(
|
|
||||||
<div>
|
|
||||||
<div style={style}>
|
|
||||||
<p>基础滑块</p>
|
|
||||||
<Slider onChange={log} tipTransitionName='rc-slider-tooltip-zoom-down' />
|
|
||||||
</div>
|
|
||||||
<div style={style}>
|
|
||||||
<p>基础滑块,step=20</p>
|
|
||||||
<Slider step={20} />
|
|
||||||
</div>
|
|
||||||
<div style={style}>
|
|
||||||
<p>基础滑块,step=20 带圆点</p>
|
|
||||||
<Slider dots step={20} />
|
|
||||||
</div>
|
|
||||||
<div style={style}>
|
|
||||||
<p>双滑块</p>
|
|
||||||
<Slider range min={10} max={90} defaultValue={[0, 30]} onChange={log} />
|
|
||||||
</div>
|
|
||||||
<div style={style}>
|
|
||||||
<p>双滑块,step=20 </p>
|
|
||||||
<Slider range dots step={20} defaultValue={[0, 30]} onAfterChange={log} included={false} />
|
|
||||||
</div>
|
|
||||||
<div style={style}>
|
|
||||||
<p>分段式滑块(包含关系)</p>
|
|
||||||
<Slider marks={marks} defaultIndex={1} />
|
|
||||||
</div>
|
|
||||||
<div style={style}>
|
|
||||||
<p>分段式滑块 (双)</p>
|
|
||||||
<Slider range marks={marks} onChange={log} defaultIndex={[1,2]} />
|
|
||||||
</div>
|
|
||||||
<div style={style}>
|
|
||||||
<p>分段式滑块(并列关系)</p>
|
|
||||||
<Slider marks={marks} included={false} defaultIndex={1} />
|
|
||||||
</div>
|
|
||||||
<div style={style}>
|
|
||||||
<p>基础滑块</p>
|
|
||||||
<Slider onChange={log} tipFormatter={percentFormatter} tipTransitionName='rc-slider-tooltip-zoom-down' />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
, document.getElementById('__react-content'));
|
|
||||||
@@ -0,0 +1,102 @@
|
|||||||
|
/* eslint react/no-multi-comp: 0 */
|
||||||
|
require('rc-slider/assets/index.less');
|
||||||
|
|
||||||
|
const React = require('react');
|
||||||
|
const ReactDOM = require('react-dom');
|
||||||
|
const Slider = require('rc-slider');
|
||||||
|
|
||||||
|
const style = {width: 400, margin: 50};
|
||||||
|
|
||||||
|
function log(value) {
|
||||||
|
console.log(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function percentFormatter(v) {
|
||||||
|
return v + ' %';
|
||||||
|
}
|
||||||
|
|
||||||
|
const CustomizedSlider = React.createClass({
|
||||||
|
getInitialState: function() {
|
||||||
|
return {
|
||||||
|
value: 50,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onSliderChange: function(value) {
|
||||||
|
log(value);
|
||||||
|
this.setState({
|
||||||
|
value: value,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
render: function() {
|
||||||
|
return <Slider value={this.state.value} onChange={this.onSliderChange} />;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const DynamicBounds = React.createClass({
|
||||||
|
getInitialState: function() {
|
||||||
|
return {
|
||||||
|
min: 0,
|
||||||
|
max: 100,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onSliderChange: function(value) {
|
||||||
|
log(value);
|
||||||
|
},
|
||||||
|
onMinChange: function(e) {
|
||||||
|
this.setState({
|
||||||
|
min: +e.target.value || 0,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
onMaxChange: function(e) {
|
||||||
|
this.setState({
|
||||||
|
max: +e.target.value || 100,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
render: function() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<label>Min: </label>
|
||||||
|
<input type="number" value={this.state.min} onChange={this.onMinChange} />
|
||||||
|
<br />
|
||||||
|
<label>Max: </label>
|
||||||
|
<input type="number" value={this.state.max} onChange={this.onMaxChange} />
|
||||||
|
<br /><br />
|
||||||
|
<Slider defaultValue={50} min={this.state.min} max={this.state.max} onChange={this.onSliderChange} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
ReactDOM.render(
|
||||||
|
<div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Basic Slider</p>
|
||||||
|
<Slider tipTransitionName="rc-slider-tooltip-zoom-down" onChange={log} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Basic Slider,`step=20`</p>
|
||||||
|
<Slider step={20} defaultValue={50} onBeforeChange={log} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Basic Slider,`step=20, dots`</p>
|
||||||
|
<Slider dots step={20} defaultValue={100} onAfterChange={log} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Basic Slider with `tipFormatter`</p>
|
||||||
|
<Slider tipFormatter={percentFormatter} tipTransitionName="rc-slider-tooltip-zoom-down" onChange={log} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Controlled Slider</p>
|
||||||
|
<Slider value={50} />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Customized Slider</p>
|
||||||
|
<CustomizedSlider />
|
||||||
|
</div>
|
||||||
|
<div style={style}>
|
||||||
|
<p>Slider with dynamic `min` `max`</p>
|
||||||
|
<DynamicBounds />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
, document.getElementById('__react-content'));
|
||||||
+3
-2
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "rc-slider",
|
"name": "rc-slider",
|
||||||
"version": "2.3.2",
|
"version": "3.2.0",
|
||||||
"description": "slider ui component for react",
|
"description": "slider ui component for react",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
@@ -39,7 +39,6 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"expect.js": "0.3.x",
|
"expect.js": "0.3.x",
|
||||||
"jquery": "^1.11.2",
|
|
||||||
"pre-commit": "1.x",
|
"pre-commit": "1.x",
|
||||||
"rc-server": "3.x",
|
"rc-server": "3.x",
|
||||||
"rc-tools": "4.x",
|
"rc-tools": "4.x",
|
||||||
@@ -51,6 +50,8 @@
|
|||||||
"lint"
|
"lint"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"classnames": "^2.2.1",
|
||||||
|
"object-assign": "^4.0.1",
|
||||||
"rc-tooltip": "3.x",
|
"rc-tooltip": "3.x",
|
||||||
"rc-util": "3.x"
|
"rc-util": "3.x"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,33 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
|
||||||
|
function calcPoints(marks, dots, step, min, max) {
|
||||||
|
const points = Object.keys(marks).map(parseFloat);
|
||||||
|
if (dots) {
|
||||||
|
for (let i = min; i <= max; i = i + step) {
|
||||||
|
points.push(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return points;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Dots = ({prefixCls, marks, dots, step, included, lowerBound, upperBound, max, min}) => {
|
||||||
|
const range = max - min;
|
||||||
|
const elements = calcPoints(marks, dots, step, min, max).map((point) => {
|
||||||
|
const offset = (point - min) / range * 100 + '%';
|
||||||
|
const style = { left: offset };
|
||||||
|
|
||||||
|
const isActived = (!included && point === upperBound) ||
|
||||||
|
(included && point <= upperBound && point >= lowerBound);
|
||||||
|
const pointClassName = classNames({
|
||||||
|
[prefixCls + '-dot']: true,
|
||||||
|
[prefixCls + '-dot-active']: isActived,
|
||||||
|
});
|
||||||
|
|
||||||
|
return <span className={pointClassName} style={style} key={point} />;
|
||||||
|
});
|
||||||
|
|
||||||
|
return <div className={prefixCls + '-step'}>{elements}</div>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Dots;
|
||||||
+1
-1
@@ -39,7 +39,7 @@ export default class Handle extends React.Component {
|
|||||||
|
|
||||||
const isTooltipVisible = dragging || this.state.isTooltipVisible;
|
const isTooltipVisible = dragging || this.state.isTooltipVisible;
|
||||||
return (<Tooltip
|
return (<Tooltip
|
||||||
prefixCls={className.replace('handle', 'tooltip')}
|
prefixCls={className.replace('slider-handle', 'tooltip')}
|
||||||
placement="top"
|
placement="top"
|
||||||
visible={isTooltipVisible}
|
visible={isTooltipVisible}
|
||||||
overlay={<span>{tipFormatter ? tipFormatter(value) : value}</span>}
|
overlay={<span>{tipFormatter ? tipFormatter(value) : value}</span>}
|
||||||
|
|||||||
+18
-23
@@ -1,35 +1,30 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import rcUtil from 'rc-util';
|
import classNames from 'classnames';
|
||||||
|
|
||||||
const Marks = ({className, marks, index, included}) => {
|
const Marks = ({className, marks, included, upperBound, lowerBound, max, min}) => {
|
||||||
const marksLen = marks.length;
|
const marksKeys = Object.keys(marks);
|
||||||
const unit = 100 / (marksLen - 1);
|
const marksCount = marksKeys.length;
|
||||||
const markWidth = unit / 2 + '%';
|
const unit = 100 / (marksCount - 1);
|
||||||
|
const markWidth = unit * 0.9;
|
||||||
|
|
||||||
const elements = [];
|
const range = max - min;
|
||||||
for (let i = 0; i < marksLen; i++) {
|
const elements = marksKeys.map(parseFloat).map((point) => {
|
||||||
const isActived = (included && i <= index) || (!included && i === index);
|
const isActived = (!included && point === upperBound) ||
|
||||||
const markClassName = rcUtil.classSet({
|
(included && point <= upperBound && point >= lowerBound);
|
||||||
|
const markClassName = classNames({
|
||||||
[className + '-text']: true,
|
[className + '-text']: true,
|
||||||
[className + '-text-active']: isActived,
|
[className + '-text-active']: isActived,
|
||||||
});
|
});
|
||||||
|
|
||||||
const style = { width: markWidth };
|
const style = { width: markWidth + '%' };
|
||||||
const offset = unit * i;
|
style.left = (point - min) / range * 100 - markWidth / 2 + '%';
|
||||||
if (i === marksLen - 1) {
|
|
||||||
style.right = -unit / 4 + '%';
|
|
||||||
} else {
|
|
||||||
style.left = (i > 0 ? offset - unit / 4 : -unit / 4) + '%';
|
|
||||||
}
|
|
||||||
|
|
||||||
elements.push(<span className={markClassName} style={style} key={i}>
|
return (<span className={markClassName} style={style} key={point}>
|
||||||
{marks[i]}
|
{marks[point]}
|
||||||
</span>);
|
</span>);
|
||||||
}
|
});
|
||||||
|
|
||||||
return (<div className={className}>
|
return <div className={className}>{elements}</div>;
|
||||||
{elements}
|
|
||||||
</div>);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Marks;
|
export default Marks;
|
||||||
|
|||||||
+150
-171
@@ -1,8 +1,10 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import {Dom as DomUtils, classSet} from 'rc-util';
|
import {Dom as DomUtils} from 'rc-util';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
import objectAssign from 'object-assign';
|
||||||
import Track from './Track';
|
import Track from './Track';
|
||||||
import Handle from './Handle';
|
import Handle from './Handle';
|
||||||
import Steps from './Steps';
|
import Dots from './Dots';
|
||||||
import Marks from './Marks';
|
import Marks from './Marks';
|
||||||
|
|
||||||
function noop() {
|
function noop() {
|
||||||
@@ -25,40 +27,30 @@ function pauseEvent(e) {
|
|||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
|
|
||||||
// This is an utility method, tries to get property, then defaultPropery with
|
|
||||||
// special check using 'in', because propery can be '0'
|
|
||||||
function propOrDefault(props, name, fallback) {
|
|
||||||
const defaultName = 'default' + name.charAt(0).toUpperCase() + name.substring(1);
|
|
||||||
const defaultValue = (defaultName in props ? props[defaultName] : fallback);
|
|
||||||
return (name in props ? props[name] : defaultValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Slider extends React.Component {
|
class Slider extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
|
const {range, min, max} = props;
|
||||||
|
const initialValue = range ? [min, min] : min;
|
||||||
|
const defaultValue = ('defaultValue' in props ? props.defaultValue : initialValue);
|
||||||
|
const value = ('value' in props ? props.value : defaultValue);
|
||||||
|
|
||||||
let upperBound;
|
let upperBound;
|
||||||
let lowerBound;
|
let lowerBound;
|
||||||
const initialValue = props.range ? [0, 0] : 0;
|
if (props.range) {
|
||||||
if (props.marks.length > 0) {
|
lowerBound = this.trimAlignValue(value[0]);
|
||||||
const index = propOrDefault(props, 'index', initialValue);
|
upperBound = this.trimAlignValue(value[1]);
|
||||||
({lowerBound, upperBound} = this.getBoundsFromIndex(index, props));
|
|
||||||
} else {
|
} else {
|
||||||
const value = propOrDefault(props, 'value', initialValue);
|
upperBound = this.trimAlignValue(value);
|
||||||
if (props.range) {
|
|
||||||
lowerBound = this.trimAlignValue(value[0]);
|
|
||||||
upperBound = this.trimAlignValue(value[1]);
|
|
||||||
} else {
|
|
||||||
upperBound = this.trimAlignValue(value);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let recent;
|
let recent;
|
||||||
if (props.range && upperBound === lowerBound) {
|
if (props.range && upperBound === lowerBound) {
|
||||||
if (lowerBound === props.max) {
|
if (lowerBound === max) {
|
||||||
recent = 'lowerBound';
|
recent = 'lowerBound';
|
||||||
}
|
}
|
||||||
if (upperBound === props.min) {
|
if (upperBound === min) {
|
||||||
recent = 'upperBound';
|
recent = 'upperBound';
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -70,29 +62,57 @@ class Slider extends React.Component {
|
|||||||
recent: recent,
|
recent: recent,
|
||||||
upperBound: upperBound,
|
upperBound: upperBound,
|
||||||
// If Slider is not range, set `lowerBound` equal to `min`.
|
// If Slider is not range, set `lowerBound` equal to `min`.
|
||||||
lowerBound: (lowerBound || props.min),
|
lowerBound: (lowerBound || min),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
componentWillReceiveProps(nextProps) {
|
||||||
|
if (!('value' in nextProps || 'min' in nextProps || 'max' in nextProps)) return;
|
||||||
|
|
||||||
|
const {lowerBound, upperBound} = this.state;
|
||||||
if (nextProps.range) {
|
if (nextProps.range) {
|
||||||
const value = nextProps.value;
|
const value = nextProps.value || [lowerBound, upperBound];
|
||||||
if (value) {
|
const nextUpperBound = this.trimAlignValue(value[1], nextProps);
|
||||||
this.setState({
|
const nextLowerBound = this.trimAlignValue(value[0], nextProps);
|
||||||
upperBound: value[1],
|
if (nextLowerBound === lowerBound && nextUpperBound === upperBound) return;
|
||||||
lowerBound: value[0],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} else if ('value' in nextProps) {
|
|
||||||
this.setState({
|
this.setState({
|
||||||
upperBound: nextProps.value,
|
upperBound: nextUpperBound,
|
||||||
|
lowerBound: nextLowerBound,
|
||||||
});
|
});
|
||||||
} else if ('index' in nextProps) {
|
if (this.isValueOutOfBounds(upperBound, nextProps) ||
|
||||||
const index = ('index' in nextProps ? nextProps.index : nextProps.defaultIndex);
|
this.isValueOutOfBounds(lowerBound, nextProps)) {
|
||||||
this.setState(this.getBoundsFromIndex(index, nextProps));
|
this.props.onChange([nextLowerBound, nextUpperBound]);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
const value = 'value' in nextProps ? nextProps.value : upperBound;
|
||||||
|
const nextValue = this.trimAlignValue(value, nextProps);
|
||||||
|
if (nextValue === upperBound && lowerBound === nextProps.min) return;
|
||||||
|
|
||||||
|
this.setState({
|
||||||
|
upperBound: nextValue,
|
||||||
|
lowerBound: nextProps.min,
|
||||||
|
});
|
||||||
|
if (this.isValueOutOfBounds(upperBound, nextProps)) {
|
||||||
|
this.props.onChange(nextValue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onChange(state) {
|
||||||
|
const props = this.props;
|
||||||
|
const isNotControlled = !('value' in props);
|
||||||
|
if (isNotControlled) {
|
||||||
|
this.setState(state);
|
||||||
|
} else if (state.handle) {
|
||||||
|
this.setState({handle: state.handle});
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = objectAssign({}, this.state, state);
|
||||||
|
const changedValue = props.range ? [data.lowerBound, data.upperBound] : data.upperBound;
|
||||||
|
props.onChange(changedValue);
|
||||||
|
}
|
||||||
|
|
||||||
onMouseMove(e) {
|
onMouseMove(e) {
|
||||||
const position = getMousePosition(e);
|
const position = getMousePosition(e);
|
||||||
this.onMove(e, position);
|
this.onMove(e, position);
|
||||||
@@ -120,11 +140,26 @@ class Slider extends React.Component {
|
|||||||
const oldValue = state[state.handle];
|
const oldValue = state[state.handle];
|
||||||
if (value === oldValue) return;
|
if (value === oldValue) return;
|
||||||
|
|
||||||
if (!('value' in props) && !('index' in props)) {
|
if (props.allowCross && value < state.lowerBound && state.handle === 'upperBound') {
|
||||||
this.setState({[state.handle]: value}, () => {
|
this.onChange({
|
||||||
this.triggerEvents('onChange', this.getValue());
|
handle: 'lowerBound',
|
||||||
|
lowerBound: value,
|
||||||
|
upperBound: this.state.lowerBound,
|
||||||
});
|
});
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
if (props.allowCross && value > state.upperBound && state.handle === 'lowerBound') {
|
||||||
|
this.onChange({
|
||||||
|
handle: 'upperBound',
|
||||||
|
upperBound: value,
|
||||||
|
lowerBound: this.state.upperBound,
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.onChange({
|
||||||
|
[state.handle]: value,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
onTouchStart(e) {
|
onTouchStart(e) {
|
||||||
@@ -136,7 +171,7 @@ class Slider extends React.Component {
|
|||||||
pauseEvent(e);
|
pauseEvent(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
onSliderMouseDown(e) {
|
onMouseDown(e) {
|
||||||
const position = getMousePosition(e);
|
const position = getMousePosition(e);
|
||||||
this.onStart(position);
|
this.onStart(position);
|
||||||
this.addDocumentEvents('mouse');
|
this.addDocumentEvents('mouse');
|
||||||
@@ -144,7 +179,8 @@ class Slider extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onStart(position) {
|
onStart(position) {
|
||||||
this.triggerEvents('onBeforeChange');
|
const props = this.props;
|
||||||
|
props.onBeforeChange(this.getValue());
|
||||||
|
|
||||||
const value = this.calcValueByPos(position);
|
const value = this.calcValueByPos(position);
|
||||||
this.startValue = value;
|
this.startValue = value;
|
||||||
@@ -173,9 +209,13 @@ class Slider extends React.Component {
|
|||||||
this.setState({
|
this.setState({
|
||||||
handle: valueNeedChanging,
|
handle: valueNeedChanging,
|
||||||
recent: valueNeedChanging,
|
recent: valueNeedChanging,
|
||||||
|
});
|
||||||
|
|
||||||
|
const oldValue = state[valueNeedChanging];
|
||||||
|
if (value === oldValue) return;
|
||||||
|
|
||||||
|
this.onChange({
|
||||||
[valueNeedChanging]: value,
|
[valueNeedChanging]: value,
|
||||||
}, () => {
|
|
||||||
this.triggerEvents('onChange', this.getValue());
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -184,28 +224,6 @@ class Slider extends React.Component {
|
|||||||
return this.props.range ? [lowerBound, upperBound] : upperBound;
|
return this.props.range ? [lowerBound, upperBound] : upperBound;
|
||||||
}
|
}
|
||||||
|
|
||||||
getIndex(value) {
|
|
||||||
const {marks, min, max, step} = this.props;
|
|
||||||
|
|
||||||
if (marks.length === 0) {
|
|
||||||
return Math.floor((value - min) / step);
|
|
||||||
}
|
|
||||||
const unit = ((max - min) / (marks.length - 1)).toFixed(5);
|
|
||||||
return Math.round(value / unit);
|
|
||||||
}
|
|
||||||
|
|
||||||
getBoundsFromIndex(value, props) {
|
|
||||||
if (props.range) {
|
|
||||||
return {
|
|
||||||
lowerBound: this.calcValueFromIndex(value[0], props),
|
|
||||||
upperBound: this.calcValueFromIndex(value[1], props),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
return {
|
|
||||||
upperBound: this.calcValueFromIndex(value, props),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
getSliderLength() {
|
getSliderLength() {
|
||||||
const slider = this.refs.slider;
|
const slider = this.refs.slider;
|
||||||
if (!slider) {
|
if (!slider) {
|
||||||
@@ -222,11 +240,24 @@ class Slider extends React.Component {
|
|||||||
return rect.left;
|
return rect.left;
|
||||||
}
|
}
|
||||||
|
|
||||||
trimAlignValue(v) {
|
getPrecision() {
|
||||||
const state = this.state || {};
|
|
||||||
const props = this.props;
|
const props = this.props;
|
||||||
const {marks, min, max} = props;
|
const stepString = props.step.toString();
|
||||||
const step = marks.length > 0 ? (max - min) / (marks.length - 1) : props.step;
|
let precision = 0;
|
||||||
|
if (stepString.indexOf('.') >= 0) {
|
||||||
|
precision = stepString.length - stepString.indexOf('.') - 1;
|
||||||
|
}
|
||||||
|
return precision;
|
||||||
|
}
|
||||||
|
|
||||||
|
isValueOutOfBounds(value, props) {
|
||||||
|
return value < props.min || value > props.max;
|
||||||
|
}
|
||||||
|
|
||||||
|
trimAlignValue(v, nextProps) {
|
||||||
|
const state = this.state || {};
|
||||||
|
const {handle, lowerBound, upperBound} = state;
|
||||||
|
const {marks, step, min, max, allowCross} = objectAssign({}, this.props, nextProps || {});
|
||||||
|
|
||||||
let val = v;
|
let val = v;
|
||||||
if (val <= min) {
|
if (val <= min) {
|
||||||
@@ -235,21 +266,23 @@ class Slider extends React.Component {
|
|||||||
if (val >= max) {
|
if (val >= max) {
|
||||||
val = max;
|
val = max;
|
||||||
}
|
}
|
||||||
if (state.handle === 'upperBound' && val <= state.lowerBound) {
|
if (!allowCross && handle === 'upperBound' && val <= lowerBound) {
|
||||||
val = state.lowerBound;
|
val = lowerBound;
|
||||||
}
|
}
|
||||||
if (state.handle === 'lowerBound' && val >= state.upperBound) {
|
if (!allowCross && handle === 'lowerBound' && val >= upperBound) {
|
||||||
val = state.upperBound;
|
val = upperBound;
|
||||||
}
|
}
|
||||||
|
|
||||||
const valModStep = (val - min) % step;
|
const points = Object.keys(marks).map(parseFloat);
|
||||||
let alignValue = val - valModStep;
|
if (step !== null) {
|
||||||
|
const closestStep = Math.round(val / step) * step;
|
||||||
if (Math.abs(valModStep) * 2 >= step) {
|
points.push(closestStep);
|
||||||
alignValue += (valModStep > 0) ? step : (-step);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return parseFloat(alignValue.toFixed(5));
|
const diffs = points.map((point) => Math.abs(val - point));
|
||||||
|
const closestPoint = points[diffs.indexOf(Math.min.apply(Math, diffs))];
|
||||||
|
|
||||||
|
return step !== null ? parseFloat(closestPoint.toFixed(this.getPrecision())) : closestPoint;
|
||||||
}
|
}
|
||||||
|
|
||||||
calcOffset(value) {
|
calcOffset(value) {
|
||||||
@@ -270,36 +303,6 @@ class Slider extends React.Component {
|
|||||||
return nextValue;
|
return nextValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
calcValueFromIndex(index, props) {
|
|
||||||
const marksLen = props.marks.length;
|
|
||||||
if (marksLen > 0) {
|
|
||||||
const value = ((props.max - props.min) / (marksLen - 1)) * (index);
|
|
||||||
// `'1' / 1 => 1`, to make sure that the returned value is a `Number`.
|
|
||||||
return value.toFixed(5) / 1;
|
|
||||||
}
|
|
||||||
return ('value' in props ? props.value : props.defaultValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
triggerEvents(event, v) {
|
|
||||||
const props = this.props;
|
|
||||||
const hasMarks = (props.marks.length > 0);
|
|
||||||
if (props[event]) {
|
|
||||||
let data;
|
|
||||||
if (hasMarks) {
|
|
||||||
if (props.range) {
|
|
||||||
data = v.map(bound => this.getIndex(bound));
|
|
||||||
} else {
|
|
||||||
data = this.getIndex(v);
|
|
||||||
}
|
|
||||||
} else if (v === undefined) {
|
|
||||||
data = this.state.value;
|
|
||||||
} else {
|
|
||||||
data = v;
|
|
||||||
}
|
|
||||||
props[event](data);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
addDocumentEvents(type) {
|
addDocumentEvents(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
|
||||||
@@ -311,7 +314,7 @@ class Slider extends React.Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
removeEventons(type) {
|
removeEvents(type) {
|
||||||
if (type === 'touch') {
|
if (type === 'touch') {
|
||||||
this.onTouchMoveListener.remove();
|
this.onTouchMoveListener.remove();
|
||||||
this.onTouchUpListener.remove();
|
this.onTouchUpListener.remove();
|
||||||
@@ -322,71 +325,53 @@ class Slider extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
end(type) {
|
end(type) {
|
||||||
this.removeEventons(type);
|
this.removeEvents(type);
|
||||||
this.triggerEvents('onAfterChange', this.getValue());
|
this.props.onAfterChange(this.getValue());
|
||||||
this.setState({handle: null});
|
this.setState({handle: null});
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const {handle, upperBound, lowerBound} = this.state;
|
const {handle, upperBound, lowerBound} = this.state;
|
||||||
const props = this.props;
|
const {className, prefixCls, disabled, dots, included, range, step,
|
||||||
const {className, prefixCls, disabled, included, isIncluded, dots, range} = props;
|
marks, max, min, tipTransitionName, tipFormatter, children} = this.props;
|
||||||
const {marks, step, max, min, tipTransitionName, tipFormatter, children} = props;
|
|
||||||
const marksLen = marks.length;
|
|
||||||
|
|
||||||
const sliderClassName = classSet({
|
|
||||||
[prefixCls]: true,
|
|
||||||
[prefixCls + '-disabled']: disabled,
|
|
||||||
[className]: !!className,
|
|
||||||
});
|
|
||||||
|
|
||||||
const upperOffset = this.calcOffset(upperBound);
|
const upperOffset = this.calcOffset(upperBound);
|
||||||
const lowerOffset = this.calcOffset(lowerBound);
|
const lowerOffset = this.calcOffset(lowerBound);
|
||||||
|
|
||||||
let track = null;
|
|
||||||
if ((included && isIncluded) || range) {
|
|
||||||
const trackClassName = prefixCls + '-track';
|
|
||||||
track = <Track className={trackClassName} offset={lowerOffset} length={upperOffset - lowerOffset}/>;
|
|
||||||
}
|
|
||||||
|
|
||||||
const handleClassName = prefixCls + '-handle';
|
const handleClassName = prefixCls + '-handle';
|
||||||
const isNoTip = (marksLen > 0) && !tipFormatter;
|
const isNoTip = (step === null) && !tipFormatter;
|
||||||
const upper = (<Handle className={handleClassName} tipTransitionName={tipTransitionName} noTip={isNoTip} tipFormatter={tipFormatter}
|
|
||||||
offset={upperOffset} value={upperBound} dragging={handle === 'upperBound'} />);
|
const upper = (<Handle className={handleClassName}
|
||||||
|
noTip={isNoTip} tipTransitionName={tipTransitionName} tipFormatter={tipFormatter}
|
||||||
|
offset={upperOffset} value={upperBound} dragging={handle === 'upperBound'} />);
|
||||||
|
|
||||||
let lower = null;
|
let lower = null;
|
||||||
if (range) {
|
if (range) {
|
||||||
lower = (<Handle className={handleClassName} tipTransitionName={tipTransitionName} noTip={isNoTip} tipFormatter={tipFormatter}
|
lower = (<Handle className={handleClassName}
|
||||||
offset={lowerOffset} value={lowerBound} dragging={handle === 'lowerBound'} />);
|
noTip={isNoTip} tipTransitionName={tipTransitionName} tipFormatter={tipFormatter}
|
||||||
}
|
offset={lowerOffset} value={lowerBound} dragging={handle === 'lowerBound'} />);
|
||||||
|
|
||||||
const upperIndex = this.getIndex(upperBound);
|
|
||||||
|
|
||||||
let steps = null;
|
|
||||||
if (marksLen > 0 || (step > 1 && dots)) {
|
|
||||||
const stepsClassName = prefixCls + '-step';
|
|
||||||
const stepNum = marksLen > 0 ? marksLen : Math.floor((max - min) / step) + 1;
|
|
||||||
steps = (<Steps className={stepsClassName} stepNum={stepNum}
|
|
||||||
lowerIndex={this.getIndex(lowerBound)} upperIndex={upperIndex}
|
|
||||||
included={(included && isIncluded) || range}/>);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mark = null;
|
|
||||||
if (marksLen > 0) {
|
|
||||||
const markClassName = prefixCls + '-mark';
|
|
||||||
mark = (<Marks className={markClassName} marks={marks}
|
|
||||||
index={upperIndex} included={(included && isIncluded)}/>);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const sliderClassName = classNames({
|
||||||
|
[prefixCls]: true,
|
||||||
|
[prefixCls + '-disabled']: disabled,
|
||||||
|
[className]: !!className,
|
||||||
|
});
|
||||||
|
const isIncluded = included || range;
|
||||||
return (
|
return (
|
||||||
<div ref="slider" className={sliderClassName}
|
<div ref="slider" className={sliderClassName}
|
||||||
onTouchStart={disabled ? noop : this.onTouchStart.bind(this)}
|
onTouchStart={disabled ? noop : this.onTouchStart.bind(this)}
|
||||||
onMouseDown={disabled ? noop : this.onSliderMouseDown.bind(this)}>
|
onMouseDown={disabled ? noop : this.onMouseDown.bind(this)}>
|
||||||
{track}
|
|
||||||
{upper}
|
{upper}
|
||||||
{lower}
|
{lower}
|
||||||
{steps}
|
<Track className={prefixCls + '-track'} included={isIncluded}
|
||||||
{mark}
|
offset={lowerOffset} length={upperOffset - lowerOffset}/>
|
||||||
|
<Dots prefixCls={prefixCls} marks={marks} dots={dots} step={step}
|
||||||
|
included={isIncluded} lowerBound={lowerBound}
|
||||||
|
upperBound={upperBound} max={max} min={min} />
|
||||||
|
<Marks className={prefixCls + '-mark'} marks={marks}
|
||||||
|
included={isIncluded} lowerBound={lowerBound}
|
||||||
|
upperBound={upperBound} max={max} min={min} />
|
||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
@@ -401,20 +386,11 @@ Slider.propTypes = {
|
|||||||
React.PropTypes.number,
|
React.PropTypes.number,
|
||||||
React.PropTypes.arrayOf(React.PropTypes.number),
|
React.PropTypes.arrayOf(React.PropTypes.number),
|
||||||
]),
|
]),
|
||||||
defaultIndex: React.PropTypes.oneOfType([
|
|
||||||
React.PropTypes.number,
|
|
||||||
React.PropTypes.arrayOf(React.PropTypes.number),
|
|
||||||
]),
|
|
||||||
value: React.PropTypes.oneOfType([
|
value: React.PropTypes.oneOfType([
|
||||||
React.PropTypes.number,
|
React.PropTypes.number,
|
||||||
React.PropTypes.arrayOf(React.PropTypes.number),
|
React.PropTypes.arrayOf(React.PropTypes.number),
|
||||||
]),
|
]),
|
||||||
index: React.PropTypes.oneOfType([
|
marks: React.PropTypes.object,
|
||||||
React.PropTypes.number,
|
|
||||||
React.PropTypes.arrayOf(React.PropTypes.number),
|
|
||||||
]),
|
|
||||||
marks: React.PropTypes.array,
|
|
||||||
isIncluded: React.PropTypes.bool, // @Deprecated
|
|
||||||
included: React.PropTypes.bool,
|
included: React.PropTypes.bool,
|
||||||
className: React.PropTypes.string,
|
className: React.PropTypes.string,
|
||||||
prefixCls: React.PropTypes.string,
|
prefixCls: React.PropTypes.string,
|
||||||
@@ -427,22 +403,25 @@ Slider.propTypes = {
|
|||||||
tipFormatter: React.PropTypes.func,
|
tipFormatter: React.PropTypes.func,
|
||||||
dots: React.PropTypes.bool,
|
dots: React.PropTypes.bool,
|
||||||
range: React.PropTypes.bool,
|
range: React.PropTypes.bool,
|
||||||
|
allowCross: React.PropTypes.bool,
|
||||||
};
|
};
|
||||||
|
|
||||||
Slider.defaultProps = {
|
Slider.defaultProps = {
|
||||||
|
prefixCls: 'rc-slider',
|
||||||
|
className: '',
|
||||||
|
tipTransitionName: '',
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 100,
|
max: 100,
|
||||||
step: 1,
|
step: 1,
|
||||||
defaultIndex: 0,
|
marks: {},
|
||||||
marks: [],
|
onBeforeChange: noop,
|
||||||
isIncluded: true, // @Deprecated
|
onChange: noop,
|
||||||
|
onAfterChange: noop,
|
||||||
included: true,
|
included: true,
|
||||||
className: '',
|
|
||||||
prefixCls: 'rc-slider',
|
|
||||||
disabled: false,
|
disabled: false,
|
||||||
tipTransitionName: '',
|
|
||||||
dots: false,
|
dots: false,
|
||||||
range: false,
|
range: false,
|
||||||
|
allowCross: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Slider;
|
export default Slider;
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import rcUtil from 'rc-util';
|
|
||||||
|
|
||||||
const Steps = ({className, stepNum, included, lowerIndex, upperIndex}) => {
|
|
||||||
const dotClassName = className.replace('step', 'dot');
|
|
||||||
const unit = 100 / (stepNum - 1);
|
|
||||||
|
|
||||||
const elements = [];
|
|
||||||
for (let i = 0; i < stepNum; i++) {
|
|
||||||
const offset = unit * i + '%';
|
|
||||||
const style = { left: offset };
|
|
||||||
|
|
||||||
const isActived = (included && i <= upperIndex && i >= lowerIndex ) ||
|
|
||||||
(!included && i === upperIndex);
|
|
||||||
const stepClassName = rcUtil.classSet({
|
|
||||||
[dotClassName]: true,
|
|
||||||
[dotClassName + '-active']: isActived,
|
|
||||||
});
|
|
||||||
|
|
||||||
elements.push(<span className={stepClassName} style={style} key={i} />);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (<div className={className}>
|
|
||||||
{elements}
|
|
||||||
</div>);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Steps;
|
|
||||||
+2
-1
@@ -1,9 +1,10 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
const Track = ({className, offset, length}) => {
|
const Track = ({className, included, offset, length}) => {
|
||||||
const style = {
|
const style = {
|
||||||
left: offset + '%',
|
left: offset + '%',
|
||||||
width: length + '%',
|
width: length + '%',
|
||||||
|
visibility: included ? 'visible' : 'hidden',
|
||||||
};
|
};
|
||||||
return <div className={className} style={style} />;
|
return <div className={className} style={style} />;
|
||||||
};
|
};
|
||||||
|
|||||||
+108
-64
@@ -1,83 +1,127 @@
|
|||||||
|
const expect = require('expect.js');
|
||||||
|
const React = require('react');
|
||||||
|
const ReactDOM = require('react-dom');
|
||||||
|
const ReactTestUtils = require('react-addons-test-utils');
|
||||||
|
const Slider = require('..');
|
||||||
|
|
||||||
var expect = require('expect.js');
|
|
||||||
var Slider = require('../index.js');
|
|
||||||
var React = require('react');
|
|
||||||
var ReactDOM = require('react-dom');
|
|
||||||
var TestUtils = require('react-addons-test-utils');
|
|
||||||
var Simulate = TestUtils.Simulate;
|
|
||||||
var $ = require('jquery');
|
|
||||||
require('../assets/index.less');
|
require('../assets/index.less');
|
||||||
|
|
||||||
describe('rc-slider', function () {
|
describe('rc-slider', function() {
|
||||||
this.timeout(5000);
|
this.timeout(5000);
|
||||||
var div = document.createElement('div');
|
const div = document.createElement('div');
|
||||||
document.body.appendChild(div);
|
document.body.appendChild(div);
|
||||||
|
|
||||||
afterEach(function () {
|
afterEach(() => {
|
||||||
React.unmountComponentAtNode(div);
|
ReactDOM.unmountComponentAtNode(div);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render a simple slider with value correctly!', function () {
|
it('should render a Slider with correct DOM structure', () => {
|
||||||
var slider = ReactDOM.render(
|
const slider = ReactDOM.render(<Slider />, div);
|
||||||
<Slider className='rc-slider' defaultValue={40}/>,
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(slider, 'rc-slider').length).to.be(1);
|
||||||
div
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(slider, 'rc-slider-handle').length).to.be(1);
|
||||||
);
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(slider, 'rc-slider-track').length).to.be(1);
|
||||||
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.state.upperBound).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);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render a slider with correct numbers of step!', function () {
|
it('should render a Slider with correct value and CSS style', () => {
|
||||||
var slider = ReactDOM.render(
|
const sliderWithDefaultValue = ReactDOM.render(<Slider defaultValue={50} />, div);
|
||||||
<Slider className='rc-slider' step={20}/>,
|
expect(sliderWithDefaultValue.state.upperBound).to.be(50);
|
||||||
div
|
expect(ReactTestUtils
|
||||||
);
|
.scryRenderedDOMComponentsWithClass(sliderWithDefaultValue, 'rc-slider-handle')[0]
|
||||||
var node = $(div);
|
.style.cssText)
|
||||||
expect(node.find('.rc-slider').length).to.be(1);
|
.to.be('left: 50%; ');
|
||||||
expect(node.find('.rc-slider-handle').length).to.be(1);
|
expect(ReactTestUtils
|
||||||
expect(node.find('.rc-slider-track').length).to.be(1);
|
.scryRenderedDOMComponentsWithClass(sliderWithDefaultValue, 'rc-slider-track')[0]
|
||||||
expect(slider.state.upperBound).to.be(0);
|
.style.cssText)
|
||||||
|
.to.be('left: 0%; width: 50%; visibility: visible; ');
|
||||||
|
|
||||||
var sliderWithDots = ReactDOM.render(
|
const sliderWithValue = ReactDOM.render(<Slider value={50} />, div);
|
||||||
<Slider className='rc-slider' step={20} dots/>,
|
expect(sliderWithValue.state.upperBound).to.be(50);
|
||||||
div
|
expect(ReactTestUtils
|
||||||
);
|
.scryRenderedDOMComponentsWithClass(sliderWithDefaultValue, 'rc-slider-handle')[0]
|
||||||
var node1 = $(div);
|
.style.cssText)
|
||||||
expect(node1.find('.rc-slider-dot').length).to.be(6);
|
.to.be('left: 50%; ');
|
||||||
|
expect(ReactTestUtils
|
||||||
|
.scryRenderedDOMComponentsWithClass(sliderWithDefaultValue, 'rc-slider-track')[0]
|
||||||
|
.style.cssText)
|
||||||
|
.to.be('left: 0%; width: 50%; visibility: visible; ');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render a slider with marks correctly!', function () {
|
it('should render a Range with correct DOM structure', () => {
|
||||||
var slider = ReactDOM.render(
|
const range = ReactDOM.render(<Slider range />, div);
|
||||||
<Slider marks={["一","二","三","四","五"]} defaultIndex={3} />,
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(range, 'rc-slider').length).to.be(1);
|
||||||
div
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(range, 'rc-slider-handle').length).to.be(2);
|
||||||
);
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(range, 'rc-slider-track').length).to.be(1);
|
||||||
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(node.find('.rc-slider-dot').length).to.be(slider.props.marks.length);
|
|
||||||
expect(node.find('.rc-slider-mark').length).to.be(1);
|
|
||||||
expect(node.find('.rc-slider-mark-text').length).to.be(slider.props.marks.length);
|
|
||||||
expect(slider.getIndex(slider.state.upperBound)).to.be(3);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// it('should mouseDown works!', function (done) {
|
it('should render a Range with correct value and CSS style', () => {
|
||||||
// var slider = ReactDOM.render(
|
const sliderWithDefaultValue = ReactDOM.render(<Slider range defaultValue={[0, 50]} />, div);
|
||||||
// <Slider marks={["一","二","三","四","五"]} />,
|
expect(sliderWithDefaultValue.state.lowerBound).to.be(0);
|
||||||
// div
|
expect(sliderWithDefaultValue.state.upperBound).to.be(50);
|
||||||
// );
|
expect(ReactTestUtils
|
||||||
// var selectedStep = slider.refs.step3.getDOMNode();
|
.scryRenderedDOMComponentsWithClass(sliderWithDefaultValue, 'rc-slider-handle')[0]
|
||||||
|
.style.cssText)
|
||||||
|
.to.be('left: 50%; ');
|
||||||
|
expect(ReactTestUtils
|
||||||
|
.scryRenderedDOMComponentsWithClass(sliderWithDefaultValue, 'rc-slider-handle')[1]
|
||||||
|
.style.cssText)
|
||||||
|
.to.be('left: 0%; ');
|
||||||
|
expect(ReactTestUtils
|
||||||
|
.scryRenderedDOMComponentsWithClass(sliderWithDefaultValue, 'rc-slider-track')[0]
|
||||||
|
.style.cssText)
|
||||||
|
.to.be('left: 0%; width: 50%; visibility: visible; ');
|
||||||
|
|
||||||
// Simulate.mouseDown(selectedStep);
|
const sliderWithValue = ReactDOM.render(<Slider range value={[50, 100]} />, div);
|
||||||
|
expect(sliderWithValue.state.lowerBound).to.be(50);
|
||||||
|
expect(sliderWithValue.state.upperBound).to.be(100);
|
||||||
|
expect(ReactTestUtils
|
||||||
|
.scryRenderedDOMComponentsWithClass(sliderWithDefaultValue, 'rc-slider-handle')[0]
|
||||||
|
.style.cssText)
|
||||||
|
.to.be('left: 100%; ');
|
||||||
|
expect(ReactTestUtils
|
||||||
|
.scryRenderedDOMComponentsWithClass(sliderWithDefaultValue, 'rc-slider-handle')[1]
|
||||||
|
.style.cssText)
|
||||||
|
.to.be('left: 50%; ');
|
||||||
|
expect(ReactTestUtils
|
||||||
|
.scryRenderedDOMComponentsWithClass(sliderWithDefaultValue, 'rc-slider-track')[0]
|
||||||
|
.style.cssText)
|
||||||
|
.to.be('width: 50%; visibility: visible; left: 50%; ');
|
||||||
|
});
|
||||||
|
|
||||||
// setTimeout( function() {
|
it('should render dots correctly when `dots=true`', () => {
|
||||||
// expect(slider.state.active).to.be('active');
|
const slider = ReactDOM.render(<Slider value={50} step={10} dots />, div);
|
||||||
// done();
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(slider, 'rc-slider-dot').length).to.be(11);
|
||||||
// }, 200);
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(slider, 'rc-slider-dot-active').length).to.be(6);
|
||||||
// });
|
|
||||||
|
|
||||||
|
const range = ReactDOM.render(<Slider range value={[20, 50]} step={10} dots />, div);
|
||||||
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(range, 'rc-slider-dot').length).to.be(11);
|
||||||
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(range, 'rc-slider-dot-active').length).to.be(4);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should render marks correctly when `marks` is not an empty object', () => {
|
||||||
|
const marks = {0: '0', 30: '30', 100: '100'};
|
||||||
|
|
||||||
|
const slider = ReactDOM.render(<Slider value={30} marks={marks} />, div);
|
||||||
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(slider, 'rc-slider-mark-text').length).to.be(3);
|
||||||
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(slider, 'rc-slider-mark-text')[0].innerHTML).to.be('0');
|
||||||
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(slider, 'rc-slider-mark-text')[1].innerHTML).to.be('30');
|
||||||
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(slider, 'rc-slider-mark-text')[2].innerHTML).to.be('100');
|
||||||
|
|
||||||
|
const range = ReactDOM.render(<Slider range value={[0, 30]} marks={marks} />, div);
|
||||||
|
expect(ReactTestUtils.scryRenderedDOMComponentsWithClass(range, 'rc-slider-mark-text').length).to.be(3);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not set value greater than `max` or smaller `min`', () => {
|
||||||
|
const sliderWithMin = ReactDOM.render(<Slider value={0} min={10} />, div);
|
||||||
|
expect(sliderWithMin.state.upperBound).to.be(10);
|
||||||
|
ReactDOM.unmountComponentAtNode(div);
|
||||||
|
|
||||||
|
const sliderWithMax = ReactDOM.render(<Slider value={100} max={90} />, div);
|
||||||
|
expect(sliderWithMax.state.upperBound).to.be(90);
|
||||||
|
ReactDOM.unmountComponentAtNode(div);
|
||||||
|
|
||||||
|
const range = ReactDOM.render(<Slider range value={[0, 100]} min={10} max={90} />, div);
|
||||||
|
expect(range.state.lowerBound).to.be(10);
|
||||||
|
expect(range.state.upperBound).to.be(90);
|
||||||
|
ReactDOM.unmountComponentAtNode(div);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user