mirror of
https://github.com/immich-app/immich.git
synced 2025-04-03 22:56:25 +02:00
49 lines
1.7 KiB
Svelte
49 lines
1.7 KiB
Svelte
<script lang="ts">
|
|
import { APIKeyResponseDto } from '@api';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import KeyVariant from 'svelte-material-icons/KeyVariant.svelte';
|
|
import FullScreenModal from '../shared-components/full-screen-modal.svelte';
|
|
import Button from '../elements/buttons/button.svelte';
|
|
|
|
export let apiKey: Partial<APIKeyResponseDto>;
|
|
export let title = 'API Key';
|
|
export let cancelText = 'Cancel';
|
|
export let submitText = 'Save';
|
|
|
|
const dispatch = createEventDispatcher();
|
|
const handleCancel = () => dispatch('cancel');
|
|
const handleSubmit = () => dispatch('submit', { ...apiKey, name: apiKey.name });
|
|
</script>
|
|
|
|
<FullScreenModal on:clickOutside={() => handleCancel()}>
|
|
<div
|
|
class="border bg-immich-bg dark:bg-immich-dark-gray dark:border-immich-dark-gray p-4 shadow-sm w-[500px] max-w-[95vw] rounded-3xl py-8 dark:text-immich-dark-fg"
|
|
>
|
|
<div
|
|
class="flex flex-col place-items-center place-content-center gap-4 px-4 text-immich-primary dark:text-immich-dark-primary"
|
|
>
|
|
<KeyVariant size="4em" />
|
|
<h1 class="text-2xl text-immich-primary dark:text-immich-dark-primary font-medium">
|
|
{title}
|
|
</h1>
|
|
</div>
|
|
|
|
<form on:submit|preventDefault={() => handleSubmit()} autocomplete="off">
|
|
<div class="m-4 flex flex-col gap-2">
|
|
<label class="immich-form-label" for="email">Name</label>
|
|
<input
|
|
class="immich-form-input"
|
|
id="name"
|
|
name="name"
|
|
type="text"
|
|
bind:value={apiKey.name}
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex w-full px-4 gap-4 mt-8">
|
|
<Button color="gray" fullwidth on:click={() => handleCancel()}>{cancelText}</Button>
|
|
<Button type="submit" fullwidth>{submitText}</Button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</FullScreenModal>
|