Add catalog search, fix sorting

This commit is contained in:
ZXY101
2024-01-08 06:47:30 +02:00
parent a18f66ca37
commit c817cc8681
2 changed files with 25 additions and 5 deletions

View File

@@ -1,17 +1,38 @@
<script lang="ts">
import { catalog } from '$lib/catalog';
import { Button, Search } from 'flowbite-svelte';
import CatalogItem from './CatalogItem.svelte';
import Loader from './Loader.svelte';
import { GridOutline, SortOutline } from 'flowbite-svelte-icons';
$: sortedCatalog = $catalog
?.sort((a, b) => a.manga[0].mokuroData.title.localeCompare(b.manga[0].mokuroData.title))
.filter((item) => {
return item.manga[0].mokuroData.title.toLowerCase().indexOf(search.toLowerCase()) !== -1;
});
let search = '';
</script>
{#if $catalog}
{#if $catalog.length > 0}
<div class="flex flex-col gap-5">
<div class="flex gap-1 py-2">
<Search bind:value={search} />
<!-- <Button size="sm" color="alternative"><GridOutline /></Button>
<Button size="sm" color="alternative"><SortOutline /></Button> -->
</div>
{#if search && sortedCatalog.length === 0}
<div class="text-center p-20">
<p>No results found.</p>
</div>
{:else}
<div class="flex sm:flex-row flex-col gap-5 flex-wrap justify-center sm:justify-start">
{#each $catalog as { id } (id)}
{#each sortedCatalog as { id } (id)}
<CatalogItem {id} />
{/each}
</div>
{/if}
</div>
{:else}
<div class="text-center p-20">

View File

@@ -1,6 +1,5 @@
<script lang="ts">
import Catalog from '$lib/components/Catalog.svelte';
import { createProfile, deleteProfile } from '$lib/settings';
</script>
<svelte:head>