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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
import type { Media, MediaTitle } from "./media";
interface SchedulePage {
data: {
Page: {
media: {
title: MediaTitle;
synonyms: string[];
id: number;
idMal: number;
episodes: number;
nextAiringEpisode?: {
episode: number;
airingAt?: number;
};
coverImage: {
extraLarge: string;
medium: string;
};
}[];
pageInfo: {
hasNextPage: boolean;
};
};
};
}
const schedulePage = async (
page: number,
year: number,
season: "WINTER" | "SPRING" | "SUMMER" | "FALL",
): Promise<SchedulePage> =>
await (
await fetch("https://graphql.anilist.co", {
method: "POST",
headers: {
"Content-Type": "application/json",
Accept: "application/json",
},
body: JSON.stringify({
query: `{
Page(page: ${page}) {
pageInfo {
hasNextPage
}
media(season: ${season}, seasonYear: ${year}) {
id idMal episodes synonyms
title { english romaji native }
nextAiringEpisode { episode airingAt }
coverImage { extraLarge medium }
}
}
}`,
}),
})
).json();
type Season = "WINTER" | "SPRING" | "SUMMER" | "FALL";
export const scheduleMediaListCollection = async (
year: number,
season: Season,
includeLastSeason = false,
) => {
const scheduledMedia = [];
let page = 1;
let currentPage = await schedulePage(page, year, season);
for (const candidate of currentPage.data.Page.media)
scheduledMedia.push(candidate);
while (currentPage["data"]["Page"]["pageInfo"]["hasNextPage"]) {
for (const candidate of currentPage.data.Page.media)
scheduledMedia.push(candidate);
page += 1;
currentPage = await schedulePage(page, year, season);
}
for (const candidate of currentPage.data.Page.media)
scheduledMedia.push(candidate);
if (includeLastSeason) {
const lastSeason = {
WINTER: "FALL",
SPRING: "WINTER",
SUMMER: "SPRING",
FALL: "SUMMER",
}[season];
const lastSeasonYear = season === "WINTER" ? year - 1 : year;
let page = 1;
let currentPage = await schedulePage(
page,
lastSeasonYear,
lastSeason as Season,
);
for (const candidate of currentPage.data.Page.media)
scheduledMedia.push(candidate);
while (currentPage["data"]["Page"]["pageInfo"]["hasNextPage"]) {
for (const candidate of currentPage.data.Page.media)
scheduledMedia.push(candidate);
page += 1;
currentPage = await schedulePage(
page,
lastSeasonYear,
lastSeason as Season,
);
}
for (const candidate of currentPage.data.Page.media)
scheduledMedia.push(candidate);
}
return scheduledMedia as Partial<Media[]>;
};
|