Files
wehub-resource-sync adf0d17497
publish / version_or_publish (push) Has been cancelled
storybook-build / changes (push) Has been cancelled
storybook-build / :storybook-build (push) Has been cancelled
Sync Gradio Skills to Hugging Face / sync-skills (push) Has been cancelled
functional / changes (push) Has been cancelled
functional / build-frontend (push) Has been cancelled
functional / functional-test-SSR=false (push) Has been cancelled
functional / functional-reload (push) Has been cancelled
js / changes (push) Has been cancelled
js / js-test (push) Has been cancelled
docs-build / changes (push) Has been cancelled
docs-build / docs-build (push) Has been cancelled
docs-build / website-build (push) Has been cancelled
functional / functional-test-SSR=true (push) Has been cancelled
hygiene / hygiene-test (push) Has been cancelled
python / changes (push) Has been cancelled
python / build (push) Has been cancelled
python / test-ubuntu-latest-flaky (push) Has been cancelled
python / test-ubuntu-latest-not-flaky (push) Has been cancelled
python / test-windows-latest-flaky (push) Has been cancelled
python / test-windows-latest-not-flaky (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:17:32 +08:00

87 lines
1.7 KiB
Svelte

<script lang="ts">
import { onMount } from "svelte";
import WaveSurfer from "wavesurfer.js";
let {
currentVolume = $bindable(),
show_volume_slider = $bindable(),
waveform
}: {
currentVolume?: number;
show_volume_slider?: boolean;
waveform: WaveSurfer | undefined;
} = $props();
let volumeElement: HTMLInputElement;
onMount(() => {
adjustSlider();
});
const adjustSlider = (): void => {
let slider = volumeElement;
if (!slider) return;
slider.style.background = `linear-gradient(to right, var(--color-accent) ${
(currentVolume ?? 1) * 100
}%, var(--neutral-400) ${(currentVolume ?? 1) * 100}%)`;
};
$effect(() => {
currentVolume;
adjustSlider();
});
</script>
<input
bind:this={volumeElement}
id="volume"
class="volume-slider"
type="range"
min="0"
max="1"
step="0.01"
value={currentVolume ?? 1}
onfocusout={() => (show_volume_slider = false)}
oninput={(e) => {
if (e.target instanceof HTMLInputElement) {
currentVolume = parseFloat(e.target.value);
waveform?.setVolume(currentVolume);
}
}}
/>
<style>
.volume-slider {
-webkit-appearance: none;
appearance: none;
width: var(--size-20);
accent-color: var(--color-accent);
height: 4px;
cursor: pointer;
outline: none;
border-radius: 15px;
background-color: var(--neutral-400);
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
height: 15px;
width: 15px;
background-color: var(--color-accent);
border-radius: 50%;
border: none;
transition: 0.2s ease-in-out;
}
input[type="range"]::-moz-range-thumb {
height: 15px;
width: 15px;
background-color: var(--color-accent);
border-radius: 50%;
border: none;
transition: 0.2s ease-in-out;
}
</style>