feat(frontend): add field editing
This commit is contained in:
parent
1647ec16a4
commit
37fe5813f0
|
@ -0,0 +1,106 @@
|
||||||
|
<script lang="ts">
|
||||||
|
import { WordStatus, type Field } from "$lib/api/entities";
|
||||||
|
import IconButton from "$lib/components/IconButton.svelte";
|
||||||
|
import { Button, Input, InputGroup, InputGroupText } from "sveltestrap";
|
||||||
|
|
||||||
|
export let field: Field;
|
||||||
|
export let deleteField: () => void;
|
||||||
|
|
||||||
|
let newEntry: string = "";
|
||||||
|
|
||||||
|
const addEntry = () => {
|
||||||
|
field.entries = [...field.entries, { value: newEntry, status: WordStatus.Okay }];
|
||||||
|
newEntry = "";
|
||||||
|
};
|
||||||
|
|
||||||
|
const moveEntry = (index: number, up: boolean) => {
|
||||||
|
if (up && index == 0) return;
|
||||||
|
if (!up && index == field.entries.length - 1) return;
|
||||||
|
|
||||||
|
const newIndex = up ? index - 1 : index + 1;
|
||||||
|
|
||||||
|
const temp = field.entries[index];
|
||||||
|
field.entries[index] = field.entries[newIndex];
|
||||||
|
field.entries[newIndex] = temp;
|
||||||
|
};
|
||||||
|
|
||||||
|
const removeEntry = (index: number) => {
|
||||||
|
if (field.entries.length === 1) field.entries = [];
|
||||||
|
else if (index === 0) field.entries = field.entries.slice(1);
|
||||||
|
else if (index === field.entries.length - 1)
|
||||||
|
field.entries = field.entries.slice(0, field.entries.length - 1);
|
||||||
|
else
|
||||||
|
field.entries = [...field.entries.slice(0, index - 1), ...field.entries.slice(0, index + 1)];
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<InputGroup class="m-1">
|
||||||
|
<InputGroupText>Name</InputGroupText>
|
||||||
|
<Input bind:value={field.name} />
|
||||||
|
<Button color="danger" on:click={() => deleteField()}>Delete field</Button>
|
||||||
|
</InputGroup>
|
||||||
|
{#each field.entries as _, index}
|
||||||
|
<div class="input-group m-1">
|
||||||
|
<IconButton
|
||||||
|
color="secondary"
|
||||||
|
icon="chevron-up"
|
||||||
|
tooltip="Move entry up"
|
||||||
|
click={() => moveEntry(index, true)}
|
||||||
|
/>
|
||||||
|
<IconButton
|
||||||
|
color="secondary"
|
||||||
|
icon="chevron-down"
|
||||||
|
tooltip="Move entry down"
|
||||||
|
click={() => moveEntry(index, false)}
|
||||||
|
/>
|
||||||
|
<input type="text" class="form-control" bind:value={field.entries[index].value} />
|
||||||
|
<IconButton
|
||||||
|
color="secondary"
|
||||||
|
icon="heart-fill"
|
||||||
|
tooltip="Favourite"
|
||||||
|
click={() => (field.entries[index].status = WordStatus.Favourite)}
|
||||||
|
active={field.entries[index].status === WordStatus.Favourite}
|
||||||
|
/>
|
||||||
|
<IconButton
|
||||||
|
color="secondary"
|
||||||
|
icon="hand-thumbs-up"
|
||||||
|
tooltip="Okay"
|
||||||
|
click={() => (field.entries[index].status = WordStatus.Okay)}
|
||||||
|
active={field.entries[index].status === WordStatus.Okay}
|
||||||
|
/>
|
||||||
|
<IconButton
|
||||||
|
color="secondary"
|
||||||
|
icon="emoji-laughing"
|
||||||
|
tooltip="Jokingly"
|
||||||
|
click={() => (field.entries[index].status = WordStatus.Jokingly)}
|
||||||
|
active={field.entries[index].status === WordStatus.Jokingly}
|
||||||
|
/>
|
||||||
|
<IconButton
|
||||||
|
color="secondary"
|
||||||
|
icon="people"
|
||||||
|
tooltip="Friends only"
|
||||||
|
click={() => (field.entries[index].status = WordStatus.FriendsOnly)}
|
||||||
|
active={field.entries[index].status === WordStatus.FriendsOnly}
|
||||||
|
/>
|
||||||
|
<IconButton
|
||||||
|
color="secondary"
|
||||||
|
icon="hand-thumbs-down"
|
||||||
|
tooltip="Avoid"
|
||||||
|
click={() => (field.entries[index].status = WordStatus.Avoid)}
|
||||||
|
active={field.entries[index].status === WordStatus.Avoid}
|
||||||
|
/>
|
||||||
|
<IconButton
|
||||||
|
color="danger"
|
||||||
|
icon="trash3"
|
||||||
|
tooltip="Remove entry"
|
||||||
|
click={() => removeEntry(index)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{/each}
|
||||||
|
|
||||||
|
<div class="input-group m-1">
|
||||||
|
<input type="text" class="form-control" placeholder="New entry" bind:value={newEntry} />
|
||||||
|
<IconButton color="success" icon="plus" tooltip="Add entry" click={() => addEntry()} />
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -16,6 +16,7 @@
|
||||||
import { encode } from "base64-arraybuffer";
|
import { encode } from "base64-arraybuffer";
|
||||||
import { apiFetchClient } from "$lib/api/fetch";
|
import { apiFetchClient } from "$lib/api/fetch";
|
||||||
import IconButton from "$lib/components/IconButton.svelte";
|
import IconButton from "$lib/components/IconButton.svelte";
|
||||||
|
import EditableField from "../EditableField.svelte";
|
||||||
|
|
||||||
const MAX_AVATAR_BYTES = 1_000_000;
|
const MAX_AVATAR_BYTES = 1_000_000;
|
||||||
|
|
||||||
|
@ -196,6 +197,13 @@
|
||||||
else links = [...links.slice(0, index - 1), ...links.slice(0, index + 1)];
|
else links = [...links.slice(0, index - 1), ...links.slice(0, index + 1)];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const removeField = (index: number) => {
|
||||||
|
if (fields.length === 1) fields = [];
|
||||||
|
else if (index === 0) fields = fields.slice(1);
|
||||||
|
else if (index === fields.length - 1) fields = fields.slice(0, fields.length - 1);
|
||||||
|
else fields = [...fields.slice(0, index - 1), ...fields.slice(0, index + 1)];
|
||||||
|
};
|
||||||
|
|
||||||
const updateUser = async () => {
|
const updateUser = async () => {
|
||||||
try {
|
try {
|
||||||
const resp = await apiFetchClient<MeUser>("/users/@me", "PATCH", {
|
const resp = await apiFetchClient<MeUser>("/users/@me", "PATCH", {
|
||||||
|
@ -419,5 +427,18 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<hr />
|
||||||
|
<h4>
|
||||||
|
Fields <Button on:click={() => (fields = [...fields, { name: "New field", entries: [] }])}>
|
||||||
|
Add new field
|
||||||
|
</Button>
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
<div class="grid gap-3">
|
||||||
|
<div class="row row-cols-1 row-cols-md-2">
|
||||||
|
{#each fields as _, index}
|
||||||
|
<EditableField bind:field={fields[index]} deleteField={() => removeField(index)} />
|
||||||
|
{/each}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
Loading…
Reference in New Issue