Formatting

This commit is contained in:
Valentin Brandl 2024-07-30 17:39:41 +02:00
parent 4b6f25656b
commit 2dbd724622
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9
2 changed files with 12 additions and 12 deletions

View File

@ -4,7 +4,7 @@
import AutoComplete from 'simple-svelte-autocomplete'; import AutoComplete from 'simple-svelte-autocomplete';
export let form: ActionData; export let form: ActionData;
let selectedName: String; let selectedName: String;
let toCreate = ''; let toCreate = '';
@ -25,9 +25,9 @@
.map(([k, v]) => `${(size / k).toFixed(1)} ${v}B`)[0] ?? `${size} bytes` .map(([k, v]) => `${(size / k).toFixed(1)} ${v}B`)[0] ?? `${size} bytes`
); );
}; };
async function loadNames(keyword: String) { async function loadNames(keyword: String) {
const url = "./names"; const url = './names';
const response = await fetch(url); const response = await fetch(url);
return await response.json(); return await response.json();
} }
@ -54,14 +54,14 @@
<div class="field"> <div class="field">
<label for="name" class="label">Name</label> <label for="name" class="label">Name</label>
<div class="control"> <div class="control">
<AutoComplete <AutoComplete
id="name" id="name"
name="name" name="name"
create={true} create={true}
bind:selectedItem={selectedName} bind:selectedItem={selectedName}
bind:text={selectedName} bind:text={selectedName}
createText="" createText=""
searchFunction={loadNames} searchFunction={loadNames}
/> />
</div> </div>
{#if form?.field === 'name'} {#if form?.field === 'name'}

View File

@ -6,7 +6,7 @@ export function GET() {
const names = readdirSync(storagePath).filter((f) => const names = readdirSync(storagePath).filter((f) =>
statSync(`${storagePath}/${f}`).isDirectory() statSync(`${storagePath}/${f}`).isDirectory()
); );
names.sort() names.sort();
return json(names); return json(names);
} }