forked from platypush/platypush
Support for range labels on <Slider>
This commit is contained in:
parent
f8aaab20f5
commit
bd59a5eefd
1 changed files with 48 additions and 16 deletions
|
@ -1,5 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
<label class="slider-wrapper">
|
<label class="slider-wrapper">
|
||||||
|
<span class="range-labels" :class="{'with-label': withLabel}" v-if="withRange">
|
||||||
|
<span class="label left" v-if="withRange" v-text="range[0]" />
|
||||||
|
<span class="label right" v-if="withRange" v-text="range[1]" />
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="slider-container">
|
||||||
<input class="slider"
|
<input class="slider"
|
||||||
type="range"
|
type="range"
|
||||||
:class="{'with-label': withLabel}"
|
:class="{'with-label': withLabel}"
|
||||||
|
@ -17,6 +23,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="thumb" ref="thumb"></div>
|
<div class="thumb" ref="thumb"></div>
|
||||||
<span class="label" v-if="withLabel" v-text="value" ref="label"></span>
|
<span class="label" v-if="withLabel" v-text="value" ref="label"></span>
|
||||||
|
</span>
|
||||||
</label>
|
</label>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -47,6 +54,11 @@ export default {
|
||||||
withLabel: {
|
withLabel: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
|
},
|
||||||
|
|
||||||
|
withRange: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -77,6 +89,7 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
if (this.value != null)
|
if (this.value != null)
|
||||||
this.update(this.value)
|
this.update(this.value)
|
||||||
|
this.$watch(() => this.value, (newValue) => this.update(newValue))
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -88,6 +101,13 @@ $label-width: 3em;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
.slider-container {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
.slider {
|
.slider {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -99,6 +119,18 @@ $label-width: 3em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.range-labels {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
&.with-label {
|
||||||
|
width: calc(100% - $label-width);
|
||||||
|
}
|
||||||
|
|
||||||
|
.right {
|
||||||
|
@extend .pull-right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.track {
|
.track {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 0.75em;
|
height: 0.75em;
|
||||||
|
|
Loading…
Reference in a new issue