aboutsummaryrefslogtreecommitdiffstats
path: root/ui/responsive/app/components/range-slider.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-07-04 07:09:17 +0800
committerDan Finlay <dan@danfinlay.com>2017-07-04 07:16:53 +0800
commite285f2cae958437160f86171f1fccfec66799883 (patch)
tree49cf0e2d1805d0c36d53ae6920d63f614da1e9ad /ui/responsive/app/components/range-slider.js
parent5eb3d5d485b17b98b19443d8def2f03dec9b38ef (diff)
downloadtangerine-wallet-browser-e285f2cae958437160f86171f1fccfec66799883.tar.gz
tangerine-wallet-browser-e285f2cae958437160f86171f1fccfec66799883.tar.zst
tangerine-wallet-browser-e285f2cae958437160f86171f1fccfec66799883.zip
Get duplicate UI template working
Diffstat (limited to 'ui/responsive/app/components/range-slider.js')
-rw-r--r--ui/responsive/app/components/range-slider.js58
1 files changed, 58 insertions, 0 deletions
diff --git a/ui/responsive/app/components/range-slider.js b/ui/responsive/app/components/range-slider.js
new file mode 100644
index 000000000..823f5eb01
--- /dev/null
+++ b/ui/responsive/app/components/range-slider.js
@@ -0,0 +1,58 @@
+const Component = require('react').Component
+const h = require('react-hyperscript')
+const inherits = require('util').inherits
+
+module.exports = RangeSlider
+
+inherits(RangeSlider, Component)
+function RangeSlider () {
+ Component.call(this)
+}
+
+RangeSlider.prototype.render = function () {
+ const state = this.state || {}
+ const props = this.props
+ const onInput = props.onInput || function () {}
+ const name = props.name
+ const {
+ min = 0,
+ max = 100,
+ increment = 1,
+ defaultValue = 50,
+ mirrorInput = false,
+ } = this.props.options
+ const {container, input, range} = props.style
+
+ return (
+ h('.flex-row', {
+ style: container,
+ }, [
+ h('input', {
+ type: 'range',
+ name: name,
+ min: min,
+ max: max,
+ step: increment,
+ style: range,
+ value: state.value || defaultValue,
+ onChange: mirrorInput ? this.mirrorInputs.bind(this, event) : onInput,
+ }),
+
+ // Mirrored input for range
+ mirrorInput ? h('input.large-input', {
+ type: 'number',
+ name: `${name}Mirror`,
+ min: min,
+ max: max,
+ value: state.value || defaultValue,
+ step: increment,
+ style: input,
+ onChange: this.mirrorInputs.bind(this, event),
+ }) : null,
+ ])
+ )
+}
+
+RangeSlider.prototype.mirrorInputs = function (event) {
+ this.setState({value: event.target.value})
+}