2024-07-09 10:16:53 -04:00
|
|
|
<script lang="ts">
|
2024-08-09 15:14:39 -04:00
|
|
|
import {
|
|
|
|
aniListLoggedIn,
|
2024-08-11 21:13:22 -04:00
|
|
|
anilistModal,
|
2024-08-11 20:27:58 -04:00
|
|
|
aniListPrimary,
|
2024-08-11 21:13:22 -04:00
|
|
|
aniListUser,
|
2024-08-13 18:54:27 -04:00
|
|
|
malUser,
|
|
|
|
malLoggedIn,
|
2024-08-11 20:27:58 -04:00
|
|
|
aniListWatchlist,
|
|
|
|
GetAniListSingleItemAndOpenModal,
|
2024-08-11 21:13:22 -04:00
|
|
|
simklLoggedIn,
|
|
|
|
simklUser,
|
|
|
|
simklWatchList,
|
|
|
|
title,
|
2024-08-09 15:14:39 -04:00
|
|
|
} from "./GlobalVariablesAndHelperFunctions.svelte";
|
2024-07-30 20:37:44 -04:00
|
|
|
import {
|
|
|
|
CheckIfAniListLoggedIn,
|
|
|
|
CheckIfSimklLoggedIn,
|
2024-08-13 18:54:27 -04:00
|
|
|
CheckIfMyAnimeListLoggedIn,
|
2024-07-30 20:37:44 -04:00
|
|
|
GetAniListLoggedInUser,
|
|
|
|
GetAniListUserWatchingList,
|
2024-07-31 19:33:04 -04:00
|
|
|
GetSimklLoggedInUser,
|
|
|
|
SimklGetUserWatchlist,
|
2024-08-13 18:54:27 -04:00
|
|
|
GetMyAnimeListLoggedInUser,
|
2024-07-30 20:37:44 -04:00
|
|
|
} from "../wailsjs/go/main/App";
|
2024-08-11 20:42:57 -04:00
|
|
|
import {MediaListSort} from "./anilist/types/AniListTypes";
|
2024-07-24 09:17:39 -04:00
|
|
|
import type {AniListCurrentUserWatchList} from "./anilist/types/AniListCurrentUserWatchListType"
|
2024-07-25 09:18:08 -04:00
|
|
|
import Header from "./Header.svelte";
|
2024-08-11 20:42:57 -04:00
|
|
|
import {Rating} from "flowbite-svelte";
|
2024-07-31 19:33:04 -04:00
|
|
|
import {default as Modal} from "./modal/Modal.svelte"
|
2024-07-25 09:18:08 -04:00
|
|
|
import ChangeDataDialogue from "./ChangeDataDialogue.svelte";
|
2024-07-30 20:37:44 -04:00
|
|
|
import {onMount} from "svelte";
|
2024-07-24 09:17:39 -04:00
|
|
|
|
2024-08-11 20:27:58 -04:00
|
|
|
|
2024-08-09 15:14:39 -04:00
|
|
|
let isAniListLoggedIn: boolean
|
2024-08-11 20:27:58 -04:00
|
|
|
let isAniListPrimary: boolean
|
|
|
|
let aniListWatchListLoaded: AniListCurrentUserWatchList
|
2024-08-09 15:14:39 -04:00
|
|
|
|
|
|
|
aniListLoggedIn.subscribe((value) => isAniListLoggedIn = value)
|
2024-08-11 20:27:58 -04:00
|
|
|
aniListPrimary.subscribe((value) => isAniListPrimary = value)
|
|
|
|
aniListWatchlist.subscribe((value) => aniListWatchListLoaded = value)
|
|
|
|
|
2024-08-09 15:14:39 -04:00
|
|
|
|
2024-07-24 09:17:39 -04:00
|
|
|
let page = 1
|
|
|
|
let perPage = 20
|
2024-07-25 20:02:15 -04:00
|
|
|
const size = "xl"
|
|
|
|
|
2024-07-30 20:37:44 -04:00
|
|
|
onMount(async () => {
|
|
|
|
await CheckIfAniListLoggedIn().then(result => {
|
|
|
|
if (result) {
|
|
|
|
GetAniListLoggedInUser().then(result => {
|
2024-08-11 20:27:58 -04:00
|
|
|
aniListUser.set(result)
|
|
|
|
if (isAniListPrimary) {
|
2024-07-30 20:37:44 -04:00
|
|
|
GetAniListUserWatchingList(page, perPage, MediaListSort.UpdatedTimeDesc).then((result) => {
|
2024-08-11 20:27:58 -04:00
|
|
|
aniListWatchlist.set(result)
|
2024-08-09 15:14:39 -04:00
|
|
|
aniListLoggedIn.set(true)
|
2024-07-30 20:37:44 -04:00
|
|
|
})
|
|
|
|
} else {
|
2024-08-09 15:14:39 -04:00
|
|
|
aniListLoggedIn.set(result)
|
2024-07-30 20:37:44 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2024-08-13 18:54:27 -04:00
|
|
|
await CheckIfMyAnimeListLoggedIn().then(result => {
|
|
|
|
if (result) {
|
|
|
|
GetMyAnimeListLoggedInUser().then(result => {
|
|
|
|
malUser.set(result)
|
|
|
|
malLoggedIn.set(result)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2024-07-30 20:37:44 -04:00
|
|
|
await CheckIfSimklLoggedIn().then(result => {
|
|
|
|
if (result) {
|
|
|
|
GetSimklLoggedInUser().then(result => {
|
2024-08-11 20:27:58 -04:00
|
|
|
simklUser.set(result)
|
2024-07-30 20:37:44 -04:00
|
|
|
SimklGetUserWatchlist().then(result => {
|
|
|
|
simklWatchList.set(result)
|
2024-08-09 15:14:39 -04:00
|
|
|
simklLoggedIn.set(result)
|
2024-07-30 20:37:44 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
2024-08-11 21:13:22 -04:00
|
|
|
|
|
|
|
function ChangeWathcListPage(newPage: number) {
|
|
|
|
GetAniListUserWatchingList(newPage, perPage, MediaListSort.UpdatedTimeDesc).then((result) => {
|
|
|
|
page = newPage
|
|
|
|
aniListWatchlist.set(result)
|
|
|
|
aniListLoggedIn.set(true)
|
|
|
|
})
|
|
|
|
}
|
2024-07-09 10:16:53 -04:00
|
|
|
</script>
|
|
|
|
|
2024-07-26 16:50:42 -04:00
|
|
|
<Header/>
|
2024-07-25 09:18:08 -04:00
|
|
|
|
2024-07-09 10:16:53 -04:00
|
|
|
<main>
|
2024-08-09 15:14:39 -04:00
|
|
|
{#if isAniListLoggedIn}
|
2024-07-31 19:33:04 -04:00
|
|
|
<div class="mx-auto max-w-2xl p-4 sm:p-6 lg:max-w-7xl lg:px-8">
|
2024-08-13 18:54:27 -04:00
|
|
|
<h1 class="text-left text-xl font-bold mb-4">Your AniList WatchList</h1>
|
2024-07-24 09:17:39 -04:00
|
|
|
|
2024-08-11 21:13:22 -04:00
|
|
|
<div class="mb-8">
|
|
|
|
<nav aria-label="Page navigation example">
|
|
|
|
<ul class="inline-flex -space-x-px text-base h-10">
|
|
|
|
{#if page === 1}
|
|
|
|
|
|
|
|
<li>
|
|
|
|
<button disabled
|
|
|
|
class="flex items-center justify-center px-4 h-10 ms-0 leading-tight text-gray-500 bg-white border border-e-0 border-gray-300 rounded-s-lg dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 cursor-default">Previous</button>
|
|
|
|
</li>
|
|
|
|
{:else}
|
|
|
|
<li>
|
|
|
|
<button on:click={() => ChangeWathcListPage(page-1)}
|
|
|
|
class="flex items-center justify-center px-4 h-10 ms-0 leading-tight text-gray-500 bg-white border border-e-0 border-gray-300 rounded-s-lg hover:bg-gray-100 hover:text-gray-700 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white">Previous</button>
|
|
|
|
</li>
|
|
|
|
{/if}
|
|
|
|
{#each {length: aniListWatchListLoaded.data.Page.pageInfo.lastPage} as _, i}
|
|
|
|
{#if i+1 === page}
|
|
|
|
<li>
|
|
|
|
<button on:click={() => ChangeWathcListPage(i+1)}
|
|
|
|
class="flex items-center justify-center px-4 h-10 leading-tight border border-gray-300 bg-gray-100 dark:border-gray-700 dark:bg-gray-700 dark:text-white">{i+1}</button>
|
|
|
|
</li>
|
|
|
|
{:else}
|
|
|
|
<li>
|
|
|
|
<button on:click={() => ChangeWathcListPage(i+1)}
|
|
|
|
class="flex items-center justify-center px-4 h-10 leading-tight text-gray-500 bg-white border border-gray-300 hover:bg-gray-100 hover:text-gray-700 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white">{i+1}</button>
|
|
|
|
</li>
|
|
|
|
{/if}
|
|
|
|
{/each}
|
|
|
|
{#if page === aniListWatchListLoaded.data.Page.pageInfo.lastPage}
|
|
|
|
|
|
|
|
<li>
|
|
|
|
<button disabled
|
|
|
|
class="flex items-center justify-center px-4 h-10 leading-tight text-gray-500 bg-white border border-gray-300 rounded-e-lg dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 cursor-default">Next</button>
|
|
|
|
</li>
|
|
|
|
{:else}
|
|
|
|
<li>
|
|
|
|
<button on:click={() => ChangeWathcListPage(page+1)}
|
|
|
|
class="flex items-center justify-center px-4 h-10 leading-tight text-gray-500 bg-white border border-gray-300 rounded-e-lg hover:bg-gray-100 hover:text-gray-700 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white">Next</button>
|
|
|
|
</li>
|
|
|
|
{/if}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2024-07-24 09:17:39 -04:00
|
|
|
<div class="grid grid-cols-1 gap-x-6 gap-y-10 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 xl:gap-x-8">
|
2024-08-11 20:27:58 -04:00
|
|
|
{#each aniListWatchListLoaded.data.Page.mediaList as media}
|
2024-07-26 16:50:42 -04:00
|
|
|
<div class="aspect-h-1 aspect-w-1 w-full overflow-hidden rounded-lg xl:aspect-h-8 xl:aspect-w-7">
|
2024-07-31 19:33:04 -04:00
|
|
|
<div class="flex flex-col items-center group">
|
|
|
|
<button on:click={() => GetAniListSingleItemAndOpenModal(media.media.id, true)}>
|
2024-07-27 21:17:30 -04:00
|
|
|
<img class="rounded-lg" src={media.media.coverImage.large} alt={
|
2024-07-26 16:50:42 -04:00
|
|
|
media.media.title.english === "" ?
|
|
|
|
media.media.title.romaji :
|
|
|
|
media.media.title.english
|
2024-07-27 21:17:30 -04:00
|
|
|
}/>
|
2024-07-31 19:33:04 -04:00
|
|
|
</button>
|
2024-08-11 21:13:22 -04:00
|
|
|
<Rating id="anime-rating" total={5} size={35} rating={media.score/2.0}/>
|
2024-07-31 19:33:04 -04:00
|
|
|
<button class="mt-4 text-md font-semibold text-white-700"
|
|
|
|
on:click={() => GetAniListSingleItemAndOpenModal(media.media.id, true)}>
|
|
|
|
{
|
2024-07-27 21:17:30 -04:00
|
|
|
media.media.title.english === "" ?
|
2024-08-11 21:13:22 -04:00
|
|
|
media.media.title.romaji :
|
|
|
|
media.media.title.english
|
2024-07-31 19:33:04 -04:00
|
|
|
}
|
|
|
|
</button>
|
|
|
|
<p class="mt-1 text-lg font-medium text-white-900">{media.progress}
|
|
|
|
/ {media.media.nextAiringEpisode.episode !== 0 ?
|
|
|
|
media.media.nextAiringEpisode.episode - 1 : media.media.episodes}</p>
|
|
|
|
{#if media.media.episodes > 0}
|
|
|
|
<p class="mt-1 text-lg font-medium text-white-900">Total
|
|
|
|
Episodes: {media.media.episodes}</p>
|
|
|
|
{/if}
|
|
|
|
</div>
|
2024-07-26 16:50:42 -04:00
|
|
|
</div>
|
2024-07-24 09:17:39 -04:00
|
|
|
{/each}
|
|
|
|
</div>
|
2024-08-11 21:13:22 -04:00
|
|
|
|
|
|
|
<div class="mt-8">
|
|
|
|
<nav aria-label="Page navigation example">
|
|
|
|
<ul class="inline-flex -space-x-px text-base h-10">
|
|
|
|
{#if page === 1}
|
|
|
|
|
|
|
|
<li>
|
|
|
|
<button disabled
|
|
|
|
class="flex items-center justify-center px-4 h-10 ms-0 leading-tight text-gray-500 bg-white border border-e-0 border-gray-300 rounded-s-lg dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 cursor-default">Previous</button>
|
|
|
|
</li>
|
|
|
|
{:else}
|
|
|
|
<li>
|
|
|
|
<button on:click={() => ChangeWathcListPage(page-1)}
|
|
|
|
class="flex items-center justify-center px-4 h-10 ms-0 leading-tight text-gray-500 bg-white border border-e-0 border-gray-300 rounded-s-lg hover:bg-gray-100 hover:text-gray-700 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white">Previous</button>
|
|
|
|
</li>
|
|
|
|
{/if}
|
|
|
|
{#each {length: aniListWatchListLoaded.data.Page.pageInfo.lastPage} as _, i}
|
|
|
|
{#if i+1 === page}
|
|
|
|
<li>
|
|
|
|
<button on:click={() => ChangeWathcListPage(i+1)}
|
|
|
|
class="flex items-center justify-center px-4 h-10 leading-tight border border-gray-300 bg-gray-100 dark:border-gray-700 dark:bg-gray-700 dark:text-white">{i+1}</button>
|
|
|
|
</li>
|
|
|
|
{:else}
|
|
|
|
<li>
|
|
|
|
<button on:click={() => ChangeWathcListPage(i+1)}
|
|
|
|
class="flex items-center justify-center px-4 h-10 leading-tight text-gray-500 bg-white border border-gray-300 hover:bg-gray-100 hover:text-gray-700 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white">{i+1}</button>
|
|
|
|
</li>
|
|
|
|
{/if}
|
|
|
|
{/each}
|
|
|
|
{#if page === aniListWatchListLoaded.data.Page.pageInfo.lastPage}
|
|
|
|
|
|
|
|
<li>
|
|
|
|
<button disabled
|
|
|
|
class="flex items-center justify-center px-4 h-10 leading-tight text-gray-500 bg-white border border-gray-300 rounded-e-lg dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 cursor-default">Next</button>
|
|
|
|
</li>
|
|
|
|
{:else}
|
|
|
|
<li>
|
|
|
|
<button on:click={() => ChangeWathcListPage(page+1)}
|
|
|
|
class="flex items-center justify-center px-4 h-10 leading-tight text-gray-500 bg-white border border-gray-300 rounded-e-lg hover:bg-gray-100 hover:text-gray-700 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white">Next</button>
|
|
|
|
</li>
|
|
|
|
{/if}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
2024-07-24 09:17:39 -04:00
|
|
|
</div>
|
|
|
|
{/if}
|
2024-07-27 21:17:30 -04:00
|
|
|
|
|
|
|
<Modal title={$title} bind:open={$anilistModal} {size} autoclose={false}>
|
2024-07-26 16:50:42 -04:00
|
|
|
<ChangeDataDialogue/>
|
2024-07-25 09:18:08 -04:00
|
|
|
</Modal>
|
2024-07-09 10:16:53 -04:00
|
|
|
</main>
|