Podcast player components (#37)

This commit is contained in:
Ollie Taylor
2023-03-06 15:25:34 +00:00
committed by GitHub
parent 47aabda96d
commit 9232f4d52e
37 changed files with 1375 additions and 156 deletions
+5 -5
View File
@@ -1,10 +1,10 @@
import { audio_element } from '$lib/audio/audio-element';
import { episode_details } from '$lib/audio/episode-details';
import type { EpisodeAttributes, EpisodeDetails } from '$lib/types';
import { user_preferences, user_progress } from '$lib/user';
import { warn } from '$lib/utility/package/log';
import clamp from 'just-clamp';
import { derived, get, type Readable } from 'svelte/store';
import type { EpisodeAttributes, EpisodeDetails } from '../types';
import { user_preferences, user_progress } from '../user';
import { warn } from '../utility/package/log';
import { audio_element } from './audio-element';
import { episode_details } from './episode-details';
const default_episode_attributes = {
will_autoplay: false,