mirror of
https://github.com/wassname/slider.git
synced 2026-09-10 12:38:09 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a68a839515 | ||
|
|
e615ffb7b0 | ||
|
|
c643ae235e | ||
|
|
93c92f5f37 | ||
|
|
35ba80d884 | ||
|
|
c28f14272d | ||
|
|
b70a4e8c94 | ||
|
|
41f5ddb9bd | ||
|
|
38edc4db93 | ||
|
|
93ddaef0c3 | ||
|
|
dbc64888bc | ||
|
|
2112385ccc | ||
|
|
11ef100472 | ||
|
|
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 |
-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
|
||||||
|
|||||||
@@ -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,10 +95,16 @@ React.render(<Rcslider />, container);
|
|||||||
<td>Value to be added or subtracted on each step the slider makes. Must be greater than zero. max - min should be evenly divisible by the step value.</td>
|
<td>Value to be added or subtracted on each step the slider makes. Must be greater than zero. max - min should be evenly divisible by the step value.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>value</td>
|
<td>defaultValue</td>
|
||||||
<td>number</td>
|
<td>number</td>
|
||||||
<td>0</td>
|
<td>0</td>
|
||||||
<td>Determines the initial positions of the handles.</td>
|
<td>Determines the initial positions of the handles.</td>
|
||||||
|
</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>
|
||||||
@@ -107,17 +113,35 @@ React.render(<Rcslider />, container);
|
|||||||
<td>mark every step for the slider, it will ignore the `step` parameter if it has been defined</td>
|
<td>mark every step for the slider, it will ignore the `step` parameter if it has been defined</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>index</td>
|
<td>isIncluded</td>
|
||||||
|
<td>boolean</td>
|
||||||
|
<td>true</td>
|
||||||
|
<td>if the value is true, it means a continuous value interval, otherwise, it is a independent value.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>defaultIndex</td>
|
||||||
<td>number</td>
|
<td>number</td>
|
||||||
<td>0</td>
|
<td>0</td>
|
||||||
<td>For step or marks slider, determine the initial positions of the handles.</td>
|
<td>For step or marks slider, determine the initial positions of the handles.</td>
|
||||||
</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>
|
||||||
<td>false</td>
|
<td>false</td>
|
||||||
<td>If true the handles can't be moved.</td>
|
<td>If true the handles can't be moved.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>tipTransitionName</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>''</td>
|
||||||
|
<td>Set the animation for tooltip if it shows.</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
@@ -130,17 +154,17 @@ npm start
|
|||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
http://localhost:8000/examples/
|
http://localhost:8005/examples/
|
||||||
|
|
||||||
online example: http://react-component.github.io/slider/build/examples/
|
online example: http://react-component.github.io/slider/
|
||||||
|
|
||||||
## Test Case
|
## Test Case
|
||||||
|
|
||||||
http://localhost:8000/tests/runner.html?coverage
|
http://localhost:8005/tests/runner.html?coverage
|
||||||
|
|
||||||
## Coverage
|
## Coverage
|
||||||
|
|
||||||
http://localhost:8000/node_modules/rc-server/node_modules/node-jscover/lib/front-end/jscoverage.html?w=http://localhost:8088/tests/runner.html?coverage
|
http://localhost:8005/node_modules/rc-server/node_modules/node-jscover/lib/front-end/jscoverage.html?w=http://localhost:8088/tests/runner.html?coverage
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|||||||
+149
-35
@@ -1,22 +1,39 @@
|
|||||||
@prefixClass: rc-slider;
|
@prefixClass: rc-slider;
|
||||||
|
|
||||||
// color
|
@disabledColor: #ccc;
|
||||||
@disabledColor: #e7eaec;
|
@border-radius-base: 6px;
|
||||||
|
@primary-color: #2db7f5;
|
||||||
|
@tooltip-color: #fff;
|
||||||
|
@tooltip-bg: tint(#666, 4%);
|
||||||
|
@tooltip-arrow-width: 4px;
|
||||||
|
@tooltip-distance: @tooltip-arrow-width+4;
|
||||||
|
@tooltip-arrow-color: @tooltip-bg;
|
||||||
|
@ease-out-quint : cubic-bezier(0.23, 1, 0.32, 1);
|
||||||
|
@ease-in-quint : cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); // remove tap highlight color for mobile safari
|
||||||
|
}
|
||||||
|
|
||||||
|
*:before,
|
||||||
|
*:after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
.@{prefixClass} {
|
.@{prefixClass} {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: 6px;
|
|
||||||
height: 4px;
|
height: 4px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-radius: 2px;
|
border-radius: @border-radius-base;
|
||||||
background-color: #e9e9e9;
|
background-color: #e9e9e9;
|
||||||
|
|
||||||
&-track {
|
&-track {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
border-radius: 2px;
|
border-radius: @border-radius-base;
|
||||||
background-color: #b2e9fd;
|
background-color: tint(@primary-color, 60%);
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -24,26 +41,21 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
margin-left: -7px;
|
margin-left: -7px;
|
||||||
margin-top: -5px;
|
margin-top: -5px;
|
||||||
width: 10px;
|
width: 14px;
|
||||||
height: 10px;
|
height: 14px;
|
||||||
cursor: default;
|
cursor: pointer;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
border: solid 2px #d9d9d9;
|
border: solid 2px tint(@primary-color, 50%);
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border-color: #999;
|
border-color: tint(@primary-color, 20%);
|
||||||
}
|
}
|
||||||
&-active {
|
&-active {
|
||||||
border-color: #8cddfc;
|
|
||||||
&:active {
|
&:active {
|
||||||
border-color: #2db7f5;
|
border-color: tint(@primary-color, 20%);
|
||||||
background-color: #2db7f5;
|
box-shadow: 0 0 5px tint(@primary-color, 20%);
|
||||||
box-shadow: 0 0 3px rgba(45, 183, 245, .75);
|
|
||||||
}
|
|
||||||
&:hover {
|
|
||||||
border-color: #23c0fa;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -51,9 +63,8 @@
|
|||||||
&-mark {
|
&-mark {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 10px;
|
top: 10px;
|
||||||
left: 0px;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 20px;
|
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
}
|
}
|
||||||
@@ -61,17 +72,13 @@
|
|||||||
&-mark-text {
|
&-mark-text {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
line-height: 1.5;
|
|
||||||
height: 20px;
|
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: #ccc;
|
color: #999;
|
||||||
&:first-child {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
&-active {
|
&-active {
|
||||||
color: #999;
|
color: #666;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -87,26 +94,26 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: -2px;
|
top: -2px;
|
||||||
margin-left: -4px;
|
margin-left: -4px;
|
||||||
width: 4px;
|
width: 8px;
|
||||||
height: 4px;
|
height: 8px;
|
||||||
border: 2px solid #fff;
|
border: 2px solid #e9e9e9;
|
||||||
background-color: #bcbcbc;
|
background-color: #fff;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
&:first-child {
|
&:first-child {
|
||||||
margin-left: -2px;
|
margin-left: -4px;
|
||||||
}
|
}
|
||||||
&:last-child {
|
&:last-child {
|
||||||
margin-left: -6px;
|
margin-left: -4px;
|
||||||
}
|
}
|
||||||
&-active {
|
&-active {
|
||||||
background-color: #8cddfc;
|
border-color: tint(@primary-color, 50%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&-disabled {
|
&-disabled {
|
||||||
background-color: @disabledColor;
|
background-color: #e9e9e9;
|
||||||
|
|
||||||
.@{prefixClass}-track {
|
.@{prefixClass}-track {
|
||||||
background-color: @disabledColor;
|
background-color: @disabledColor;
|
||||||
@@ -122,4 +129,111 @@
|
|||||||
cursor: not-allowed!important;
|
cursor: not-allowed!important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// slider tooltip style
|
||||||
|
&-tooltip {
|
||||||
|
position: absolute;
|
||||||
|
left: -9999px;
|
||||||
|
top: -9999px;
|
||||||
|
z-index: 4;
|
||||||
|
visibility: visible;
|
||||||
|
|
||||||
|
&-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-placement-points-bc-tc {
|
||||||
|
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-points-bc-tc &-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() {
|
||||||
|
animation-duration: .3s;
|
||||||
|
animation-fill-mode: both;
|
||||||
|
display: block !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.make-motion(@className, @keyframeName) {
|
||||||
|
.@{className}-enter, .@{className}-appear {
|
||||||
|
.motion-common();
|
||||||
|
animation-play-state: paused;
|
||||||
|
}
|
||||||
|
.@{className}-leave {
|
||||||
|
.motion-common();
|
||||||
|
animation-play-state: paused;
|
||||||
|
}
|
||||||
|
.@{className}-enter.@{className}-enter-active, .@{className}-appear.@{className}-appear-active {
|
||||||
|
animation-name: ~"@{keyframeName}In";
|
||||||
|
animation-play-state: running;
|
||||||
|
}
|
||||||
|
.@{className}-leave.@{className}-leave-active {
|
||||||
|
animation-name: ~"@{keyframeName}Out";
|
||||||
|
animation-play-state: running;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.zoom-motion(@className, @keyframeName) {
|
||||||
|
.make-motion(@className, @keyframeName);
|
||||||
|
.@{className}-enter, .@{className}-appear {
|
||||||
|
transform: scale(0, 0); // need this by yiminghe
|
||||||
|
animation-timing-function: @ease-out-quint;
|
||||||
|
}
|
||||||
|
.@{className}-leave {
|
||||||
|
animation-timing-function: @ease-in-quint;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.zoom-motion(zoom-down, zoomDown);
|
||||||
|
|
||||||
|
@keyframes zoomDownIn {
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
transform-origin: 50% 100%;
|
||||||
|
transform: scale(0, 0);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform-origin: 50% 100%;
|
||||||
|
transform: scale(1, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes zoomDownOut {
|
||||||
|
0% {
|
||||||
|
transform-origin: 50% 100%;
|
||||||
|
transform: scale(1, 1);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 0;
|
||||||
|
transform-origin: 50% 100%;
|
||||||
|
transform: scale(0, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+10
-4
@@ -1,8 +1,14 @@
|
|||||||
'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');
|
||||||
// React.render(<Slider marks={["一","二","三","四","五"]} index={3}/>, document.getElementById('__react-content'));
|
|
||||||
// React.render(<Slider className='rc-slider' step={20}/>, document.getElementById('__react-content'));
|
function onChange(v){
|
||||||
React.render(<Slider />, document.getElementById('__react-content'));
|
console.log(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// React.render(<div style={{width:400,margin:100}}><Slider marks={["一","二","三","四","五"]} defaultIndex={2} /></div>, 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} tipTransitionName='zoom-down'/></div>, document.getElementById('__react-content'));
|
||||||
|
|||||||
@@ -1,3 +1,2 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
module.exports = require('./src/');
|
module.exports = require('./src/');
|
||||||
|
|||||||
+13
-10
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "rc-slider",
|
"name": "rc-slider",
|
||||||
"version": "1.2.2",
|
"version": "1.4.4",
|
||||||
"description": "slider ui component for react",
|
"description": "slider ui component for react",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
@@ -17,20 +17,22 @@
|
|||||||
"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": {
|
||||||
"port": 8000
|
"port": 8005
|
||||||
},
|
},
|
||||||
"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,15 +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-util": "^2.0.2"
|
"rc-tooltip": "2.x",
|
||||||
|
"rc-util": "2.x"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+366
-266
@@ -1,275 +1,236 @@
|
|||||||
'use strict';
|
import React from 'react';
|
||||||
|
import Tooltip from 'rc-tooltip';
|
||||||
|
import rcUtil, {Dom as DomUtils} from 'rc-util';
|
||||||
|
|
||||||
var React = require('react');
|
function noop() {
|
||||||
var DomUtils = require('rc-util').Dom;
|
}
|
||||||
|
|
||||||
function pauseEvent(e) {
|
function pauseEvent(e) {
|
||||||
|
e.cancelBubble = true;
|
||||||
|
e.returnValue = false;
|
||||||
if (e.stopPropagation) {
|
if (e.stopPropagation) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
}
|
}
|
||||||
if (e.preventDefault) {
|
if (e.preventDefault) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
e.cancelBubble = true;
|
|
||||||
e.returnValue = false;
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function prefixClsFn(prefixCls) {
|
function prefixClsFn(prefixCls, ...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(' ');
|
||||||
}
|
}
|
||||||
|
|
||||||
var Slider = React.createClass({
|
function getValueFromIndex(props) {
|
||||||
|
let value;
|
||||||
|
const marksLen = props.marks.length;
|
||||||
|
let 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) / 1;
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Slider = React.createClass({
|
||||||
propTypes: {
|
propTypes: {
|
||||||
min: React.PropTypes.number,
|
min: React.PropTypes.number,
|
||||||
max: React.PropTypes.number,
|
max: React.PropTypes.number,
|
||||||
step: React.PropTypes.number,
|
step: React.PropTypes.number,
|
||||||
|
defaultValue: React.PropTypes.number,
|
||||||
|
defaultIndex: React.PropTypes.number,
|
||||||
value: React.PropTypes.number,
|
value: React.PropTypes.number,
|
||||||
index: React.PropTypes.number,
|
index: React.PropTypes.number,
|
||||||
marks: React.PropTypes.array,
|
marks: React.PropTypes.array,
|
||||||
|
isIncluded: React.PropTypes.bool,
|
||||||
className: React.PropTypes.string,
|
className: React.PropTypes.string,
|
||||||
|
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,
|
||||||
|
tipTransitionName: React.PropTypes.string,
|
||||||
},
|
},
|
||||||
|
|
||||||
getDefaultProps: function() {
|
getDefaultProps() {
|
||||||
return {
|
return {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 100,
|
max: 100,
|
||||||
step: 1,
|
step: 1,
|
||||||
value: 0,
|
defaultValue: 0,
|
||||||
marks: [],
|
marks: [],
|
||||||
className: 'rc-slider',
|
isIncluded: true,
|
||||||
|
className: '',
|
||||||
|
prefixCls: 'rc-slider',
|
||||||
disabled: false,
|
disabled: false,
|
||||||
index: 0
|
defaultIndex: 0,
|
||||||
|
tipTransitionName: '',
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
getInitialState: function() {
|
getInitialState() {
|
||||||
var props = this.props;
|
const props = this.props;
|
||||||
var value = this._trimAlignValue(props.value);
|
let value = props.defaultValue;
|
||||||
var marksLen = props.marks.length;
|
if ('value' in props) {
|
||||||
|
value = props.value;
|
||||||
|
}
|
||||||
|
value = this._trimAlignValue(value);
|
||||||
|
const marksLen = props.marks.length;
|
||||||
if (marksLen > 0) {
|
if (marksLen > 0) {
|
||||||
value = ((props.max - props.min) / (marksLen - 1)) * (props.index);
|
value = getValueFromIndex(props);
|
||||||
value = value.toFixed(5);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
upperBound: 0,
|
dragging: false,
|
||||||
sliderLength: 0,
|
showTooltip: false,
|
||||||
value: value,
|
value: value,
|
||||||
active: props.disabled ? '' : ((value > props.min || props.index > 0) ? 'active' : '')
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
componentWillReceiveProps: function(newProps) {
|
componentWillReceiveProps(nextProps) {
|
||||||
var value = newProps.value;
|
if ('value' in nextProps) {
|
||||||
this.state.value = this._trimAlignValue(value, newProps);
|
this.setState({
|
||||||
},
|
value: nextProps.value,
|
||||||
|
});
|
||||||
componentDidMount: function() {
|
} else if ('index' in nextProps) {
|
||||||
this._onHandleResizeListener = DomUtils.addEventListener(window, 'resize', this.handleResize);
|
this.setState({
|
||||||
this.handleResize();
|
value: getValueFromIndex(nextProps),
|
||||||
},
|
});
|
||||||
|
|
||||||
componentWillUnmount: function() {
|
|
||||||
if (this._onHandleResizeListener) {
|
|
||||||
this._onHandleResizeListener.remove();
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
getValue: function() {
|
onMouseUp(e) {
|
||||||
return this.state.value;
|
const m = e.target;
|
||||||
},
|
const handleDom = React.findDOMNode(this.refs.handle);
|
||||||
|
let showToolTip = false;
|
||||||
getIndex: function() {
|
if (m === handleDom) {
|
||||||
var props = this.props;
|
showToolTip = true;
|
||||||
if (props.marks.length === 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
var value = this.state.value;
|
this._end('mouse', showToolTip);
|
||||||
var unit = (props.max - props.min) / (props.marks.length - 1);
|
|
||||||
return Math.floor(value / unit);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
_trimAlignValue: function(val, props) {
|
onTouchUp() {
|
||||||
props = props || this.props;
|
this._end('touch');
|
||||||
|
|
||||||
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: function(value) {
|
onMouseMove(e) {
|
||||||
var ratio = (value - this.props.min) / (this.props.max - this.props.min);
|
const position = e.pageX || (e.clientX + document.documentElement.scrollLeft); // to compat ie8
|
||||||
return ratio * this.state.upperBound;
|
this.onMove(e, position);
|
||||||
},
|
},
|
||||||
|
|
||||||
_calcValue: function(offset) {
|
onTouchMove(e) {
|
||||||
var ratio = offset / this.state.upperBound;
|
if (e.touches.length > 1 || (e.type === 'touchend' && e.touches.length > 0)) {
|
||||||
return ratio * (this.props.max - this.props.min) + this.props.min;
|
this._end('touch');
|
||||||
},
|
|
||||||
|
|
||||||
_calValueByPos: function (position, callback) {
|
|
||||||
var pixelOffset = position - this.state.sliderStart;
|
|
||||||
// pixelOffset -= (this.state.handleSize / 2);
|
|
||||||
|
|
||||||
var nextValue = this._trimAlignValue(this._calcValue(pixelOffset));
|
|
||||||
|
|
||||||
this.setState({value: nextValue, active: 'active'}, callback);
|
|
||||||
},
|
|
||||||
|
|
||||||
_getMousePosition: function(e) {
|
|
||||||
return e.pageX || (e.clientX + document.documentElement.scrollLeft);
|
|
||||||
},
|
|
||||||
|
|
||||||
_triggerEvents: function(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: function() {
|
|
||||||
this._onMouseMoveListener = DomUtils.addEventListener(document, 'mousemove', this._onMouseMove);
|
|
||||||
this._onMouseUpListener = DomUtils.addEventListener(document, 'mouseup', this._onMouseUp);
|
|
||||||
},
|
|
||||||
|
|
||||||
_removeEventHandles: function () {
|
|
||||||
if (this._onMouseMoveListener) {
|
|
||||||
this._onMouseMoveListener.remove();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this._onMouseUpListener) {
|
|
||||||
this._onMouseUpListener.remove();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_start: function(position) {
|
|
||||||
if (document.activeElement) {
|
|
||||||
document.activeElement.blur();
|
|
||||||
}
|
|
||||||
|
|
||||||
this._triggerEvents('onBeforeChange');
|
|
||||||
|
|
||||||
this.setState({
|
|
||||||
startValue: this.state.value,
|
|
||||||
startPosition: position
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
_end: function() {
|
|
||||||
this._removeEventHandles();
|
|
||||||
this.setState(this._triggerEvents.bind(this, 'onAfterChange'));
|
|
||||||
},
|
|
||||||
|
|
||||||
_onMouseUp: function() {
|
|
||||||
this._end();
|
|
||||||
},
|
|
||||||
|
|
||||||
_onMouseMove: function(e) {
|
|
||||||
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 diffValue = diffPosition / (state.sliderLength) * (props.max - props.min);
|
|
||||||
var newValue = this._trimAlignValue(state.startValue + diffValue);
|
|
||||||
|
|
||||||
value = newValue;
|
|
||||||
|
|
||||||
if (newValue !== oldValue) {
|
|
||||||
this.setState({value: value, active: 'active'}, this._triggerEvents.bind(this, 'onChange'));
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
handleResize: function() {
|
|
||||||
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
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
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) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var position = this._getMousePosition(e);
|
|
||||||
this._calValueByPos(position,
|
const position = this._getTouchPosition(e);
|
||||||
() => {
|
|
||||||
this._triggerEvents('onChange');
|
this.onMove(e, position);
|
||||||
this._start(position);
|
},
|
||||||
this._addEventHandles();
|
|
||||||
}
|
onMove(e, position) {
|
||||||
);
|
pauseEvent(e);
|
||||||
|
const props = this.props;
|
||||||
|
const state = this.state;
|
||||||
|
|
||||||
|
let value = state.value;
|
||||||
|
const oldValue = value;
|
||||||
|
|
||||||
|
const diffPosition = position - this.startPosition;
|
||||||
|
|
||||||
|
const diffValue = diffPosition / this.getSliderLength() * (props.max - props.min);
|
||||||
|
value = this._trimAlignValue(this.startValue + diffValue);
|
||||||
|
|
||||||
|
if (value !== oldValue && !('value' in props) && !('index' in props)) {
|
||||||
|
this.setState({value: value});
|
||||||
|
}
|
||||||
|
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);
|
pauseEvent(e);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderSteps: function() {
|
onSliderMouseDown(e) {
|
||||||
var props = this.props;
|
const position = e.pageX || (e.clientX + document.documentElement.scrollLeft); // to compat ie8
|
||||||
var marksLen = props.marks.length;
|
const value = this._calValueByPos(position);
|
||||||
var stepNum = marksLen > 0 ? marksLen : Math.floor((props.max - props.min) / props.step) + 1;
|
this._triggerEvents('onChange', value);
|
||||||
var unit = this.state.sliderLength / (stepNum - 1);
|
this._start(position);
|
||||||
|
this._addDocumentEvents('mouse');
|
||||||
|
pauseEvent(e);
|
||||||
|
},
|
||||||
|
|
||||||
var prefixCls = props.className;
|
getIndex(v) {
|
||||||
var stepClassName = prefixClsFn(prefixCls, 'step');
|
const props = this.props;
|
||||||
|
const value = v === undefined ? this.state.value : v;
|
||||||
|
|
||||||
var elements = [];
|
if (props.marks.length === 0) {
|
||||||
for (var i = 0; i < stepNum; i++) {
|
return Math.floor((value - props.min) / props.step);
|
||||||
var offset = unit * i;
|
}
|
||||||
var style = {
|
const unit = ((props.max - props.min) / (props.marks.length - 1)).toFixed(5);
|
||||||
left: offset.toFixed(5)
|
return Math.round(value / unit);
|
||||||
|
},
|
||||||
|
|
||||||
|
getSliderLength() {
|
||||||
|
const slider = this.refs.slider;
|
||||||
|
if (!slider) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return slider.getDOMNode().clientWidth;
|
||||||
|
},
|
||||||
|
|
||||||
|
getSliderStart() {
|
||||||
|
const slider = this.refs.slider.getDOMNode();
|
||||||
|
const rect = slider.getBoundingClientRect();
|
||||||
|
|
||||||
|
return rect.left;
|
||||||
|
},
|
||||||
|
|
||||||
|
renderSteps() {
|
||||||
|
const props = this.props;
|
||||||
|
const marksLen = props.marks.length;
|
||||||
|
const stepNum = marksLen > 0 ? marksLen : Math.floor((props.max - props.min) / props.step) + 1;
|
||||||
|
const unit = 100 / (stepNum - 1);
|
||||||
|
|
||||||
|
const prefixCls = props.prefixCls;
|
||||||
|
const stepClassName = prefixClsFn(prefixCls, 'step');
|
||||||
|
|
||||||
|
const elements = [];
|
||||||
|
for (let i = 0; i < stepNum; i++) {
|
||||||
|
const offset = unit * i + '%';
|
||||||
|
const style = {
|
||||||
|
left: offset,
|
||||||
};
|
};
|
||||||
var className = prefixClsFn(prefixCls, 'dot');
|
let className = prefixClsFn(prefixCls, 'dot');
|
||||||
if (i <= this.getIndex() || (this._calcValue(offset) <= this.getValue())) {
|
if (props.isIncluded) {
|
||||||
className = prefixClsFn(prefixCls, 'dot', 'dot-active');
|
if (i <= this.getIndex()) {
|
||||||
|
className = prefixClsFn(prefixCls, 'dot', 'dot-active');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
className = (i === this.getIndex()) ? prefixClsFn(prefixCls, 'dot', 'dot-active') : className;
|
||||||
}
|
}
|
||||||
|
|
||||||
elements[i] = (
|
elements[i] = (
|
||||||
<span className={className} style={style} ref={'step' + i}></span>
|
<span className={className} style={style} ref={'step' + i} key={'step' + i}></span>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -280,45 +241,48 @@ var Slider = React.createClass({
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderMark: function(i) {
|
renderMark(i) {
|
||||||
var marks = this.props.marks;
|
const marks = this.props.marks;
|
||||||
var marksLen = marks.length;
|
const marksLen = marks.length;
|
||||||
var unit = this.state.sliderLength / (marksLen - 1);
|
const unit = 100 / (marksLen - 1);
|
||||||
var offset = unit * i;
|
const offset = unit * i;
|
||||||
|
|
||||||
var style = {
|
const style = {
|
||||||
width: (unit / 2).toFixed(5)
|
width: unit / 2 + '%',
|
||||||
};
|
};
|
||||||
|
|
||||||
if (i === (marksLen - 1)) {
|
if (i === marksLen - 1) {
|
||||||
style.right = '0';
|
style.right = -unit / 4 + '%';
|
||||||
style.width = 'auto';
|
} else {
|
||||||
}else {
|
style.left = i > 0 ? offset - unit / 4 + '%' : -unit / 4 + '%';
|
||||||
style.left = (i > 0 ? (offset - (unit / 4)).toFixed(5) : offset);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var prefixCls = this.props.className;
|
const prefixCls = this.props.prefixCls;
|
||||||
var className = prefixClsFn(prefixCls, 'mark-text');
|
let className = prefixClsFn(prefixCls, 'mark-text');
|
||||||
|
|
||||||
if (i <= this.getIndex()) {
|
if (this.props.isIncluded) {
|
||||||
className = prefixClsFn(prefixCls, 'mark-text', 'mark-text-active');
|
if (i <= this.getIndex()) {
|
||||||
|
className = prefixClsFn(prefixCls, 'mark-text', 'mark-text-active');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
className = (i === this.getIndex()) ? prefixClsFn(prefixCls, 'mark-text', 'mark-text-active') : className;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<span className={className} style={style}>{this.props.marks[i]}</span>
|
<span className={className} style={style} key={i}>{this.props.marks[i]}</span>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderMarks: function() {
|
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.className;
|
const prefixCls = this.props.prefixCls;
|
||||||
var className = prefixClsFn(prefixCls, 'mark');
|
const className = prefixClsFn(prefixCls, 'mark');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={className}>
|
<div className={className}>
|
||||||
@@ -327,64 +291,200 @@ var Slider = React.createClass({
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderHandle: function(offset) {
|
renderHandler(offset) {
|
||||||
var handleStyle = {
|
const onStyle = {
|
||||||
left: offset
|
left: offset,
|
||||||
};
|
};
|
||||||
|
|
||||||
var prefixCls = this.props.className;
|
const prefixCls = this.props.prefixCls;
|
||||||
var className = prefixClsFn(prefixCls, 'handle');
|
const className = prefixClsFn(prefixCls, 'handle');
|
||||||
|
|
||||||
if (this.state.active) {
|
let events = {};
|
||||||
className = prefixClsFn(prefixCls, 'handle', 'handle-active');
|
|
||||||
|
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) {
|
||||||
|
return handle;
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
<a className={className}
|
<Tooltip
|
||||||
ref = "handle"
|
placement={{points: ['bc', 'tc']}}
|
||||||
style = {handleStyle}
|
visible={tooltipVisible}
|
||||||
href = "#"
|
overlay={<span>{this.state.value}</span>}
|
||||||
onMouseDown={this.handleMouseDown}></a>
|
delay={0}
|
||||||
|
transitionName={this.props.tipTransitionName}
|
||||||
|
prefixCls={prefixClsFn(prefixCls, 'tooltip')}>
|
||||||
|
{handle}
|
||||||
|
</Tooltip>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
renderTrack: function(offset) {
|
renderTrack(offset) {
|
||||||
var style = {
|
const style = {
|
||||||
width: offset
|
width: offset,
|
||||||
};
|
};
|
||||||
|
|
||||||
var prefixCls = this.props.className;
|
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>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function() {
|
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.renderTrack(offset);
|
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.className;
|
[prefixCls]: 1,
|
||||||
var sliderClassName = props.disabled ? prefixClsFn(prefixCls, 'disabled') : prefixCls;
|
[props.className]: !!props.className,
|
||||||
|
[`${prefixCls}-disabled`]: disabled,
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={sliderClassName} ref="slider" onMouseDown={this.handleSliderMouseDown}>
|
<div className={rcUtil.classSet(sliderClassName)} ref="slider"
|
||||||
|
onTouchStart={disabled ? noop : this.onTouchStart}
|
||||||
|
onMouseDown={disabled ? noop : this.onSliderMouseDown}>
|
||||||
{track}
|
{track}
|
||||||
{handles}
|
{ons}
|
||||||
{steps}
|
{steps}
|
||||||
{sliderMarks}
|
{sliderMarks}
|
||||||
|
{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, showToolTip) {
|
||||||
|
this._removeEventons(type);
|
||||||
|
this._triggerEvents('onAfterChange');
|
||||||
|
this.setState({
|
||||||
|
dragging: false,
|
||||||
|
showTooltip: !!showToolTip,
|
||||||
|
});
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = Slider;
|
export default Slider;
|
||||||
|
|||||||
@@ -1,3 +1,2 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
module.exports = require('./Slider');
|
module.exports = require('./Slider');
|
||||||
|
|||||||
+17
-17
@@ -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);
|
||||||
@@ -18,14 +18,14 @@ describe('rc-slider', function () {
|
|||||||
|
|
||||||
it('should render a simple slider with value correctly!', function () {
|
it('should render a simple slider with value correctly!', function () {
|
||||||
var slider = React.render(
|
var slider = React.render(
|
||||||
<Slider className='rc-slider' value={40}/>,
|
<Slider className='rc-slider' defaultValue={40}/>,
|
||||||
div
|
div
|
||||||
);
|
);
|
||||||
var node = $(div);
|
var node = $(div);
|
||||||
expect(node.find('.rc-slider').length).to.be(1);
|
expect(node.find('.rc-slider').length).to.be(1);
|
||||||
expect(node.find('.rc-slider-handle').length).to.be(1);
|
expect(node.find('.rc-slider-handle').length).to.be(1);
|
||||||
expect(node.find('.rc-slider-track').length).to.be(1);
|
expect(node.find('.rc-slider-track').length).to.be(1);
|
||||||
expect(slider.getValue()).to.be(40);
|
expect(slider.state.value).to.be(40);
|
||||||
var trackWidth = node.find('.rc-slider-track')[0].style.width;
|
var trackWidth = node.find('.rc-slider-track')[0].style.width;
|
||||||
expect(trackWidth).to.eql(node.find('.rc-slider-handle')[0].style.left);
|
expect(trackWidth).to.eql(node.find('.rc-slider-handle')[0].style.left);
|
||||||
});
|
});
|
||||||
@@ -40,12 +40,12 @@ describe('rc-slider', function () {
|
|||||||
expect(node.find('.rc-slider-handle').length).to.be(1);
|
expect(node.find('.rc-slider-handle').length).to.be(1);
|
||||||
expect(node.find('.rc-slider-track').length).to.be(1);
|
expect(node.find('.rc-slider-track').length).to.be(1);
|
||||||
expect(node.find('.rc-slider-dot').length).to.be(6);
|
expect(node.find('.rc-slider-dot').length).to.be(6);
|
||||||
expect(slider.getValue()).to.be(0);
|
expect(slider.state.value).to.be(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render a slider with marks correctly!', function () {
|
it('should render a slider with marks correctly!', function () {
|
||||||
var slider = React.render(
|
var slider = React.render(
|
||||||
<Slider marks={["一","二","三","四","五"]} index={3} />,
|
<Slider marks={["一","二","三","四","五"]} defaultIndex={3} />,
|
||||||
div
|
div
|
||||||
);
|
);
|
||||||
var node = $(div);
|
var node = $(div);
|
||||||
@@ -58,19 +58,19 @@ describe('rc-slider', function () {
|
|||||||
expect(slider.getIndex()).to.be(3);
|
expect(slider.getIndex()).to.be(3);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should mouseDown works!', function (done) {
|
// it('should mouseDown works!', function (done) {
|
||||||
var slider = React.render(
|
// var slider = React.render(
|
||||||
<Slider marks={["一","二","三","四","五"]} />,
|
// <Slider marks={["一","二","三","四","五"]} />,
|
||||||
div
|
// div
|
||||||
);
|
// );
|
||||||
var selectedStep = slider.refs.step3.getDOMNode();
|
// var selectedStep = slider.refs.step3.getDOMNode();
|
||||||
|
|
||||||
Simulate.mouseDown(selectedStep);
|
// Simulate.mouseDown(selectedStep);
|
||||||
|
|
||||||
setTimeout( function() {
|
// setTimeout( function() {
|
||||||
expect(slider.state.active).to.be('active');
|
// expect(slider.state.active).to.be('active');
|
||||||
done();
|
// done();
|
||||||
}, 200);
|
// }, 200);
|
||||||
});
|
// });
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user