feat: Saving and displaying movie play-state, progress etc.

This commit is contained in:
Aleksi Lassila
2024-12-14 20:32:41 +02:00
parent dfffd01e7c
commit a3866ada6b
23 changed files with 503 additions and 113 deletions

View File

@@ -6,6 +6,7 @@
import type { TitleType } from '../../types';
export let item: TmdbMovie2 | TmdbSeries2;
export let progress = 0;
let title = '';
let subtitle = '';
let type: TitleType = 'movie';
@@ -32,4 +33,4 @@
};
</script>
<Card {...$$restProps} {...props} on:enter />
<Card {...$$restProps} {...props} {progress} on:enter />