handleInput(e.currentTarget.value)} onkeydown={handleKeydown} onfocus={handleFocus} />
{#if isOpen}
{#if fetching}
Searching...
{:else if results.length === 0}
No results found
{:else} {#each results as novel (novel.id)} {#if getCoverSrc(novel)} {:else}
{/if} {novel.name}
{/each} {/if}
{/if}