176 lines
4.8 KiB
Svelte
176 lines
4.8 KiB
Svelte
<script lang="ts">
|
|
import { page } from '$app/stores';
|
|
import getAudioIDMetadata from '$lib/audio/getAudioIDMetadata';
|
|
import Background from '$lib/components/background.svelte';
|
|
import Cover from '$lib/components/cover.svelte';
|
|
import InteractiveBox from '$lib/components/interactiveBox.svelte';
|
|
import Lyrics from '$lib/components/lyrics.svelte';
|
|
import extractFileName from '$lib/extractFileName';
|
|
import localforage from 'localforage';
|
|
import { writable } from 'svelte/store';
|
|
|
|
const audioId = $page.params.id;
|
|
let audioPlayer: HTMLAudioElement;
|
|
let volume = 1;
|
|
let name = '';
|
|
let singer = '';
|
|
let duration = 0;
|
|
let currentProgress = 0;
|
|
let audioFile: File;
|
|
let paused: boolean = true;
|
|
let launched = false;
|
|
let prepared: string[] = [];
|
|
let originalLyrics: string = '';
|
|
const coverPath = writable('');
|
|
let mainInterval: ReturnType<typeof setInterval>;
|
|
|
|
function setMediaSession() {
|
|
if ('mediaSession' in navigator === false) return;
|
|
const ms = navigator.mediaSession;
|
|
ms.metadata = new MediaMetadata({
|
|
title: name,
|
|
artist: singer,
|
|
artwork: [
|
|
{
|
|
src: $coverPath
|
|
}
|
|
]
|
|
});
|
|
ms.setActionHandler('play', function () {
|
|
audioPlayer.play();
|
|
paused = false;
|
|
});
|
|
|
|
ms.setActionHandler('pause', function () {
|
|
audioPlayer.pause();
|
|
paused = true;
|
|
});
|
|
|
|
ms.setActionHandler('seekbackward', function () {
|
|
if (audioPlayer.currentTime > 4) {
|
|
audioPlayer.currentTime = 0;
|
|
}
|
|
});
|
|
|
|
ms.setActionHandler('previoustrack', function () {
|
|
if (audioPlayer.currentTime > 4) {
|
|
audioPlayer.currentTime = 0;
|
|
}
|
|
});
|
|
}
|
|
|
|
function readDB() {
|
|
getAudioIDMetadata(audioId, (metadata: any) => {
|
|
duration = metadata.format.duration ? metadata.format.duration : 0;
|
|
prepared.push('duration');
|
|
});
|
|
localforage.getItem(`${audioId}-cover`, function (err, file) {
|
|
if (file) {
|
|
const path = URL.createObjectURL(file as File);
|
|
coverPath.set(path);
|
|
}
|
|
prepared.push('cover');
|
|
});
|
|
localforage.getItem(`${audioId}-file`, function (err, file) {
|
|
if (file) {
|
|
const f = file as File;
|
|
audioFile = f;
|
|
audioPlayer.src = URL.createObjectURL(audioFile);
|
|
name = extractFileName(f.name);
|
|
prepared.push('name');
|
|
prepared.push('file');
|
|
}
|
|
});
|
|
localforage.getItem(`${audioId}-lyrics`, function (err, file) {
|
|
if (file) {
|
|
const f = file as File;
|
|
f.text().then((lr) => {
|
|
originalLyrics = lr;
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
function playAudio() {
|
|
if (audioPlayer.duration) {
|
|
duration = audioPlayer.duration;
|
|
}
|
|
audioPlayer.paused ? audioPlayer.play() : audioPlayer.pause();
|
|
paused = audioPlayer.paused;
|
|
setMediaSession();
|
|
}
|
|
|
|
$: {
|
|
if (!launched) {
|
|
const requirements = ['name', 'file', 'cover'];
|
|
let flag = true;
|
|
for (const r of requirements) {
|
|
if (!prepared.includes(r)) {
|
|
flag = false;
|
|
}
|
|
}
|
|
if (flag) {
|
|
launched = true;
|
|
setMediaSession();
|
|
audioPlayer.play();
|
|
}
|
|
}
|
|
}
|
|
|
|
function adjustProgress(progress: number) {
|
|
if (audioPlayer) {
|
|
audioPlayer.currentTime = duration * progress;
|
|
currentProgress = duration * progress;
|
|
}
|
|
}
|
|
|
|
function adjustVolume(targetVolume: number) {
|
|
if (audioPlayer) {
|
|
audioPlayer.volume = targetVolume;
|
|
}
|
|
}
|
|
|
|
$: {
|
|
clearInterval(mainInterval);
|
|
mainInterval = setInterval(() => {
|
|
if (audioPlayer !== null && audioPlayer.currentTime !== undefined) {
|
|
currentProgress = audioPlayer.currentTime;
|
|
}
|
|
}, 250);
|
|
}
|
|
|
|
$: {
|
|
if (audioPlayer) {
|
|
paused = audioPlayer.paused;
|
|
volume = audioPlayer.volume;
|
|
}
|
|
}
|
|
|
|
readDB();
|
|
</script>
|
|
|
|
<Background coverId={audioId} />
|
|
<Cover {coverPath} />
|
|
<InteractiveBox
|
|
{name}
|
|
{singer}
|
|
{duration}
|
|
{volume}
|
|
progress={currentProgress}
|
|
clickPlay={playAudio}
|
|
{paused}
|
|
{adjustProgress}
|
|
{adjustVolume}
|
|
/>
|
|
<audio
|
|
bind:this={audioPlayer}
|
|
controls
|
|
style="display: none"
|
|
on:ended={() => {
|
|
paused = true;
|
|
audioPlayer.pause();
|
|
}}
|
|
></audio>
|
|
|
|
<Lyrics lyrics={[]} progress={currentProgress} />
|