Page search
{#if !data.authenticated}
Sign in to search your tags.
{:else if data.error}
{data.error}
{:else}
Warnings
{#each CONTENT_WARNINGS as w (w)}
{/each}
{#if data.contentSearch}
{#await data.results}
{:then r}
{#if r.error}
Couldn't load results: {r.error}
{:else if r.results.length === 0}
No pages match this search.
{:else}
{#each r.results as p (p.page_id)}
{/each}
{/if}
{/await}
{:else}
{#if data.tag}
{data.tag}
{:else}
{/if}
{#if !data.tag}
{#if data.distinct.length === 0}
You haven't tagged any pages yet. Open a chapter and
right-click (or long-press on mobile) a page to add a
tag.
{:else if filteredCloud.length === 0}
No tags match "{draft}".
{:else}
Browse your tags
{#each filteredCloud as s (s.tag)}
{/each}
No tag selected. Pick one above to see matching pages,
chapters, and mangas.
{/if}
{:else}
{#if data.view !== 'pages'}
{/if}
{#await data.results}
{:then r}
{#if r.error}
Couldn't load results: {r.error}
{:else if data.view === 'pages'}
{#if r.pages.length === 0}
No pages tagged with "{data.tag}".
{:else}
{#each r.pages as p (p.page_id)}
{/each}
{/if}
{:else if data.view === 'chapters'}
{#if r.chapters.length === 0}
No chapters contain pages tagged with "{data.tag}".
{:else}
{#each r.chapters as c (c.chapter_id)}
{/each}
{/if}
{:else}
{#if r.mangas.length === 0}
No mangas contain pages tagged with "{data.tag}".
{:else}
{#each r.mangas as m (m.manga_id)}
{/each}
{/if}
{/if}
{/await}
{/if}
{/if}
{/if}