mirror of
https://github.com/wassname/slider.git
synced 2026-09-11 12:42:49 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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 | ||
|
|
a49a3d35aa | ||
|
|
e6261f28a8 | ||
|
|
0f2f13eecb | ||
|
|
af89f92d58 | ||
|
|
83e6e3a27e | ||
|
|
0c36e3949f |
+2
-4
@@ -19,10 +19,8 @@ Thumbs.db
|
|||||||
*.pyo
|
*.pyo
|
||||||
.build
|
.build
|
||||||
node_modules
|
node_modules
|
||||||
_site
|
|
||||||
sea-modules
|
|
||||||
spm_modules
|
|
||||||
.cache
|
.cache
|
||||||
dist
|
dist
|
||||||
assets/**/*.css
|
assets/**/*.css
|
||||||
build/
|
build
|
||||||
|
lib
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
{
|
|
||||||
"requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch"],
|
|
||||||
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
|
|
||||||
"requireSpacesInFunctionExpression": {
|
|
||||||
"beforeOpeningCurlyBrace": true
|
|
||||||
},
|
|
||||||
"disallowSpacesInsideArrayBrackets": true,
|
|
||||||
"disallowSpacesInsideObjectBrackets": true,
|
|
||||||
"disallowSpacesInsideParentheses": true,
|
|
||||||
"disallowQuotedKeysInObjects": "allButReserved",
|
|
||||||
"disallowSpaceAfterObjectKeys": true,
|
|
||||||
"requireSpaceBeforeBinaryOperators": ["-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<=" ],
|
|
||||||
"requireSpacesInConditionalExpression": {
|
|
||||||
"afterTest": true,
|
|
||||||
"beforeConsequent": true,
|
|
||||||
"afterConsequent": true,
|
|
||||||
"beforeAlternate": true
|
|
||||||
},
|
|
||||||
"requireSpaceAfterBinaryOperators": ["/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
|
|
||||||
"disallowKeywords": [ "with" ],
|
|
||||||
"disallowSpaceAfterPrefixUnaryOperators": [ "!" , "++", "--", "+", "-", "~"],
|
|
||||||
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--", ","],
|
|
||||||
"disallowMultipleLineBreaks": true,
|
|
||||||
"disallowKeywordsOnNewLine": ["else"],
|
|
||||||
"safeContextKeyword": "self",
|
|
||||||
"excludeFiles": ["lib/**/parser.js"]
|
|
||||||
}
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
{
|
|
||||||
"camelcase": true,
|
|
||||||
"curly": true,
|
|
||||||
"eqeqeq": true,
|
|
||||||
"freeze": true,
|
|
||||||
"indent": 4,
|
|
||||||
"latedef": "nofunc",
|
|
||||||
"quotmark": "false",
|
|
||||||
"nonew": true,
|
|
||||||
"newcap": false,
|
|
||||||
"immed": true,
|
|
||||||
"noarg": true,
|
|
||||||
"eqnull": true,
|
|
||||||
"trailing": true,
|
|
||||||
"undef": true,
|
|
||||||
"unused": true,
|
|
||||||
"browser": true,
|
|
||||||
"node": true,
|
|
||||||
"esnext": true,
|
|
||||||
"globals": {
|
|
||||||
"describe": false,
|
|
||||||
"expect": false,
|
|
||||||
"beforeEach": false,
|
|
||||||
"afterEach": false,
|
|
||||||
"modulex": false,
|
|
||||||
"it": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+6
-6
@@ -1,7 +1,5 @@
|
|||||||
bower_components/
|
|
||||||
build/
|
build/
|
||||||
*.cfg
|
*.cfg
|
||||||
node_modules/
|
|
||||||
nohup.out
|
nohup.out
|
||||||
*.iml
|
*.iml
|
||||||
.idea/
|
.idea/
|
||||||
@@ -22,8 +20,10 @@ Thumbs.db
|
|||||||
out/
|
out/
|
||||||
.build
|
.build
|
||||||
node_modules
|
node_modules
|
||||||
_site
|
|
||||||
sea-modules
|
|
||||||
spm_modules
|
|
||||||
.cache
|
.cache
|
||||||
dist
|
examples
|
||||||
|
tests
|
||||||
|
src
|
||||||
|
/index.js
|
||||||
|
.*
|
||||||
|
assets/**/*.less
|
||||||
+25
-8
@@ -1,19 +1,36 @@
|
|||||||
language: node_js
|
language: node_js
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
- yiminghe@gmail.com
|
- yiminghe@gmail.com
|
||||||
|
|
||||||
node_js:
|
node_js:
|
||||||
- 0.12
|
- 0.12
|
||||||
before_script:
|
|
||||||
- npm start &
|
before_install:
|
||||||
- npm install mocha-phantomjs -g
|
- |
|
||||||
- phantomjs --version
|
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.md$)|(^(docs|examples))/'
|
||||||
|
then
|
||||||
|
echo "Only docs were updated, stopping build process."
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
npm install mocha-phantomjs -g
|
||||||
|
phantomjs --version
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- npm test
|
- |
|
||||||
- npm run browser-test
|
if [ "$TEST_TYPE" = test ]; then
|
||||||
- npm run browser-test-cover
|
npm test
|
||||||
- npm run saucelabs
|
else
|
||||||
|
npm run $TEST_TYPE
|
||||||
|
fi
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
matrix:
|
||||||
|
- TEST_TYPE=lint
|
||||||
|
- TEST_TYPE=browser-test
|
||||||
|
- TEST_TYPE=browser-test-cover
|
||||||
|
- TEST_TYPE=saucelabs
|
||||||
global:
|
global:
|
||||||
- secure: S1VwbaPzLnSH/IUT/wlJulxAX5VHRIDmSt53h/ycHcZsszUpWcLCJRQAe0fTVB2dAx5MdBbSZ+o+tr3tRwVB5TRAYm0oTCsYAkOZaWOB28RuUQtdGt3wf9xxTG1UiPiaLLUW3waX9zAaf3yqKBcJGf1op0RD8dksxbCFw/7xVbU=
|
- secure: S1VwbaPzLnSH/IUT/wlJulxAX5VHRIDmSt53h/ycHcZsszUpWcLCJRQAe0fTVB2dAx5MdBbSZ+o+tr3tRwVB5TRAYm0oTCsYAkOZaWOB28RuUQtdGt3wf9xxTG1UiPiaLLUW3waX9zAaf3yqKBcJGf1op0RD8dksxbCFw/7xVbU=
|
||||||
- secure: EBEDg8k///IlEsnx0AE8X3mbFl0QE5+xGKbG4AxXlGZda12uTIPUSMKJzdZQ2hVbZXduTzf1cQl9rcu9nGoSnkL/DWnIax9cvHi+1orx5+YPlxPHNWAwWByTnHosBn2MJhfy1s5paJfHC9cUzmmEL6x4fYthWxjsPUo+irEZH6E=
|
- secure: EBEDg8k///IlEsnx0AE8X3mbFl0QE5+xGKbG4AxXlGZda12uTIPUSMKJzdZQ2hVbZXduTzf1cQl9rcu9nGoSnkL/DWnIax9cvHi+1orx5+YPlxPHNWAwWByTnHosBn2MJhfy1s5paJfHC9cUzmmEL6x4fYthWxjsPUo+irEZH6E=
|
||||||
|
|||||||
@@ -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))
|
||||||
|
|||||||
@@ -106,6 +106,12 @@ React.render(<Rcslider />, container);
|
|||||||
<td>[]</td>
|
<td>[]</td>
|
||||||
<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>
|
||||||
|
<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>
|
<tr>
|
||||||
<td>index</td>
|
<td>index</td>
|
||||||
<td>number</td>
|
<td>number</td>
|
||||||
@@ -132,7 +138,7 @@ npm start
|
|||||||
|
|
||||||
http://localhost:8000/examples/
|
http://localhost:8000/examples/
|
||||||
|
|
||||||
online example: http://react-component.github.io/slider/build/examples/
|
online example: http://react-component.github.io/slider/examples/
|
||||||
|
|
||||||
## Test Case
|
## Test Case
|
||||||
|
|
||||||
|
|||||||
+88
-35
@@ -1,21 +1,37 @@
|
|||||||
@prefixClass: rc-slider;
|
@prefixClass: rc-slider;
|
||||||
|
|
||||||
// color
|
@disabledColor: #ccc;
|
||||||
@disabledColor: #e7eaec;
|
@border-radius-base: 6px;
|
||||||
|
@primary-color: #2db7f5;
|
||||||
|
@tooltip-color: #fff;
|
||||||
|
@tooltip-bg: tint(#666, 4%);
|
||||||
|
@tooltip-arrow-width: 4px;
|
||||||
|
@tooltip-distance: @tooltip-arrow-width+4;
|
||||||
|
@tooltip-arrow-color: @tooltip-bg;
|
||||||
|
|
||||||
|
* {
|
||||||
|
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;
|
||||||
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -23,26 +39,21 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
margin-left: -7px;
|
margin-left: -7px;
|
||||||
margin-top: -5px;
|
margin-top: -5px;
|
||||||
width: 10px;
|
width: 14px;
|
||||||
height: 10px;
|
height: 14px;
|
||||||
cursor: 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;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -50,27 +61,22 @@
|
|||||||
&-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;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -86,26 +92,26 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: -2px;
|
top: -2px;
|
||||||
margin-left: -4px;
|
margin-left: -4px;
|
||||||
width: 4px;
|
width: 8px;
|
||||||
height: 4px;
|
height: 8px;
|
||||||
border: 2px solid #fff;
|
border: 2px solid #e9e9e9;
|
||||||
background-color: #bcbcbc;
|
background-color: #fff;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
&:first-child {
|
&:first-child {
|
||||||
margin-left: -2px;
|
margin-left: -4px;
|
||||||
}
|
}
|
||||||
&:last-child {
|
&:last-child {
|
||||||
margin-left: -6px;
|
margin-left: -4px;
|
||||||
}
|
}
|
||||||
&-active {
|
&-active {
|
||||||
background-color: #8cddfc;
|
border-color: tint(@primary-color, 50%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&-disabled {
|
&-disabled {
|
||||||
background-color: @disabledColor;
|
background-color: #e9e9e9;
|
||||||
|
|
||||||
.@{prefixClass}-track {
|
.@{prefixClass}-track {
|
||||||
background-color: @disabledColor;
|
background-color: @disabledColor;
|
||||||
@@ -121,4 +127,51 @@
|
|||||||
cursor: not-allowed!important;
|
cursor: not-allowed!important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// slider tooltip style
|
||||||
|
&-tooltip {
|
||||||
|
position: absolute;
|
||||||
|
left: -9999px;
|
||||||
|
top: -9999px;
|
||||||
|
z-index: 4;
|
||||||
|
visibility: visible;
|
||||||
|
|
||||||
|
&-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-placement-top {
|
||||||
|
padding: @tooltip-arrow-width 0 @tooltip-distance 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-inner {
|
||||||
|
padding: 6px 0;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 1;
|
||||||
|
color: @tooltip-color;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
background-color: @tooltip-bg;
|
||||||
|
border-radius: @border-radius-base;
|
||||||
|
box-shadow: 0 0 4px #d9d9d9;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-arrow {
|
||||||
|
position: absolute;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
border-color: transparent;
|
||||||
|
border-style: solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-placement-top &-arrow {
|
||||||
|
bottom: @tooltip-distance - @tooltip-arrow-width;
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -@tooltip-arrow-width;
|
||||||
|
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
|
||||||
|
border-top-color: @tooltip-arrow-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+3
-2
@@ -1,6 +1,7 @@
|
|||||||
/** @jsx React.DOM */
|
'use strict';
|
||||||
// use jsx to render html, do not modify simple.html
|
|
||||||
require('rc-slider/assets/index.css');
|
require('rc-slider/assets/index.css');
|
||||||
|
|
||||||
var Slider = require('rc-slider');
|
var Slider = require('rc-slider');
|
||||||
var React = require('react');
|
var React = require('react');
|
||||||
// React.render(<Slider marks={["一","二","三","四","五"]} index={3}/>, document.getElementById('__react-content'));
|
// React.render(<Slider marks={["一","二","三","四","五"]} index={3}/>, document.getElementById('__react-content'));
|
||||||
|
|||||||
@@ -1 +1,3 @@
|
|||||||
module.exports = require('./lib/Slider');
|
'use strict';
|
||||||
|
|
||||||
|
module.exports = require('./src/');
|
||||||
|
|||||||
+15
-20
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "rc-slider",
|
"name": "rc-slider",
|
||||||
"version": "1.0.0",
|
"version": "1.2.9",
|
||||||
"description": "slider ui component for react",
|
"description": "slider ui component for react",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
@@ -18,42 +18,37 @@
|
|||||||
"url": "http://github.com/react-component/slider/issues"
|
"url": "http://github.com/react-component/slider/issues"
|
||||||
},
|
},
|
||||||
"licenses": "MIT",
|
"licenses": "MIT",
|
||||||
"spm": {
|
"main": "./lib/index.js",
|
||||||
"dependencies": {
|
|
||||||
"react": "*"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"config": {
|
"config": {
|
||||||
"port": 8000
|
"port": 8000
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "rc-tools run build",
|
"build": "rc-tools run build",
|
||||||
|
"precommit": "rc-tools run precommit",
|
||||||
"less": "rc-tools run less",
|
"less": "rc-tools run less",
|
||||||
"gh-pages": "rc-tools run gh-pages",
|
"gh-pages": "rc-tools run gh-pages",
|
||||||
"history": "rc-tools run history",
|
"history": "rc-tools run history",
|
||||||
"start": "node-dev --harmony node_modules/.bin/rc-server",
|
"start": "node --harmony node_modules/.bin/rc-server",
|
||||||
"publish": "spm publish && rc-tools run tag",
|
"publish": "rc-tools run tag",
|
||||||
"lint": "rc-tools run lint",
|
"lint": "rc-tools run lint",
|
||||||
"test": "",
|
"saucelabs": "node --harmony node_modules/.bin/rc-tools run saucelabs",
|
||||||
"saucelabs": "rc-tools run saucelabs",
|
"browser-test": "node --harmony node_modules/.bin/rc-tools run browser-test",
|
||||||
"browser-test": "rc-tools run browser-test",
|
"browser-test-cover": "node --harmony node_modules/.bin/rc-tools run browser-test-cover"
|
||||||
"browser-test-cover": "rc-tools run browser-test-cover"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"expect.js": "0.3.x",
|
"expect.js": "0.3.x",
|
||||||
"precommit-hook": "1.x",
|
"precommit-hook": "^1.0.7",
|
||||||
"rc-server": "2.x",
|
"rc-server": "3.x",
|
||||||
"rc-tools": "2.x",
|
"rc-tools": "3.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"
|
||||||
"css-loader": "^0.9.1"
|
|
||||||
},
|
},
|
||||||
"precommit": [
|
"precommit": [
|
||||||
"lint",
|
"precommit"
|
||||||
"less"
|
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"rc-tooltip": "^2.4.0",
|
||||||
"rc-util": "^2.0.2"
|
"rc-util": "^2.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+135
-75
@@ -1,17 +1,16 @@
|
|||||||
/** @jsx React.DOM */
|
'use strict';
|
||||||
|
|
||||||
var React = require('react');
|
var React = require('react');
|
||||||
|
var Tooltip = require('rc-tooltip');
|
||||||
var DomUtils = require('rc-util').Dom;
|
var DomUtils = require('rc-util').Dom;
|
||||||
|
|
||||||
function pauseEvent(e) {
|
function pauseEvent(e) {
|
||||||
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) {
|
||||||
@@ -29,6 +28,7 @@ var Slider = React.createClass({
|
|||||||
value: React.PropTypes.number,
|
value: React.PropTypes.number,
|
||||||
index: React.PropTypes.number,
|
index: React.PropTypes.number,
|
||||||
marks: React.PropTypes.array,
|
marks: React.PropTypes.array,
|
||||||
|
isIncluded: React.PropTypes.bool,
|
||||||
className: React.PropTypes.string,
|
className: React.PropTypes.string,
|
||||||
disabled: React.PropTypes.bool,
|
disabled: React.PropTypes.bool,
|
||||||
onBeforeChange: React.PropTypes.func,
|
onBeforeChange: React.PropTypes.func,
|
||||||
@@ -43,6 +43,7 @@ var Slider = React.createClass({
|
|||||||
step: 1,
|
step: 1,
|
||||||
value: 0,
|
value: 0,
|
||||||
marks: [],
|
marks: [],
|
||||||
|
isIncluded: true,
|
||||||
className: 'rc-slider',
|
className: 'rc-slider',
|
||||||
disabled: false,
|
disabled: false,
|
||||||
index: 0
|
index: 0
|
||||||
@@ -59,8 +60,6 @@ var Slider = React.createClass({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
upperBound: 0,
|
|
||||||
sliderLength: 0,
|
|
||||||
value: value,
|
value: value,
|
||||||
active: props.disabled ? '' : ((value > props.min || props.index > 0) ? 'active' : '')
|
active: props.disabled ? '' : ((value > props.min || props.index > 0) ? 'active' : '')
|
||||||
};
|
};
|
||||||
@@ -71,29 +70,20 @@ var Slider = React.createClass({
|
|||||||
this.state.value = this._trimAlignValue(value, newProps);
|
this.state.value = this._trimAlignValue(value, newProps);
|
||||||
},
|
},
|
||||||
|
|
||||||
componentDidMount: function() {
|
|
||||||
this._onHandleResizeListener = DomUtils.addEventListener(window, 'resize', this.handleResize);
|
|
||||||
this.handleResize();
|
|
||||||
},
|
|
||||||
|
|
||||||
componentWillUnmount: function() {
|
|
||||||
if (this._onHandleResizeListener) {
|
|
||||||
this._onHandleResizeListener.remove();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
getValue: function() {
|
getValue: function() {
|
||||||
return this.state.value;
|
return this.state.value;
|
||||||
},
|
},
|
||||||
|
|
||||||
getIndex: function() {
|
getIndex: function() {
|
||||||
var props = this.props;
|
var props = this.props;
|
||||||
if (props.marks.length === 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
var value = this.state.value;
|
var value = this.state.value;
|
||||||
var unit = (props.max - props.min) / (props.marks.length - 1);
|
|
||||||
return Math.floor(value / unit);
|
if (props.marks.length === 0) {
|
||||||
|
return Math.floor((value - props.min) / props.step);
|
||||||
|
} else {
|
||||||
|
var unit = ((props.max - props.min) / (props.marks.length - 1)).toFixed(5);
|
||||||
|
return Math.ceil(value / unit);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
_trimAlignValue: function(val, props) {
|
_trimAlignValue: function(val, props) {
|
||||||
@@ -120,18 +110,17 @@ var Slider = React.createClass({
|
|||||||
|
|
||||||
_calcOffset: function(value) {
|
_calcOffset: function(value) {
|
||||||
var ratio = (value - this.props.min) / (this.props.max - this.props.min);
|
var ratio = (value - this.props.min) / (this.props.max - this.props.min);
|
||||||
return ratio * this.state.upperBound;
|
return ratio * 100 + '%';
|
||||||
},
|
},
|
||||||
|
|
||||||
_calcValue: function(offset) {
|
_calcValue: function(offset) {
|
||||||
var ratio = offset / this.state.upperBound;
|
var ratio = offset / this.getSliderLength();
|
||||||
return ratio * (this.props.max - this.props.min) + this.props.min;
|
return ratio * (this.props.max - this.props.min) + this.props.min;
|
||||||
},
|
},
|
||||||
|
|
||||||
_calValueByPos: function (position, callback) {
|
_calValueByPos: function (position, callback) {
|
||||||
var pixelOffset = position - this.state.sliderStart;
|
var pixelOffset = position - this.getSliderStart();
|
||||||
// pixelOffset -= (this.state.handleSize / 2);
|
// pixelOffset -= (this.state.handleSize / 2);
|
||||||
|
|
||||||
var nextValue = this._trimAlignValue(this._calcValue(pixelOffset));
|
var nextValue = this._trimAlignValue(this._calcValue(pixelOffset));
|
||||||
|
|
||||||
this.setState({value: nextValue, active: 'active'}, callback);
|
this.setState({value: nextValue, active: 'active'}, callback);
|
||||||
@@ -141,6 +130,11 @@ var Slider = React.createClass({
|
|||||||
return e.pageX || (e.clientX + document.documentElement.scrollLeft);
|
return e.pageX || (e.clientX + document.documentElement.scrollLeft);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
_getTouchPosition: function (e) {
|
||||||
|
var touch = e.touches[0];
|
||||||
|
return touch.pageX;
|
||||||
|
},
|
||||||
|
|
||||||
_triggerEvents: function(event) {
|
_triggerEvents: function(event) {
|
||||||
var props = this.props;
|
var props = this.props;
|
||||||
var hasMarks = props.marks && props.marks.length > 0;
|
var hasMarks = props.marks && props.marks.length > 0;
|
||||||
@@ -149,17 +143,27 @@ var Slider = React.createClass({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
_addEventHandles: function() {
|
_addEventHandles: function(type) {
|
||||||
this._onMouseMoveListener = DomUtils.addEventListener(document, 'mousemove', this._onMouseMove);
|
if (type === 'touch') {
|
||||||
this._onMouseUpListener = DomUtils.addEventListener(document, 'mouseup', this._onMouseUp);
|
// 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);
|
||||||
_removeEventHandles: function () {
|
|
||||||
if (this._onMouseMoveListener) {
|
|
||||||
this._onMouseMoveListener.remove();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this._onMouseUpListener) {
|
if (type === 'mouse') {
|
||||||
|
this._onMouseMoveListener = DomUtils.addEventListener(document, 'mousemove', this._onMouseMove);
|
||||||
|
this._onMouseUpListener = DomUtils.addEventListener(document, 'mouseup', this._onMouseUp);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_removeEventHandles: function (type) {
|
||||||
|
if (type === 'touch') {
|
||||||
|
this._onTouchMoveListener.remove();
|
||||||
|
this._onTouchUpListener.remove();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (type === 'mouse') {
|
||||||
|
this._onMouseMoveListener.remove();
|
||||||
this._onMouseUpListener.remove();
|
this._onMouseUpListener.remove();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -177,18 +181,37 @@ var Slider = React.createClass({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
_end: function() {
|
_end: function(type) {
|
||||||
this._removeEventHandles();
|
this._removeEventHandles(type);
|
||||||
this.setState(this._triggerEvents.bind(this, 'onAfterChange'));
|
this.setState(this._triggerEvents.bind(this, 'onAfterChange'));
|
||||||
},
|
},
|
||||||
|
|
||||||
_onMouseUp: function() {
|
_onMouseUp: function() {
|
||||||
this._end();
|
this._end('mouse');
|
||||||
|
},
|
||||||
|
|
||||||
|
_onTouchUp: function() {
|
||||||
|
this._end('touch');
|
||||||
},
|
},
|
||||||
|
|
||||||
_onMouseMove: function(e) {
|
_onMouseMove: function(e) {
|
||||||
pauseEvent(e);
|
|
||||||
var position = this._getMousePosition(e);
|
var position = this._getMousePosition(e);
|
||||||
|
this._handleMove(e, position);
|
||||||
|
},
|
||||||
|
|
||||||
|
_onTouchMove: function(e) {
|
||||||
|
if (e.touches.length > 1 || (e.type === 'touchend' && e.touches.length > 0)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var position = this._getTouchPosition(e);
|
||||||
|
|
||||||
|
this._handleMove(e, position);
|
||||||
|
},
|
||||||
|
|
||||||
|
_handleMove: function(e, position) {
|
||||||
|
pauseEvent(e);
|
||||||
|
// var position = this._getMousePosition(e);
|
||||||
var props = this.props;
|
var props = this.props;
|
||||||
var state = this.state;
|
var state = this.state;
|
||||||
|
|
||||||
@@ -197,28 +220,42 @@ var Slider = React.createClass({
|
|||||||
|
|
||||||
var diffPosition = position - state.startPosition;
|
var diffPosition = position - state.startPosition;
|
||||||
|
|
||||||
var diffValue = diffPosition / (state.sliderLength) * (props.max - props.min);
|
var diffValue = diffPosition / this.getSliderLength() * (props.max - props.min);
|
||||||
var newValue = this._trimAlignValue(state.startValue + diffValue);
|
var newValue = this._trimAlignValue(state.startValue + diffValue);
|
||||||
|
|
||||||
value = newValue;
|
value = newValue;
|
||||||
|
|
||||||
if (newValue !== oldValue) {
|
if (newValue !== oldValue) {
|
||||||
this.setState({value: value, active: 'active'} ,this._triggerEvents.bind(this, 'onChange'));
|
this.setState({value: value, active: 'active'}, this._triggerEvents.bind(this, 'onChange'));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
handleResize: function() {
|
getSliderLength: function() {
|
||||||
|
var slider = this.refs.slider;
|
||||||
|
if (!slider) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return slider.getDOMNode().clientWidth;
|
||||||
|
},
|
||||||
|
|
||||||
|
getSliderStart: function() {
|
||||||
var slider = this.refs.slider.getDOMNode();
|
var slider = this.refs.slider.getDOMNode();
|
||||||
var rect = slider.getBoundingClientRect();
|
var rect = slider.getBoundingClientRect();
|
||||||
|
|
||||||
var sliderMin = rect.left;
|
return rect.left;
|
||||||
var sliderMax = rect.right;
|
},
|
||||||
|
|
||||||
this.setState({
|
handleTouchStart: function(e) {
|
||||||
upperBound: slider.clientWidth,
|
if (this.props.disabled || e.touches.length > 1 || (e.type === 'touchend' && e.touches.length > 0)) {
|
||||||
sliderLength: Math.abs(sliderMax - sliderMin),
|
return;
|
||||||
sliderStart: sliderMin
|
}
|
||||||
});
|
|
||||||
|
var position = this._getTouchPosition(e);
|
||||||
|
this.startPosition = position;
|
||||||
|
this._start(position);
|
||||||
|
this._addEventHandles('touch');
|
||||||
|
pauseEvent(e);
|
||||||
},
|
},
|
||||||
|
|
||||||
handleMouseDown: function() {
|
handleMouseDown: function() {
|
||||||
@@ -228,7 +265,7 @@ var Slider = React.createClass({
|
|||||||
}
|
}
|
||||||
var position = this._getMousePosition(e);
|
var position = this._getMousePosition(e);
|
||||||
this._start(position);
|
this._start(position);
|
||||||
this._addEventHandles();
|
this._addEventHandles('mouse');
|
||||||
pauseEvent(e);
|
pauseEvent(e);
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@@ -238,13 +275,14 @@ var Slider = React.createClass({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var position = this._getMousePosition(e);
|
var position = this._getMousePosition(e);
|
||||||
this._calValueByPos(position,
|
this._calValueByPos(position,
|
||||||
() => {
|
() => {
|
||||||
this._triggerEvents('onChange');
|
this._triggerEvents('onChange');
|
||||||
this._start(position);
|
this._start(position);
|
||||||
this._addEventHandles();
|
this._addEventHandles('mouse');
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
pauseEvent(e);
|
pauseEvent(e);
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -252,23 +290,28 @@ var Slider = React.createClass({
|
|||||||
var props = this.props;
|
var props = this.props;
|
||||||
var marksLen = props.marks.length;
|
var marksLen = props.marks.length;
|
||||||
var stepNum = marksLen > 0 ? marksLen : Math.floor((props.max - props.min) / props.step) + 1;
|
var stepNum = marksLen > 0 ? marksLen : Math.floor((props.max - props.min) / props.step) + 1;
|
||||||
var unit = this.state.sliderLength / (stepNum - 1);
|
var unit = 100 / (stepNum - 1);
|
||||||
|
|
||||||
var prefixCls = props.className;
|
var prefixCls = props.className;
|
||||||
var stepClassName = prefixClsFn(prefixCls, 'step');
|
var stepClassName = prefixClsFn(prefixCls, 'step');
|
||||||
|
|
||||||
var elements = [];
|
var elements = [];
|
||||||
for (var i = 0; i < stepNum; i++) {
|
for (var i = 0; i < stepNum; i++) {
|
||||||
var offset = unit * i;
|
var offset = unit * i + '%';
|
||||||
var style = {
|
var style = {
|
||||||
left: offset.toFixed(5)
|
left: offset
|
||||||
};
|
};
|
||||||
var className = prefixClsFn(prefixCls, 'dot');
|
var className = prefixClsFn(prefixCls, 'dot');
|
||||||
if (i <= this.getIndex() || (this._calcValue(offset) <= this.getValue())) {
|
if (props.isIncluded) {
|
||||||
className = prefixClsFn(prefixCls, 'dot', 'dot-active');
|
if (i <= this.getIndex()) {
|
||||||
|
className = prefixClsFn(prefixCls, 'dot', 'dot-active');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
className = (i === this.getIndex()) ? prefixClsFn(prefixCls, 'dot', 'dot-active') : className;
|
||||||
}
|
}
|
||||||
|
|
||||||
elements[i] = (
|
elements[i] = (
|
||||||
<span className={className} style={style} ref={'step'+i}></span>
|
<span className={className} style={style} ref={'step' + i}></span>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -282,25 +325,28 @@ var Slider = React.createClass({
|
|||||||
renderMark: function(i) {
|
renderMark: function(i) {
|
||||||
var marks = this.props.marks;
|
var marks = this.props.marks;
|
||||||
var marksLen = marks.length;
|
var marksLen = marks.length;
|
||||||
var unit = this.state.sliderLength / (marksLen - 1);
|
var unit = 100 / (marksLen - 1);
|
||||||
var offset = unit * i;
|
var offset = unit * i;
|
||||||
|
|
||||||
var style = {
|
var style = {
|
||||||
width: (unit / 2).toFixed(5)
|
width: unit / 2 + '%'
|
||||||
};
|
};
|
||||||
|
|
||||||
if (i === (marksLen - 1)) {
|
if (i === marksLen - 1) {
|
||||||
style.right = '0';
|
style.right = -unit / 4 + '%';
|
||||||
style.width = 'auto';
|
} else {
|
||||||
}else {
|
style.left = i > 0 ? offset - unit / 4 + '%' : -unit / 4 + '%';
|
||||||
style.left = (i > 0 ? (offset - (unit / 4)).toFixed(5) : offset);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var prefixCls = this.props.className;
|
var prefixCls = this.props.className;
|
||||||
var className = prefixClsFn(prefixCls, 'mark-text');
|
var className = prefixClsFn(prefixCls, 'mark-text');
|
||||||
|
|
||||||
if (i <= this.getIndex()) {
|
if (this.props.isIncluded) {
|
||||||
className = prefixClsFn(prefixCls, 'mark-text', 'mark-text-active');
|
if (i <= this.getIndex()) {
|
||||||
|
className = prefixClsFn(prefixCls, 'mark-text', 'mark-text-active');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
className = (i === this.getIndex()) ? prefixClsFn(prefixCls, 'mark-text', 'mark-text-active') : className;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -338,13 +384,26 @@ var Slider = React.createClass({
|
|||||||
className = prefixClsFn(prefixCls, 'handle', 'handle-active');
|
className = prefixClsFn(prefixCls, 'handle', 'handle-active');
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
var handle = <div className={className}
|
||||||
<a className={className}
|
|
||||||
ref = "handle"
|
ref = "handle"
|
||||||
style = {handleStyle}
|
style = {handleStyle}
|
||||||
href = "#"
|
href = "#"
|
||||||
onMouseDown={this.handleMouseDown}></a>
|
onMouseDown = {this.handleMouseDown}
|
||||||
);
|
onTouchStart = {this.handleTouchStart}></div>;
|
||||||
|
|
||||||
|
if (this.props.marks.length > 0) {
|
||||||
|
return handle;
|
||||||
|
} else {
|
||||||
|
return (
|
||||||
|
<Tooltip
|
||||||
|
placement="top"
|
||||||
|
overlay={<span>{this.state.value}</span>}
|
||||||
|
delay={0}
|
||||||
|
prefixCls={prefixClsFn(prefixCls, 'tooltip')}>
|
||||||
|
{handle}
|
||||||
|
</Tooltip>
|
||||||
|
);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
renderTrack: function(offset) {
|
renderTrack: function(offset) {
|
||||||
@@ -367,13 +426,13 @@ var Slider = React.createClass({
|
|||||||
var value = state.value;
|
var value = state.value;
|
||||||
var offset = this._calcOffset(value);
|
var offset = this._calcOffset(value);
|
||||||
|
|
||||||
var track = this.renderTrack(offset);
|
var track = this.props.isIncluded ? this.renderTrack(offset) : null;
|
||||||
var handles = this.renderHandle(offset);
|
var handles = this.renderHandle(offset);
|
||||||
var steps = (props.step > 1 || props.marks.length > 0) ? this.renderSteps() : null;
|
var steps = (props.step > 1 || props.marks.length > 0) ? this.renderSteps() : null;
|
||||||
var sliderMarks = (props.marks.length > 0) ? this.renderMarks() : null;
|
var sliderMarks = (props.marks.length > 0) ? this.renderMarks() : null;
|
||||||
|
|
||||||
var prefixCls = props.className;
|
var prefixCls = props.className;
|
||||||
var sliderClassName = props.disabled ? prefixClsFn(prefixCls, 'disabled') : prefixCls;
|
var sliderClassName = props.disabled ? prefixCls + ' ' + prefixClsFn(prefixCls, 'disabled') : prefixCls;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={sliderClassName} ref="slider" onMouseDown={this.handleSliderMouseDown}>
|
<div className={sliderClassName} ref="slider" onMouseDown={this.handleSliderMouseDown}>
|
||||||
@@ -381,6 +440,7 @@ var Slider = React.createClass({
|
|||||||
{handles}
|
{handles}
|
||||||
{steps}
|
{steps}
|
||||||
{sliderMarks}
|
{sliderMarks}
|
||||||
|
{this.props.children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
module.exports = require('./Slider');
|
||||||
+15
-14
@@ -1,4 +1,5 @@
|
|||||||
/** @jsx React.DOM */
|
'use strict';
|
||||||
|
|
||||||
var expect = require('expect.js');
|
var expect = require('expect.js');
|
||||||
var Slider = require('../index.js');
|
var Slider = require('../index.js');
|
||||||
var React = require('react');
|
var React = require('react');
|
||||||
@@ -57,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