Files
AstralRinth/packages/ui/src/components/base/Slider.vue
T
Arthur 76ba11d966 Settings ui fixes (#5352)
* Fix tabbed modal icon size

* Fix slider input being unstyled

* Refactor slider component to use ui components and tailwind

* Pnpm fix my beloved

---------

Co-authored-by: Creeperkatze <178587183+Creeperkatze@users.noreply.github.com>
2026-02-10 23:36:36 +00:00

192 lines
4.1 KiB
Vue

<template>
<div class="flex flex-row items-center w-full">
<div class="w-full relative">
<div class="absolute top-0 h-1/2 w-full">
<div
class="relative inline-block align-middle w-[calc(100%-0.75rem)] h-3 left-[calc(0.75rem/2)]"
>
<div
v-for="snapPoint in snapPoints"
:key="snapPoint"
class="absolute inline-block w-1 h-full rounded-sm -translate-x-1/2"
:class="{
'opacity-0': disabled,
}"
:style="{
left: ((snapPoint - min) / (max - min)) * 100 + '%',
backgroundColor:
snapPoint <= currentValue ? 'var(--color-brand)' : 'var(--color-base)',
}"
></div>
</div>
</div>
<input
ref="input"
v-model="currentValue"
type="range"
:min="min"
:max="max"
:step="step"
class="slider relative rounded-sm h-1 w-full p-0 min-h-0 shadow-none outline-none align-middle appearance-none"
:class="{
'opacity-50 cursor-not-allowed': disabled,
}"
:disabled="disabled"
:style="{
'--current-value': currentValue,
'--min-value': min,
'--max-value': max,
}"
@input="onInputWithSnap(($event.target as HTMLInputElement).value)"
/>
<div class="flex flex-row justify-between text-xs m-0">
<span> {{ min }} {{ unit }} </span>
<span> {{ max }} {{ unit }} </span>
</div>
</div>
<StyledInput
:model-value="String(currentValue)"
type="number"
class="w-24 ml-3"
:disabled="disabled"
:min="min"
:max="max"
:step="step"
@change="onInput(($event.target as HTMLInputElement).value)"
/>
</div>
</template>
<script setup lang="ts">
import { ref, watch } from 'vue'
import StyledInput from './StyledInput.vue'
const emit = defineEmits<{ 'update:modelValue': [number] }>()
interface Props {
modelValue?: number
min: number
max: number
step?: number
forceStep?: boolean
snapPoints?: number[]
snapRange?: number
disabled?: boolean
unit?: string
}
const props = withDefaults(defineProps<Props>(), {
modelValue: 0,
min: 0,
max: 100,
step: 10,
forceStep: true,
snapPoints: () => [],
snapRange: 100,
disabled: false,
unit: '',
})
const currentValue = ref(Math.max(props.min, props.modelValue))
watch(
() => props.modelValue,
(newValue) => {
currentValue.value = Math.max(props.min, newValue ?? props.min)
},
)
const inputValueValid = (inputValue: number) => {
let newValue = inputValue || props.min
if (props.forceStep) {
newValue -= newValue % props.step
}
newValue = Math.max(props.min, Math.min(newValue, props.max))
currentValue.value = newValue
emit('update:modelValue', currentValue.value)
}
const onInputWithSnap = (value: string) => {
let parsedValue = parseInt(value)
for (const snapPoint of props.snapPoints) {
const distance = Math.abs(snapPoint - parsedValue)
if (distance < props.snapRange) {
parsedValue = snapPoint
}
}
inputValueValid(parsedValue)
}
const onInput = (value: string) => {
inputValueValid(parseInt(value))
}
</script>
<style lang="scss" scoped>
.slider {
-webkit-appearance: none;
appearance: none;
background: linear-gradient(
to right,
var(--color-brand) 0%,
var(--color-brand)
calc(
(var(--current-value) - var(--min-value)) / (var(--max-value) - var(--min-value)) * 100%
),
var(--color-base)
calc(
(var(--current-value) - var(--min-value)) / (var(--max-value) - var(--min-value)) * 100%
),
var(--color-base) 100%
)
100% 100% no-repeat;
&::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 0.75rem;
height: 0.75rem;
background: var(--color-brand);
border-radius: 50%;
transition:
width 0.2s,
height 0.2s;
@media (prefers-reduced-motion: reduce) {
transition: none;
}
}
&::-moz-range-thumb {
border: none;
width: 0.75rem;
height: 0.75rem;
background: var(--color-brand);
border-radius: 50%;
transition:
width 0.2s,
height 0.2s;
@media (prefers-reduced-motion: reduce) {
transition: none;
}
}
&:hover:not(:disabled)::-webkit-slider-thumb,
&:hover:not(:disabled)::-moz-range-thumb {
width: 1rem;
height: 1rem;
}
&:disabled {
pointer-events: none;
}
}
</style>