You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import React from 'react'
|
|
|
|
|
|
|
|
export default class extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super()
|
|
|
|
this.handleChange = this.handleChange.bind(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
handleChange(e) {
|
|
|
|
this.props.onChange(`${e.target.value}px`)
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const minValue = this.props.minValue || 0
|
|
|
|
const maxValue = this.props.maxValue || 100
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="slider">
|
|
|
|
<span className="label">{this.props.label}</span>
|
|
|
|
<input
|
|
|
|
type="range"
|
|
|
|
defaultValue={this.props.value}
|
|
|
|
onChange={this.handleChange}
|
|
|
|
min={minValue}
|
|
|
|
max={maxValue}
|
|
|
|
/>
|
|
|
|
<div
|
|
|
|
className="slider-bg"
|
|
|
|
style={{
|
|
|
|
transform: `translate3d(${parseInt(this.props.value) *
|
|
|
|
1.0 /
|
|
|
|
maxValue *
|
|
|
|
100}%, 0px, 0px)`
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<style jsx>{`
|
|
|
|
.slider {
|
|
|
|
position: relative;
|
|
|
|
height: 32px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider:last-of-type {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
position: absolute;
|
|
|
|
left: 8px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider input {
|
|
|
|
opacity: 0;
|
|
|
|
cursor: ew-resize;
|
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider-bg {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
height: 32px;
|
|
|
|
width: 100%;
|
|
|
|
background: rgba(255, 255, 255, 0.165);
|
|
|
|
}
|
|
|
|
`}</style>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|