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
69
70
71
72
73
74
75
76
77
78
|
<script lang="ts">
import type { AniListAuthorisation } from '$lib/AniList/identity';
import { prequels, type MediaPrequel } from '$lib/AniList/prequels';
import MediaTitle from '$lib/List/MediaTitleDisplay.svelte';
import { onMount } from 'svelte';
import { clearAllParameters, parseOrDefault } from './tool';
import { airingTime } from '$lib/Media/anime';
import type { Media } from '$lib/AniList/media';
import { page } from '$app/stores';
import { browser } from '$app/environment';
export let user: AniListAuthorisation;
let currentPrequels: Promise<MediaPrequel[]> = Promise.resolve([]) as Promise<MediaPrequel[]>;
const urlParameters = browser ? new URLSearchParams(window.location.search) : null;
let year = parseOrDefault(urlParameters, 'year', new Date().getFullYear());
let season = parseOrDefault(
urlParameters,
'season',
(() => {
if (new Date().getMonth() >= 0 && new Date().getMonth() <= 2)
return 'WINTER' as 'WINTER' | 'SPRING' | 'SUMMER' | 'FALL';
else if (new Date().getMonth() >= 3 && new Date().getMonth() <= 5)
return 'SPRING' as 'WINTER' | 'SPRING' | 'SUMMER' | 'FALL';
else if (new Date().getMonth() >= 6 && new Date().getMonth() <= 8)
return 'SUMMER' as 'WINTER' | 'SPRING' | 'SUMMER' | 'FALL';
else if (new Date().getMonth() >= 9 && new Date().getMonth() <= 11)
return 'FALL' as 'WINTER' | 'SPRING' | 'SUMMER' | 'FALL';
else return 'WINTER' as 'WINTER' | 'SPRING' | 'SUMMER' | 'FALL';
})()
);
$: currentPrequels = prequels(user, year, season);
$: {
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']));
const prequelAiringTime = (prequel: MediaPrequel) => airingTime(prequel as unknown as Media);
</script>
<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}
<p>Loading ...</p>
{:then currentPrequels}
<ul>
{#each currentPrequels as prequel}
<li>
<a href={`https://anilist.co/anime/${prequel.id}`} target="_blank">
<MediaTitle title={prequel.title} />
</a>
<span style="opacity: 50%;">|</span>
{prequel.seen}<span style="opacity: 50%;">/{prequel.episodes}</span>
{@html prequelAiringTime(prequel)}
</li>
{/each}
</ul>
{/await}
<p style="opacity: 50%;">
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.
</p>
|