react-superslider
v1.0.8
Published
A lightweight react component that acts as a HTML5 input range slider polyfill, forked from whoisandie/react-rangeslider
Downloads
5
Maintainers
Readme
v1.0.8
- add fillDecorate, trackerDecorate, handleDecorate to decorate the fill, tracker, handle styles.
v1.0.7
- change version to v1.0.7
v1.0.6(unpublished)
change version to v1.0.6
published the wrong code to this version, after unpublished, find npm can't use the version unpublished any more. so have v1.0.7. The reason is when I push my code to github, I forgot to change my version number in package.json, so in some commits, you only see the version number changed... It is a bad habit.
v1.0.5
add another layer __tracker div into the rendered elements.
have a exploration of how to write theme productively, finally decide to use border-image on the superslider pseudo :before div. Using absolute position, it can be placed under __fill and __tracker.
v1.1.0 (unpublished, tend to use v1.0.5)
- try to change the method of calculating the width of slider using clientWidth/clientHeight instead the offsetWidth/offsetHeight(contain border's width/height), and decorate the border-image on slider div. The issue is border-image is also border, it makes handle can't reach the start and end points. So using absolute position replaced.
v1.0.4
fix peerDependencies issue. As a react component, it should declare a react peerDependence;
add theme support; make a default theme.
named it from rangeslider to superslider
Forked start from v1.0.3 from https://github.com/whoisandie/react-rangeslider
React Rangeslider
A lightweight responsive react range slider component.
Check out examples.
Install
Install via npm
(use --save
to include it in your package.json)
$ npm install react-rangeslider --save
Usage
React Rangeslider is bundled with a single slider component. You can require them in plain old ES5 syntax or import them in ES6 syntax.
...plain old ES5
var React = require('react');
var Slider = require('react-rangeslider');
var Volume = React.createClass({
getInitialState: function(){
return {
value: 10,
};
}
handleChange: function(value) {
this.setState({
value: value,
});
}
render: function() {
return (
<Slider
value={value}
orientation="vertical"
onChange={this.handleChange} />
);
}
});
module.exports = Volume;
... or use ES6 syntax
import React, { Component } from 'react';
import Slider from 'react-rangeslider';
export default Volume extends Component {
constructor(props, context) {
super(props, context);
this.state = {
value: 10 /** Start value **/
};
}
handleChange(value) {
this.setState({
value: value
});
}
render() {
return (
<Slider
value={value}
orientation="vertical"
onChange={this.handleChange} />
);
}
}
There's also a umd version available at lib/umd
. The component is available on window.ReactRangeslider
. To style the slider, please refer the rangeslider styles in demo/demo.less
file.
API
Rangeslider is bundled with a single component, that accepts data and callbacks only as props
.
Component
import Slider from 'react-rangeslider'
// inside render
<Slider
min={String or Number}
max={String or Number}
step={String or Number}
orientation={String}
value={Number}
onChange={Function} />
Props
Prop | Default | Description
--------- | ------- | -----------
min
| 0 | minimum value the slider can hold
max
| 100 | maximum value the slider can hold
step
| 1 | step in which increments/decrements have to be made
orientation
| horizontal | orientation of the slider
value
| - | current value of the slider
onChange
| - | function the slider takes, current value of the slider as the first parameter
Issues
Feel free to contribute. Submit a Pull Request or open an issue for further discussion.
Todo
- Ship styles along with component
- Tests using Enzyme
License
MIT © whoisandie