2024-07-09 10:16:53 -04:00
|
|
|
<script lang="ts">
|
2024-07-26 16:50:42 -04:00
|
|
|
import {anilistModal, GetAniListSingleItemAndOpenModal, title} from "./GetAniListSingleItemAndOpenModal.svelte";
|
|
|
|
import {GetAniListUserWatchingList} from "../wailsjs/go/main/App";
|
|
|
|
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-07-27 21:17:30 -04:00
|
|
|
import StarRatting from '@ernane/svelte-star-rating'
|
2024-07-25 20:02:15 -04:00
|
|
|
import {Modal} from "flowbite-svelte";
|
|
|
|
|
2024-07-25 09:18:08 -04:00
|
|
|
import ChangeDataDialogue from "./ChangeDataDialogue.svelte";
|
2024-07-24 09:17:39 -04:00
|
|
|
|
2024-07-27 21:17:30 -04:00
|
|
|
const config = {
|
|
|
|
readOnly: false,
|
|
|
|
countStars: 5,
|
|
|
|
range: {
|
|
|
|
min: 0,
|
|
|
|
max: 5,
|
|
|
|
step: 0.5
|
|
|
|
},
|
|
|
|
score: 0.0,
|
|
|
|
showScore: true,
|
|
|
|
scoreFormat: function(){ return `(${this.score.toFixed(1)}/${this.countStars})` },
|
|
|
|
name: "",
|
|
|
|
starConfig: {
|
|
|
|
size: 20,
|
|
|
|
fillColor: '#F9ED4F',
|
|
|
|
strokeColor: "#e2c714",
|
|
|
|
unfilledColor: '#FFF',
|
|
|
|
strokeUnfilledColor: '#000'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let aniListLoggedIn = false
|
2024-07-24 09:17:39 -04:00
|
|
|
let aniListWatchlist: AniListCurrentUserWatchList
|
|
|
|
let page = 1
|
|
|
|
let perPage = 20
|
2024-07-25 20:02:15 -04:00
|
|
|
const size = "xl"
|
|
|
|
|
2024-07-24 09:17:39 -04:00
|
|
|
function anilistGetUserWatchlist(): void {
|
|
|
|
GetAniListUserWatchingList(page, perPage, MediaListSort.UpdatedTimeDesc).then((result) => {
|
|
|
|
aniListWatchlist = result
|
|
|
|
aniListLoggedIn = true
|
|
|
|
})
|
|
|
|
}
|
2024-07-25 09:18:08 -04:00
|
|
|
|
2024-07-27 21:17:30 -04:00
|
|
|
let count = 1;
|
|
|
|
|
|
|
|
const decrement = () => {
|
|
|
|
if (count > 0) {
|
|
|
|
count--
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const increment = () => {
|
|
|
|
count++
|
|
|
|
}
|
|
|
|
|
2024-07-25 20:02:15 -04:00
|
|
|
|
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-07-25 09:18:08 -04:00
|
|
|
|
|
|
|
|
2024-07-24 09:17:39 -04:00
|
|
|
<button class="btn" on:click={anilistGetUserWatchlist}>Login to AniList</button>
|
|
|
|
{#if aniListLoggedIn}
|
|
|
|
<div>You are logged in {aniListWatchlist.data.Page.mediaList[0].user.name}!</div>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
{#if aniListLoggedIn}
|
|
|
|
<div class="mx-auto max-w-2xl px-4 py-16 sm:px-6 sm:py-24 lg:max-w-7xl lg:px-8">
|
|
|
|
<h1>Your Watching List</h1>
|
|
|
|
|
|
|
|
<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">
|
|
|
|
{#each aniListWatchlist.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-27 21:17:30 -04:00
|
|
|
<button on:click={() => GetAniListSingleItemAndOpenModal(media.media.id, true)} class="group">
|
|
|
|
<div class="flex flex-col items-center">
|
|
|
|
<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
|
|
|
}/>
|
|
|
|
{config.score = media.score / 2.0}
|
|
|
|
<StarRatting {config}/>
|
|
|
|
<h3 class="mt-4 text-sm text-white-700">{
|
|
|
|
media.media.title.english === "" ?
|
|
|
|
media.media.title.romaji :
|
|
|
|
media.media.title.english
|
|
|
|
}</h3>
|
|
|
|
<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
|
|
|
</button>
|
|
|
|
</div>
|
2024-07-24 09:17:39 -04:00
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/if}
|
2024-07-27 21:17:30 -04:00
|
|
|
|
|
|
|
<div class="flex items-center justify-center">
|
|
|
|
<button on:click={decrement}
|
|
|
|
class="flex justify-center items-center w-10 h-10 rounded-full text-white focus:outline-none bg-gray-400 hover:bg-gray-500">
|
|
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 12H4"></path>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
<input bind:value={count} class="text-2xl font-bold mx-4" />
|
|
|
|
<button on:click={increment}
|
|
|
|
class="flex justify-center items-center w-10 h-10 rounded-full text-white focus:outline-none bg-indigo-500 hover:bg-indigo-600">
|
|
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v12M6 12h12"></path>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<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>
|