2020-11-25 13:31:34 +01:00
|
|
|
<template>
|
2021-11-28 12:07:37 +01:00
|
|
|
<div class="timctyfi" :class="{ disabled }">
|
|
|
|
<div class="label"><slot name="label"></slot></div>
|
|
|
|
<div v-panel class="body">
|
|
|
|
<div ref="containerEl" class="container">
|
|
|
|
<div class="track">
|
|
|
|
<div class="highlight" :style="{ width: (steppedValue * 100) + '%' }"></div>
|
|
|
|
</div>
|
|
|
|
<div v-if="steps" class="ticks">
|
|
|
|
<div v-for="i in (steps + 1)" class="tick" :style="{ left: (((i - 1) / steps) * 100) + '%' }"></div>
|
|
|
|
</div>
|
|
|
|
<div ref="thumbEl" v-tooltip="textConverter(finalValue)" class="thumb" :style="{ left: thumbPosition + 'px' }" @mousedown="onMousedown" @touchstart="onMousedown"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-25 13:31:34 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-12-04 12:35:08 +01:00
|
|
|
import { computed, defineComponent, onMounted, onUnmounted, ref, watch } from 'vue';
|
2021-11-28 12:07:37 +01:00
|
|
|
import * as os from '@/os';
|
2020-11-25 13:31:34 +01:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
props: {
|
2021-11-28 12:07:37 +01:00
|
|
|
modelValue: {
|
2020-11-25 13:31:34 +01:00
|
|
|
type: Number,
|
|
|
|
required: false,
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
disabled: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
min: {
|
|
|
|
type: Number,
|
|
|
|
required: false,
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
max: {
|
|
|
|
type: Number,
|
|
|
|
required: false,
|
|
|
|
default: 100
|
|
|
|
},
|
|
|
|
step: {
|
|
|
|
type: Number,
|
|
|
|
required: false,
|
|
|
|
default: 1
|
|
|
|
},
|
2021-09-29 17:50:45 +02:00
|
|
|
autofocus: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false
|
2021-11-28 12:07:37 +01:00
|
|
|
},
|
|
|
|
textConverter: {
|
|
|
|
type: Function,
|
|
|
|
required: false,
|
|
|
|
default: (v) => v.toString(),
|
|
|
|
},
|
2020-11-25 13:31:34 +01:00
|
|
|
},
|
2021-11-28 12:07:37 +01:00
|
|
|
|
|
|
|
setup(props, context) {
|
2021-12-04 12:35:08 +01:00
|
|
|
const containerEl = ref<HTMLElement>();
|
|
|
|
const thumbEl = ref<HTMLElement>();
|
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
const rawValue = ref((props.modelValue - props.min) / (props.max - props.min));
|
|
|
|
const steppedValue = computed(() => {
|
|
|
|
if (props.step) {
|
|
|
|
const step = props.step / (props.max - props.min);
|
|
|
|
return (step * Math.round(rawValue.value / step));
|
|
|
|
} else {
|
|
|
|
return rawValue.value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
const finalValue = computed(() => {
|
|
|
|
return (steppedValue.value * (props.max - props.min)) + props.min;
|
|
|
|
});
|
|
|
|
watch(finalValue, () => {
|
|
|
|
context.emit('update:modelValue', finalValue.value);
|
|
|
|
});
|
|
|
|
|
|
|
|
const thumbWidth = computed(() => {
|
|
|
|
if (thumbEl.value == null) return 0;
|
|
|
|
return thumbEl.value!.offsetWidth;
|
|
|
|
});
|
2021-12-04 12:35:08 +01:00
|
|
|
const thumbPosition = ref(0);
|
|
|
|
const calcThumbPosition = () => {
|
|
|
|
if (containerEl.value == null) {
|
|
|
|
thumbPosition.value = 0;
|
|
|
|
} else {
|
|
|
|
thumbPosition.value = (containerEl.value.offsetWidth - thumbWidth.value) * steppedValue.value;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
watch([steppedValue, containerEl], calcThumbPosition);
|
|
|
|
onMounted(() => {
|
|
|
|
const ro = new ResizeObserver((entries, observer) => {
|
|
|
|
calcThumbPosition();
|
|
|
|
});
|
|
|
|
ro.observe(containerEl.value);
|
|
|
|
onUnmounted(() => {
|
|
|
|
ro.disconnect();
|
|
|
|
});
|
2021-11-28 12:07:37 +01:00
|
|
|
});
|
2021-12-04 12:35:08 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
const steps = computed(() => {
|
|
|
|
if (props.step) {
|
|
|
|
return (props.max - props.min) / props.step;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const onMousedown = (ev: MouseEvent | TouchEvent) => {
|
|
|
|
ev.preventDefault();
|
|
|
|
|
|
|
|
const tooltipShowing = ref(true);
|
|
|
|
os.popup(import('@/components/ui/tooltip.vue'), {
|
|
|
|
showing: tooltipShowing,
|
|
|
|
text: computed(() => {
|
|
|
|
return props.textConverter(finalValue.value);
|
|
|
|
}),
|
|
|
|
source: thumbEl,
|
|
|
|
}, {}, 'closed');
|
|
|
|
|
|
|
|
const style = document.createElement('style');
|
|
|
|
style.appendChild(document.createTextNode('* { cursor: grabbing !important; } body * { pointer-events: none !important; }'));
|
|
|
|
document.head.appendChild(style);
|
|
|
|
|
|
|
|
const onDrag = (ev: MouseEvent | TouchEvent) => {
|
|
|
|
ev.preventDefault();
|
|
|
|
const containerRect = containerEl.value!.getBoundingClientRect();
|
|
|
|
const pointerX = ev.touches && ev.touches.length > 0 ? ev.touches[0].clientX : ev.clientX;
|
|
|
|
const pointerPositionOnContainer = pointerX - (containerRect.left + (thumbWidth.value / 2));
|
|
|
|
rawValue.value = Math.min(1, Math.max(0, pointerPositionOnContainer / (containerEl.value!.offsetWidth - thumbWidth.value)));
|
|
|
|
};
|
|
|
|
|
|
|
|
const onMouseup = () => {
|
|
|
|
document.head.removeChild(style);
|
|
|
|
tooltipShowing.value = false;
|
|
|
|
window.removeEventListener('mousemove', onDrag);
|
|
|
|
window.removeEventListener('touchmove', onDrag);
|
|
|
|
window.removeEventListener('mouseup', onMouseup);
|
|
|
|
window.removeEventListener('touchend', onMouseup);
|
|
|
|
};
|
|
|
|
|
|
|
|
window.addEventListener('mousemove', onDrag);
|
|
|
|
window.addEventListener('touchmove', onDrag);
|
|
|
|
window.addEventListener('mouseup', onMouseup, { once: true });
|
|
|
|
window.addEventListener('touchend', onMouseup, { once: true });
|
|
|
|
};
|
|
|
|
|
2020-11-25 13:31:34 +01:00
|
|
|
return {
|
2021-11-28 12:07:37 +01:00
|
|
|
rawValue,
|
|
|
|
finalValue,
|
|
|
|
steppedValue,
|
|
|
|
onMousedown,
|
|
|
|
containerEl,
|
|
|
|
thumbEl,
|
|
|
|
thumbPosition,
|
|
|
|
steps,
|
2020-11-25 13:31:34 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-11-28 12:07:37 +01:00
|
|
|
@use "sass:math";
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
.timctyfi {
|
2020-11-25 13:31:34 +01:00
|
|
|
position: relative;
|
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
> .label {
|
|
|
|
font-size: 0.85em;
|
|
|
|
padding: 0 0 8px 0;
|
|
|
|
user-select: none;
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-09-29 17:50:45 +02:00
|
|
|
}
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
> .caption {
|
|
|
|
font-size: 0.85em;
|
|
|
|
padding: 8px 0 0 0;
|
|
|
|
color: var(--fgTransparentWeak);
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
2021-09-29 17:50:45 +02:00
|
|
|
}
|
2021-11-28 12:07:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$thumbHeight: 20px;
|
|
|
|
$thumbWidth: 20px;
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
padding: 12px;
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
|
|
> .container {
|
|
|
|
position: relative;
|
|
|
|
height: $thumbHeight;
|
|
|
|
|
|
|
|
> .track {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: auto;
|
|
|
|
width: calc(100% - #{$thumbWidth});
|
|
|
|
height: 3px;
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
|
|
|
border-radius: 999px;
|
|
|
|
overflow: clip;
|
|
|
|
|
|
|
|
> .highlight {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
background: var(--accent);
|
|
|
|
opacity: 0.5;
|
|
|
|
transition: width 0.2s cubic-bezier(0,0,0,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .ticks {
|
|
|
|
$tickWidth: 3px;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: auto;
|
|
|
|
width: calc(100% - #{$thumbWidth});
|
|
|
|
|
|
|
|
> .tick {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: $tickWidth;
|
|
|
|
height: 3px;
|
|
|
|
margin-left: - math.div($tickWidth, 2);
|
|
|
|
background: var(--divider);
|
|
|
|
border-radius: 999px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .thumb {
|
|
|
|
position: absolute;
|
|
|
|
width: $thumbWidth;
|
|
|
|
height: $thumbHeight;
|
|
|
|
cursor: grab;
|
|
|
|
background: var(--accent);
|
|
|
|
border-radius: 999px;
|
|
|
|
transition: left 0.2s cubic-bezier(0,0,0,1);
|
2021-09-29 17:50:45 +02:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
&:hover {
|
|
|
|
background: var(--accentLighten);
|
|
|
|
}
|
|
|
|
}
|
2020-11-25 13:31:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|