2024-07-25 09:18:08 -04:00
|
|
|
<script lang="ts">
|
2024-07-31 19:35:02 -04:00
|
|
|
import {anilistModal} from "./GetAniListSingleItemAndOpenModal.svelte";
|
2024-07-27 12:59:31 -04:00
|
|
|
import {anime} from "./GetAniListSingleItemAndOpenModal.svelte";
|
2024-07-25 09:18:08 -04:00
|
|
|
import {Button} from "flowbite-svelte";
|
2024-07-27 12:59:31 -04:00
|
|
|
import StarRatting from "@ernane/svelte-star-rating"
|
2024-07-31 12:40:35 -04:00
|
|
|
import moment from 'moment'
|
2024-07-27 12:59:31 -04:00
|
|
|
|
|
|
|
const ratingInWords = {
|
2024-07-27 21:18:03 -04:00
|
|
|
0: "Not Reviewed",
|
2024-07-27 12:59:31 -04:00
|
|
|
1: "Apalling",
|
|
|
|
2: "Horrible",
|
|
|
|
3: "Very Bad",
|
|
|
|
4: "Bad",
|
|
|
|
5: "Average",
|
|
|
|
6: "Fine",
|
|
|
|
7: "Good",
|
|
|
|
8: "Very Good",
|
|
|
|
9: "Great",
|
|
|
|
10: "Masterpiece",
|
|
|
|
}
|
2024-07-25 09:18:08 -04:00
|
|
|
|
2024-07-31 19:35:02 -04:00
|
|
|
const hide = (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
anilistModal.set(false)
|
|
|
|
};
|
|
|
|
|
2024-07-25 20:02:15 -04:00
|
|
|
const title = anime.data.MediaList.media.title.english !== "" ?
|
|
|
|
anime.data.MediaList.media.title.english :
|
|
|
|
anime.data.MediaList.media.title.romaji
|
2024-07-27 12:59:31 -04:00
|
|
|
|
|
|
|
let config = {
|
|
|
|
readOnly: false,
|
|
|
|
countStars: 5,
|
|
|
|
range: {
|
|
|
|
min: 0,
|
|
|
|
max: 5,
|
|
|
|
step: 0.5
|
|
|
|
},
|
|
|
|
score: anime.data.MediaList.score / 2,
|
|
|
|
showScore: false,
|
|
|
|
scoreFormat: function () {
|
|
|
|
return `(${this.score.toFixed(1)}/${this.countStars})`
|
|
|
|
},
|
|
|
|
name: "",
|
|
|
|
starConfig: {
|
|
|
|
size: 32,
|
|
|
|
fillColor: '#F9ED4F',
|
|
|
|
strokeColor: "#e2c714",
|
|
|
|
unfilledColor: '#FFF',
|
|
|
|
strokeUnfilledColor: '#000'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let values = {
|
|
|
|
progress: anime.data.MediaList.progress,
|
|
|
|
status: anime.data.MediaList.status,
|
|
|
|
startedAt: {
|
|
|
|
year: anime.data.MediaList.startedAt.year,
|
|
|
|
month: anime.data.MediaList.startedAt.month,
|
|
|
|
day: anime.data.MediaList.startedAt.day
|
|
|
|
},
|
|
|
|
completedAt: {
|
|
|
|
year: anime.data.MediaList.completedAt.year,
|
|
|
|
month: anime.data.MediaList.completedAt.month,
|
|
|
|
day: anime.data.MediaList.completedAt.day
|
|
|
|
},
|
|
|
|
repeat: anime.data.MediaList.repeat,
|
|
|
|
score: anime.data.MediaList.score,
|
|
|
|
notes: anime.data.MediaList.notes
|
|
|
|
}
|
2024-07-31 12:40:35 -04:00
|
|
|
let startedAtDate: string
|
|
|
|
let completedAtDate: string
|
2024-07-27 12:59:31 -04:00
|
|
|
|
|
|
|
const changeRating = (e) => {
|
|
|
|
config.score = e.target.valueAsNumber
|
|
|
|
values.score = e.target.valueAsNumber * 2
|
|
|
|
}
|
|
|
|
|
|
|
|
let count = 1;
|
|
|
|
|
|
|
|
const decrement = () => {
|
|
|
|
if (count > 0) {
|
|
|
|
count--
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const increment = () => {
|
|
|
|
count++
|
|
|
|
}
|
2024-07-29 16:54:05 -04:00
|
|
|
|
2024-07-31 12:40:35 -04:00
|
|
|
if (values.startedAt.year > 0) {
|
|
|
|
let startedAtISODate = new Date(values.startedAt.year, values.startedAt.month - 1, values.startedAt.day)
|
|
|
|
let startedAtMoment = moment(startedAtISODate)
|
|
|
|
startedAtDate = startedAtMoment.format('YYYY-MM-DD')
|
|
|
|
}
|
2024-07-29 16:54:05 -04:00
|
|
|
|
|
|
|
const transformStartedAtDate = (e) => {
|
|
|
|
const re = /^([0-9]{4})-([0-9]{2})-([0-9]{2})/
|
|
|
|
const date = re.exec(e.target.value)
|
|
|
|
values.startedAt.year = Number(date[1])
|
|
|
|
values.startedAt.month = Number(date[2])
|
|
|
|
values.startedAt.day = Number(date[3])
|
|
|
|
}
|
|
|
|
|
2024-07-31 12:40:35 -04:00
|
|
|
if (values.completedAt.year > 0) {
|
|
|
|
let completedAtISODate = new Date(values.completedAt.year, values.completedAt.month - 1, values.completedAt.day)
|
|
|
|
let completedAtMoment = moment(completedAtISODate)
|
|
|
|
completedAtDate = completedAtMoment.format('YYYY-MM-DD')
|
|
|
|
}
|
|
|
|
|
|
|
|
const transformCompletedAtDate = (e) => {
|
|
|
|
const re = /^([0-9]{4})-([0-9]{2})-([0-9]{2})/
|
|
|
|
const date = re.exec(e.target.value)
|
|
|
|
values.completedAt.year = Number(date[1])
|
|
|
|
values.completedAt.month = Number(date[2])
|
|
|
|
values.completedAt.day = Number(date[3])
|
|
|
|
}
|
2024-07-25 09:18:08 -04:00
|
|
|
</script>
|
|
|
|
|
2024-07-31 19:35:02 -04:00
|
|
|
<div id="inapp-data">
|
2024-07-31 12:40:35 -04:00
|
|
|
<div class="grid grid-cols-1 md:grid-cols-10 grid-flow-col gap-4">
|
|
|
|
<div class="md:col-span-2 space-y-3">
|
2024-07-26 16:50:16 -04:00
|
|
|
<img class="rounded-lg" src={anime.data.MediaList.media.coverImage.large} alt="{title} Cover Image">
|
2024-07-27 12:59:31 -04:00
|
|
|
<StarRatting bind:config on:change={changeRating}/>
|
2024-07-29 16:54:05 -04:00
|
|
|
<p>Rating: {config.score * 2}</p>
|
2024-07-27 12:59:31 -04:00
|
|
|
<p>{ratingInWords[config.score * 2]}</p>
|
2024-07-25 20:02:15 -04:00
|
|
|
</div>
|
2024-07-25 09:18:08 -04:00
|
|
|
|
2024-07-31 12:40:35 -04:00
|
|
|
<div class="md:col-span-8 ">
|
|
|
|
<div class="flex flex-col md:flex-row md:pl-10 md:pr-10 pt-5 pb-5 justify-center md:gap-x-24 lg:gap-x-56">
|
|
|
|
<div>
|
|
|
|
<label for="episodes" class="text-left block mb-2 text-sm font-medium text-gray-900 dark:text-white">Episode
|
|
|
|
Progress</label>
|
2024-07-29 16:54:05 -04:00
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
name="episodes"
|
|
|
|
min="0"
|
|
|
|
id="episodes"
|
|
|
|
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-primary-600
|
2024-07-31 12:40:35 -04:00
|
|
|
focus:border-primary-600 block w-24 p-2.5 dark:bg-gray-600 dark:border-gray-500 dark:placeholder-gray-400
|
2024-07-29 16:54:05 -04:00
|
|
|
dark:text-white dark:focus:ring-primary-500 dark:focus:border-primary-500"
|
|
|
|
bind:value={values.progress}
|
|
|
|
required>
|
2024-07-25 20:02:15 -04:00
|
|
|
</div>
|
2024-07-27 12:59:31 -04:00
|
|
|
|
|
|
|
|
2024-07-29 16:54:05 -04:00
|
|
|
<div>
|
2024-07-31 12:40:35 -04:00
|
|
|
<label for="status"
|
|
|
|
class="text-left block mb-2 text-sm font-medium text-gray-900 dark:text-white">Status</label>
|
2024-07-29 16:54:05 -04:00
|
|
|
<select id="status"
|
|
|
|
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500
|
|
|
|
focus:border-blue-500 block p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400
|
|
|
|
dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
|
2024-07-31 12:40:35 -04:00
|
|
|
bind:value={values.status}
|
2024-07-29 16:54:05 -04:00
|
|
|
>
|
|
|
|
|
|
|
|
<option>CURRENT</option>
|
|
|
|
<option>PLANNING</option>
|
|
|
|
<option>COMPLETED</option>
|
|
|
|
<option>DROPPED</option>
|
|
|
|
<option>PAUSED</option>
|
|
|
|
<option>REPEATING</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-07-31 12:40:35 -04:00
|
|
|
<div class="flex flex-col md:flex-row md:pl-10 md:pr-10 pt-5 pb-5 justify-center md:gap-x-16 lg:gap-x-36">
|
2024-07-27 12:59:31 -04:00
|
|
|
|
2024-07-31 12:40:35 -04:00
|
|
|
<div>
|
|
|
|
|
|
|
|
<label for="startedAt" class="text-left block mb-2 text-sm font-medium text-gray-900 dark:text-white">Date
|
|
|
|
Started</label>
|
|
|
|
<div class="relative max-w-sm">
|
|
|
|
<div class="absolute inset-y-0 start-0 flex items-center ps-3.5 pointer-events-none">
|
|
|
|
<svg class="w-4 h-4 text-gray-500 dark:text-gray-400" aria-hidden="true"
|
|
|
|
xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
|
|
|
|
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
<input
|
|
|
|
id="startedAt"
|
|
|
|
type="date"
|
|
|
|
name="startedAt"
|
|
|
|
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500
|
2024-07-29 16:54:05 -04:00
|
|
|
focus:border-blue-500 block w-full ps-10 p-2.5 dark:bg-gray-700 dark:border-gray-600
|
|
|
|
dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
|
2024-07-31 12:40:35 -04:00
|
|
|
value={startedAtDate}
|
|
|
|
placeholder="Date Started"
|
|
|
|
on:change={transformStartedAtDate}
|
|
|
|
>
|
|
|
|
</div>
|
2024-07-29 16:54:05 -04:00
|
|
|
</div>
|
2024-07-31 12:40:35 -04:00
|
|
|
<div>
|
2024-07-29 16:54:05 -04:00
|
|
|
|
2024-07-31 12:40:35 -04:00
|
|
|
<label for="completedAt" class="text-left block mb-2 text-sm font-medium text-gray-900 dark:text-white">Date
|
|
|
|
Completed</label>
|
|
|
|
<div class="relative max-w-sm">
|
|
|
|
<div class="absolute inset-y-0 start-0 flex items-center ps-3.5 pointer-events-none">
|
|
|
|
<svg class="w-4 h-4 text-gray-500 dark:text-gray-400" aria-hidden="true"
|
|
|
|
xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
|
|
|
|
<path d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z"/>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
<input
|
|
|
|
id="completedAt"
|
|
|
|
type="date"
|
|
|
|
name="completedAt"
|
|
|
|
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500
|
|
|
|
focus:border-blue-500 block w-full ps-10 p-2.5 dark:bg-gray-700 dark:border-gray-600
|
|
|
|
dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
|
|
|
|
value={completedAtDate}
|
|
|
|
placeholder="Date Completed"
|
|
|
|
on:change={transformCompletedAtDate}
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="repeat"
|
|
|
|
class="text-left block mb-2 text-sm font-medium text-gray-900 dark:text-white">Rewatched</label>
|
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
name="repeat"
|
|
|
|
min="0"
|
|
|
|
id="repeat"
|
|
|
|
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-primary-600
|
|
|
|
focus:border-primary-600 block w-24 p-2.5 dark:bg-gray-600 dark:border-gray-500 dark:placeholder-gray-400
|
|
|
|
dark:text-white dark:focus:ring-primary-500 dark:focus:border-primary-500"
|
|
|
|
bind:value={values.repeat}
|
|
|
|
required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-col md:flex-row md:pl-10 md:pr-10 pt-5 pb-5 justify-center">
|
|
|
|
<div class="w-full">
|
|
|
|
<label for="notes" class="text-left block mb-2 text-sm font-medium text-gray-900 dark:text-white">Your
|
|
|
|
notes</label>
|
|
|
|
<textarea id="notes" rows="3"
|
|
|
|
class="block p-2.5 w-full text-sm text-gray-900 bg-gray-50 rounded-lg border border-gray-300 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
|
|
|
|
placeholder="Write your thoughts here..."
|
|
|
|
bind:value={values.notes}></textarea>
|
|
|
|
</div>
|
2024-07-29 16:54:05 -04:00
|
|
|
</div>
|
2024-07-25 20:02:15 -04:00
|
|
|
</div>
|
2024-07-25 09:18:08 -04:00
|
|
|
</div>
|
2024-07-31 19:35:02 -04:00
|
|
|
<div id="external-data">
|
|
|
|
<div id="anilist-data" class="flex flex-col md:flex-row md:pl-10 md:pr-10 pt-5 pb-5 justify-center md:gap-x-16 lg:gap-x-36 group">
|
|
|
|
<h2 class="text-left mb-1 text-base font-semibold text-gray-900 dark:text-white">AniList</h2>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-07-31 12:40:35 -04:00
|
|
|
<footer class="bg-white rounded-lg shadow max-w-4-4 dark:bg-gray-800">
|
2024-07-25 09:18:08 -04:00
|
|
|
<div class="w-full mx-auto max-w-screen-xl p-4 md:flex md:items-center md:justify-end">
|
2024-07-29 16:54:05 -04:00
|
|
|
<Button
|
|
|
|
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium
|
|
|
|
rounded-lg text-sm px-5 py-2.5 me-2 mb-2 dark:bg-blue-600 dark:hover:bg-blue-700 focus:outline-none
|
|
|
|
dark:focus:ring-blue-800"
|
2024-07-27 12:59:31 -04:00
|
|
|
on:click={() => alert('Handle "success"')}>Sync Changes
|
|
|
|
</Button>
|
2024-07-29 16:54:05 -04:00
|
|
|
<Button
|
|
|
|
class="text-gray-900 bg-white border border-gray-300 focus:outline-none hover:bg-gray-100 focus:ring-4
|
|
|
|
focus:ring-gray-100 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 dark:bg-gray-800 dark:text-white
|
2024-07-31 19:35:02 -04:00
|
|
|
dark:border-gray-600 dark:hover:bg-gray-700 dark:hover:border-gray-600 dark:focus:ring-gray-700"
|
|
|
|
on:click={hide}>
|
2024-07-27 12:59:31 -04:00
|
|
|
Cancel
|
|
|
|
</Button>
|
2024-07-25 09:18:08 -04:00
|
|
|
</div>
|
|
|
|
</footer>
|
2024-07-27 12:59:31 -04:00
|
|
|
</div>
|