mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
39 lines
1.4 KiB
Svelte
39 lines
1.4 KiB
Svelte
<script lang="ts">
|
|
import { mdiKeyVariant } from '@mdi/js';
|
|
import { t } from 'svelte-i18n';
|
|
import Button from '../elements/buttons/button.svelte';
|
|
import FullScreenModal from '../shared-components/full-screen-modal.svelte';
|
|
import { NotificationType, notificationController } from '../shared-components/notification/notification';
|
|
|
|
export let apiKey: { name: string };
|
|
export let title: string;
|
|
export let cancelText = $t('cancel');
|
|
export let submitText = $t('save');
|
|
|
|
export let onSubmit: (apiKey: { name: string }) => void;
|
|
export let onCancel: () => void;
|
|
|
|
const handleSubmit = () => {
|
|
if (apiKey.name) {
|
|
onSubmit({ name: apiKey.name });
|
|
} else {
|
|
notificationController.show({
|
|
message: $t('api_key_empty'),
|
|
type: NotificationType.Warning,
|
|
});
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<FullScreenModal {title} icon={mdiKeyVariant} onClose={() => onCancel()}>
|
|
<form on:submit|preventDefault={handleSubmit} autocomplete="off" id="api-key-form">
|
|
<div class="mb-4 flex flex-col gap-2">
|
|
<label class="immich-form-label" for="name">{$t('name')}</label>
|
|
<input class="immich-form-input" id="name" name="name" type="text" bind:value={apiKey.name} />
|
|
</div>
|
|
</form>
|
|
<svelte:fragment slot="sticky-bottom">
|
|
<Button color="gray" fullwidth on:click={() => onCancel()}>{cancelText}</Button>
|
|
<Button type="submit" fullwidth form="api-key-form">{submitText}</Button>
|
|
</svelte:fragment>
|
|
</FullScreenModal>
|