refactor bindings to directly use element

This commit is contained in:
Ollie Taylor
2023-02-22 23:41:29 +00:00
parent 4137cda798
commit f4e2e8d628
6 changed files with 235 additions and 223 deletions
+20 -26
View File
@@ -1,6 +1,6 @@
<script lang="ts">
import Audio from '$lib/components/audio/audio.svelte';
import { audio, _currentTime, _duration, _paused } from '$lib/components/audio/state';
import { audio } from '$lib/components/audio/store';
const sources = {
syntax: '/example-syntax.mp3',
@@ -8,52 +8,46 @@
} as const;
</script>
<pre>
{JSON.stringify($audio, null, 3)}
</pre>
<pre>{JSON.stringify($audio, null, 3)}</pre>
<h1>Demo</h1>
<Audio on:progress={(e) => console.log(e.detail)} autoplay={false} />
<progress
<Audio on:progress={(e) => console.log(e.detail)} />
<!-- <progress
style="width: 960px; max-width:100%"
data-paused={$_paused ? 'true' : 'false'}
max={$_duration}
value={$_currentTime}
/>
/> -->
<h5>Load Audio</h5>
<button type="button" on:click={() => audio.load(sources['syntax'], { paused: false })}
>Syntax</button
>
<button type="button" on:click={() => audio.load(sources['knomii'], { paused: false })}
>Knomii</button
>
<button type="button" on:click={() => audio.load(sources['syntax'])}>Syntax</button>
<button type="button" on:click={() => audio.load(sources['knomii'])}>Knomii</button>
<button type="button" on:click={() => audio.unload()}>None</button>
<h5>Custom audio controls</h5>
<h6>Play / Pause Actions</h6>
<button type="button" on:click={() => audio.play()}>Play</button>
<button type="button" on:click={() => audio.pause()}>Pause</button>
<button type="button" on:click={() => audio.pause('toggle')}>Toggle</button>
<h6>Audio Actions</h6>
<button type="button" on:click={audio.play}>Play</button>
<button type="button" on:click={audio.pause}>Pause</button>
<button type="button" on:click={audio.toggle_pause}>Toggle</button>
<button type="button" on:click={() => audio.mute()}>Mute</button>
<button type="button" on:click={() => audio.unmute()}>Unmute</button>
<button type="button" on:click={() => audio.mute('toggle')}>Toggle</button>
<h6>Seeking</h6>
<button type="button" on:click={() => audio.seek(30)}>Go to 30s</button>
<!-- <button type="button" on:click={() => (currentTime = currentTime + 5)}>Skip 5s</button>
<button type="button" on:click={() => (currentTime = currentTime - 5)}>Rewind 5s</button>
<button type="button" on:click={() => (currentTime = duration - 30)}>Go to 30s before end</button> -->
<button type="button" on:click={() => audio.seek(30)}>Go to 30s from start </button>
<button type="button" on:click={() => audio.seek(30, 'from-end')}>Go to 30s from end</button>
<button type="button" on:click={() => audio.skip(10, 'forward')}>Skip 10s</button>
<button type="button" on:click={() => audio.skip(10, 'backward')}>Rewind 10s</button>
<h6>Playback Rate</h6>
{#each [0.5, 1, 2, 3] as rate}
<button type="button" on:click={() => audio.setPlaybackRate(rate)}>{rate}x</button>
{/each}
<h6>Volume</h6>
{#each [0, 0.25, 0.5, 0.75, 1] as v}
<button type="button" on:click={() => audio.setVolume(v)}>{v * 100}%</button>
{/each}