1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<script lang="ts">
import { run } from 'svelte/legacy';
import type { AniListAuthorisation } from '$lib/Data/AniList/identity';
import { prequels, type MediaPrequel } from '$lib/Data/AniList/prequels';
import { onMount } from 'svelte';
import { clearAllParameters, parseOrDefault } from '../../Utility/parameters';
import { page } from '$app/stores';
import { browser } from '$app/environment';
import { season as getSeason } from '$lib/Media/Anime/season';
import Skeleton from '$lib/Loading/Skeleton.svelte';
import identity from '$stores/identity';
import LogInRestricted from '$lib/Error/LogInRestricted.svelte';
import Prequels from './Prequels.svelte';
interface Props {
user: AniListAuthorisation;
}
let { user }: Props = $props();
let currentPrequels: Promise<MediaPrequel[]> = $state(Promise.resolve([]) as Promise<MediaPrequel[]>);
const urlParameters = browser ? new URLSearchParams(window.location.search) : null;
let year = $state(parseOrDefault(urlParameters, 'year', new Date().getFullYear()));
let season = $state(parseOrDefault(urlParameters, 'season', getSeason()));
run(() => {
if (year.toString().length === 4 && $identity.id !== -2 && user)
currentPrequels = prequels(user, year, season);
});
run(() => {
if (browser) {
$page.url.searchParams.set('year', year.toString());
$page.url.searchParams.set('season', season.toString());
clearAllParameters(['year', 'season']);
history.replaceState(null, '', `?${$page.url.searchParams.toString()}`);
}
});
onMount(() => clearAllParameters(['year', 'season']));
</script>
{#if user === undefined || $identity.id === -2}
<LogInRestricted />
{:else}
<div class="card">
<p>
<select bind:value={season}>
<option value="WINTER">Winter</option>
<option value="SPRING">Spring</option>
<option value="SUMMER">Summer</option>
<option value="FALL">Fall</option>
</select>
<input type="number" bind:value={year} />
</p>
{#await currentPrequels}
<Skeleton card={false} count={5} height="0.9rem" list />
{:then currentPrequels}
<Prequels {currentPrequels} />
{/await}
<p></p>
The count ratio is the number of episodes you've seen of any direct prequels, and the total
number of episodes of all direct prequels.
</div>
{/if}
|