2024-11-23 13:42:41 -05:00
|
|
|
<script lang="ts">
|
|
|
|
import type { Category } from '$lib/types';
|
|
|
|
import { createEventDispatcher } from 'svelte';
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
import { onMount } from 'svelte';
|
|
|
|
let modal: HTMLDialogElement;
|
|
|
|
import { t } from 'svelte-i18n';
|
|
|
|
|
2024-11-26 20:06:52 -05:00
|
|
|
import InformationSlabCircle from '~icons/mdi/information-slab-circle';
|
|
|
|
|
2024-11-23 13:42:41 -05:00
|
|
|
export let categories: Category[] = [];
|
|
|
|
|
|
|
|
let category_to_edit: Category | null = null;
|
|
|
|
|
2024-11-26 15:10:17 -05:00
|
|
|
let is_changed: boolean = false;
|
|
|
|
|
2024-11-23 13:42:41 -05:00
|
|
|
onMount(async () => {
|
|
|
|
modal = document.getElementById('my_modal_1') as HTMLDialogElement;
|
|
|
|
if (modal) {
|
|
|
|
modal.showModal();
|
|
|
|
}
|
|
|
|
let category_fetch = await fetch('/api/categories/categories');
|
|
|
|
categories = await category_fetch.json();
|
|
|
|
// remove the general category if it exists
|
2024-11-26 17:39:10 -05:00
|
|
|
// categories = categories.filter((c) => c.name !== 'general');
|
2024-11-23 13:42:41 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
async function saveCategory() {
|
|
|
|
if (category_to_edit) {
|
|
|
|
let edit_fetch = await fetch(`/api/categories/${category_to_edit.id}`, {
|
|
|
|
method: 'PUT',
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
},
|
|
|
|
body: JSON.stringify(category_to_edit)
|
|
|
|
});
|
|
|
|
if (edit_fetch.ok) {
|
|
|
|
category_to_edit = null;
|
|
|
|
let the_category = (await edit_fetch.json()) as Category;
|
|
|
|
categories = categories.map((c) => {
|
|
|
|
if (c.id === the_category.id) {
|
|
|
|
return the_category;
|
|
|
|
}
|
|
|
|
return c;
|
|
|
|
});
|
2024-11-26 15:10:17 -05:00
|
|
|
is_changed = true;
|
2024-11-23 13:42:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function close() {
|
|
|
|
dispatch('close');
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleKeydown(event: KeyboardEvent) {
|
|
|
|
if (event.key === 'Escape') {
|
|
|
|
dispatch('close');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeCategory(category: Category) {
|
|
|
|
return async () => {
|
|
|
|
let response = await fetch(`/api/categories/${category.id}`, {
|
|
|
|
method: 'DELETE'
|
|
|
|
});
|
|
|
|
if (response.ok) {
|
|
|
|
categories = categories.filter((c) => c.id !== category.id);
|
2024-11-26 15:10:17 -05:00
|
|
|
is_changed = true;
|
2024-11-23 13:42:41 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<dialog id="my_modal_1" class="modal">
|
|
|
|
<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
|
|
|
|
<!-- svelte-ignore a11y-no-noninteractive-tabindex -->
|
|
|
|
<div class="modal-box" role="dialog" on:keydown={handleKeydown} tabindex="0">
|
2024-11-26 17:39:10 -05:00
|
|
|
<h3 class="font-bold text-lg">{$t('categories.manage_categories')}</h3>
|
2024-11-23 13:42:41 -05:00
|
|
|
|
|
|
|
{#each categories as category}
|
|
|
|
<div class="flex justify-between items-center mt-2">
|
|
|
|
<span>{category.display_name} {category.icon}</span>
|
|
|
|
<div class="flex space-x-2">
|
|
|
|
<button on:click={() => (category_to_edit = category)} class="btn btn-primary btn-sm"
|
|
|
|
>Edit</button
|
|
|
|
>
|
2024-11-26 17:39:10 -05:00
|
|
|
{#if category.name != 'general'}
|
|
|
|
<button on:click={removeCategory(category)} class="btn btn-warning btn-sm"
|
|
|
|
>{$t('adventures.remove')}</button
|
|
|
|
>
|
2024-11-26 20:06:52 -05:00
|
|
|
{:else}
|
|
|
|
<button class="btn btn-warning btn-sm btn-disabled">{$t('adventures.remove')}</button>
|
2024-11-26 17:39:10 -05:00
|
|
|
{/if}
|
2024-11-23 13:42:41 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/each}
|
|
|
|
{#if categories.length === 0}
|
2024-11-26 17:39:10 -05:00
|
|
|
<p>{$t('categories.no_categories_found')}</p>
|
2024-11-23 13:42:41 -05:00
|
|
|
{/if}
|
|
|
|
|
|
|
|
{#if category_to_edit}
|
2024-11-26 17:39:10 -05:00
|
|
|
<h2 class="text-center text-xl font-semibold mt-2 mb-2">{$t('categories.edit_category')}</h2>
|
2024-11-26 15:10:17 -05:00
|
|
|
<div class="flex flex-row space-x-2 form-control">
|
|
|
|
<input
|
|
|
|
type="text"
|
2024-11-26 17:39:10 -05:00
|
|
|
placeholder={$t('adventures.name')}
|
2024-11-26 15:10:17 -05:00
|
|
|
bind:value={category_to_edit.display_name}
|
|
|
|
class="input input-bordered w-full max-w-xs"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<input
|
|
|
|
type="text"
|
2024-11-26 17:39:10 -05:00
|
|
|
placeholder={$t('categories.icon')}
|
2024-11-26 15:10:17 -05:00
|
|
|
bind:value={category_to_edit.icon}
|
|
|
|
class="input input-bordered w-full max-w-xs"
|
|
|
|
/>
|
|
|
|
</div>
|
2024-11-26 17:39:10 -05:00
|
|
|
<button class="btn btn-primary" on:click={saveCategory}>{$t('notes.save')}</button>
|
2024-11-23 13:42:41 -05:00
|
|
|
{/if}
|
|
|
|
|
|
|
|
<button class="btn btn-primary mt-4" on:click={close}>{$t('about.close')}</button>
|
2024-11-26 15:10:17 -05:00
|
|
|
|
|
|
|
{#if is_changed}
|
|
|
|
<div role="alert" class="alert alert-info mt-6">
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="none"
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
class="h-6 w-6 shrink-0 stroke-current"
|
|
|
|
>
|
|
|
|
<path
|
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linejoin="round"
|
|
|
|
stroke-width="2"
|
|
|
|
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
|
|
></path>
|
|
|
|
</svg>
|
2024-11-26 17:39:10 -05:00
|
|
|
<span>{$t('categories.update_after_refresh')}</span>
|
2024-11-26 15:10:17 -05:00
|
|
|
</div>
|
|
|
|
{/if}
|
2024-11-23 13:42:41 -05:00
|
|
|
</div>
|
|
|
|
</dialog>
|