{#if !q}
Start typing to search artists, albums, and tracks.
{:else if query?.isError}
{:else if showSkeleton.value && !query?.data}
{:else if allEmpty}
No matches for
'{q}'
.
{:else if query?.data} {#if artists && artists.items.length > 0}
Artists
{#if artists.total > artists.items.length}
See all {artists.total} →
{/if}
{#each artists.items as a (a.id)}
{/each}
{/if} {#if albums && albums.items.length > 0}
Albums
{#if albums.total > albums.items.length}
See all {albums.total} →
{/if}
{#each albums.items as al (al.id)}
{/each}
{/if} {#if tracks && tracks.items.length > 0}
Tracks
{#if tracks.total > tracks.items.length}
See all {tracks.total} →
{/if}
{#each tracks.items as t, i (t.id)}
{/each}
{/if} {/if}