This commit is contained in:
Chris Kruining 2025-05-27 16:15:56 +02:00
parent fbc040c317
commit 826a30f95f
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
19 changed files with 430 additions and 170 deletions

View file

@ -1,19 +1,32 @@
import { Component } from "solid-js";
import { useVideo } from "../context";
import css from "./seekBar.module.css";
interface SeekBarProps {
video: HTMLVideoElement | undefined;
}
interface SeekBarProps {}
export const SeekBar: Component<SeekBarProps> = () => {
const video = useVideo();
return (
<>
<div class={css.container}>
<span class={css.time}>{formatTime(video.currentTime())}</span>
<span class={css.duration}>{formatTime(video.duration())}</span>
<input
class={css.bar}
list="chapters"
type="range"
max={duration().toFixed(0)}
value={currentTime().toFixed(0)}
oninput={(e) => setTime(e.target.valueAsNumber)}
step="1"
max={video.duration().toFixed(2)}
value={video.currentTime().toFixed(2)}
data-value={((video.currentTime() / video.duration()) * 100).toFixed(2)}
oninput={(e) => video.setTime(e.target.valueAsNumber)}
step="0.01"
/>
<progress
class={css.buffered}
max={video.duration().toFixed(2)}
value={video.buffered().toFixed(2)}
/>
<datalist id="chapters">
@ -21,6 +34,20 @@ export const SeekBar: Component<SeekBarProps> = () => {
<option value="200">Chapter 2</option>
<option value="300">Chapter 3</option>
</datalist>
</>
</div>
);
};
const formatTime = (subject: number) => {
if (Number.isNaN(subject)) {
return "";
}
const hours = Math.floor(subject / 3600);
const minutes = Math.floor((subject % 3600) / 60);
const seconds = Math.floor(subject % 60);
const sections = hours !== 0 ? [hours, minutes, seconds] : [minutes, seconds];
return sections.map((section) => String(section).padStart(2, "0")).join(":");
};