added tooltip and version change
This commit is contained in:
		@@ -41,7 +41,7 @@
 | 
				
			|||||||
    import { AddAnimeServiceToTable } from "../helperModules/AddAnimeServiceToTable.svelte";
 | 
					    import { AddAnimeServiceToTable } from "../helperModules/AddAnimeServiceToTable.svelte";
 | 
				
			||||||
    import { CheckIfAniListLoggedInAndLoadWatchList } from "../helperModules/CheckIfAniListLoggedInAndLoadWatchList.svelte";
 | 
					    import { CheckIfAniListLoggedInAndLoadWatchList } from "../helperModules/CheckIfAniListLoggedInAndLoadWatchList.svelte";
 | 
				
			||||||
    import Datepicker from "./Datepicker.svelte";
 | 
					    import Datepicker from "./Datepicker.svelte";
 | 
				
			||||||
    import { Badge } from "flowbite-svelte";
 | 
					    import {Badge, Tooltip} from "flowbite-svelte";
 | 
				
			||||||
    const re = /^([0-9]{4})-([0-9]{2})-([0-9]{2})/;
 | 
					    const re = /^([0-9]{4})-([0-9]{2})-([0-9]{2})/;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    let isAniListLoggedIn: boolean;
 | 
					    let isAniListLoggedIn: boolean;
 | 
				
			||||||
@@ -213,9 +213,6 @@
 | 
				
			|||||||
            };
 | 
					            };
 | 
				
			||||||
            await AniListUpdateEntry(body).then(
 | 
					            await AniListUpdateEntry(body).then(
 | 
				
			||||||
                (value: AniListGetSingleAnime) => {
 | 
					                (value: AniListGetSingleAnime) => {
 | 
				
			||||||
                    /* TODO in future when you inevitably add tags to typescript, until Anilist fixes the api bug
 | 
					 | 
				
			||||||
                    where tags break the SaveMediaListEntry return, you'll want to use this delete line
 | 
					 | 
				
			||||||
                    delete value.data.MediaList.media.tags */
 | 
					 | 
				
			||||||
                    value.data.MediaList.media.tags =
 | 
					                    value.data.MediaList.media.tags =
 | 
				
			||||||
                        currentAniListAnime.data.MediaList.media.tags;
 | 
					                        currentAniListAnime.data.MediaList.media.tags;
 | 
				
			||||||
                    aniListAnime.update((newValue) => {
 | 
					                    aniListAnime.update((newValue) => {
 | 
				
			||||||
@@ -834,9 +831,13 @@
 | 
				
			|||||||
            <div class="mt-2">
 | 
					            <div class="mt-2">
 | 
				
			||||||
                {#each currentAniListAnime.data.MediaList.media.tags as tag}
 | 
					                {#each currentAniListAnime.data.MediaList.media.tags as tag}
 | 
				
			||||||
                    <div>
 | 
					                    <div>
 | 
				
			||||||
                        <Badge large border color="blue" class="m-1 w-40"
 | 
					                        <Badge large border color="blue" class="m-1 w-52">
 | 
				
			||||||
                            >{tag.name}</Badge
 | 
					                                <div>
 | 
				
			||||||
                        >
 | 
					                                    {tag.name} -
 | 
				
			||||||
 | 
					                                    <span class="text-xs">{tag.rank}%</span>
 | 
				
			||||||
 | 
					                                </div>
 | 
				
			||||||
 | 
					                        </Badge>
 | 
				
			||||||
 | 
					                        <Tooltip>{tag.description}</Tooltip>
 | 
				
			||||||
                    </div>
 | 
					                    </div>
 | 
				
			||||||
                {/each}
 | 
					                {/each}
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,6 +12,6 @@
 | 
				
			|||||||
  },
 | 
					  },
 | 
				
			||||||
  "info": {
 | 
					  "info": {
 | 
				
			||||||
    "productName": "AniTrack",
 | 
					    "productName": "AniTrack",
 | 
				
			||||||
    "productVersion": "0.2.0"
 | 
					    "productVersion": "0.2.1"
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user