aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Media/anime.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-09-14 14:39:22 -0700
committerFuwn <[email protected]>2023-09-14 14:39:22 -0700
commit00095848c8c82b4db9a52f0e85ac29b0f991e99b (patch)
treedc9fe8ce3f4234077f0bb1b266b632a7450af5e4 /src/lib/Media/anime.ts
parentrefactor(manga): rename from mangadex (diff)
downloaddue.moe-00095848c8c82b4db9a52f0e85ac29b0f991e99b.tar.xz
due.moe-00095848c8c82b4db9a52f0e85ac29b0f991e99b.zip
refactor: move media to folder
Diffstat (limited to 'src/lib/Media/anime.ts')
-rw-r--r--src/lib/Media/anime.ts67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/lib/Media/anime.ts b/src/lib/Media/anime.ts
new file mode 100644
index 00000000..0eed9121
--- /dev/null
+++ b/src/lib/Media/anime.ts
@@ -0,0 +1,67 @@
+import { get } from 'svelte/store';
+import anime from '../../stores/anime';
+import { mediaListCollection, type Media, Type } from '../AniList/media';
+import lastPruneTimes from '../../stores/lastPruneTimes';
+import type { AniListAuthorisation, UserIdentity } from '../AniList/identity';
+
+export const cleanCache = (user: AniListAuthorisation, identity: UserIdentity) => {
+ return mediaListCollection(
+ user,
+ identity,
+ Type.Anime,
+ get(anime),
+ get(lastPruneTimes).anime,
+ true
+ );
+};
+
+export const updateMedia = (id: number, progress: number | undefined, callback: () => void) => {
+ fetch(`/api/anilist-increment?id=${id}&progress=${(progress || 0) + 1}`).then(callback);
+};
+
+export const totalEpisodes = (anime: Media) => {
+ return anime.episodes === null ? '' : `<span style="opacity: 50%">/${anime.episodes}</span>`;
+};
+
+export const airingTime = (anime: Media, upcoming = false) => {
+ const untilAiring = anime.nextAiringEpisode?.timeUntilAiring;
+ let timeFrame;
+
+ if (untilAiring !== undefined) {
+ let minutes = untilAiring / 60;
+
+ if (minutes >= 30) {
+ let hours = minutes / 60;
+
+ if (hours >= 24) {
+ let weeks = Math.floor(Math.floor(hours / 24) / 7);
+
+ if (weeks >= 1) {
+ weeks = Math.round(weeks);
+
+ timeFrame = `${weeks} week${weeks === 1 ? '' : 's'}`;
+ } else {
+ const days = Math.round(Math.floor(hours / 24));
+
+ timeFrame = `${days} day${days === 1 ? '' : 's'}`;
+ }
+ } else {
+ hours = Math.round(hours);
+
+ timeFrame = `${hours} hour${hours === 1 ? '' : 's'}`;
+ }
+ } else {
+ minutes = Math.round(minutes);
+
+ timeFrame = `${minutes} minute${minutes === 1 ? '' : 's'}`;
+ }
+
+ if (upcoming) {
+ return `${anime.nextAiringEpisode?.episode}${totalEpisodes(anime)} in ${timeFrame}`;
+ } else {
+ return `<span style="opacity: 50%">${anime.nextAiringEpisode?.episode} in ${timeFrame}</span>`;
+ }
+ }
+
+ return '';
+};