refactor: user page modals (#18147)

This commit is contained in:
Daniel Dietzler
2025-05-07 23:58:46 +02:00
committed by GitHub
parent a169fb6a79
commit 5250269fa4
8 changed files with 217 additions and 228 deletions

View File

@@ -1,55 +0,0 @@
<script lang="ts">
import { mdiKeyVariant } from '@mdi/js';
import { t } from 'svelte-i18n';
import FullScreenModal from '../shared-components/full-screen-modal.svelte';
import { NotificationType, notificationController } from '../shared-components/notification/notification';
import { Button } from '@immich/ui';
interface Props {
apiKey: { name: string };
title: string;
cancelText?: string;
submitText?: string;
onSubmit: (apiKey: { name: string }) => void;
onCancel: () => void;
}
let {
apiKey = $bindable(),
title,
cancelText = $t('cancel'),
submitText = $t('save'),
onSubmit,
onCancel,
}: Props = $props();
const handleSubmit = () => {
if (apiKey.name) {
onSubmit({ name: apiKey.name });
} else {
notificationController.show({
message: $t('api_key_empty'),
type: NotificationType.Warning,
});
}
};
const onsubmit = (event: Event) => {
event.preventDefault();
handleSubmit();
};
</script>
<FullScreenModal {title} icon={mdiKeyVariant} onClose={() => onCancel()}>
<form {onsubmit} 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>
{#snippet stickyBottom()}
<Button shape="round" color="secondary" fullWidth onclick={() => onCancel()}>{cancelText}</Button>
<Button shape="round" type="submit" fullWidth form="api-key-form">{submitText}</Button>
{/snippet}
</FullScreenModal>

View File

@@ -1,32 +0,0 @@
<script lang="ts">
import { copyToClipboard } from '$lib/utils';
import { Button } from '@immich/ui';
import { mdiKeyVariant } from '@mdi/js';
import { t } from 'svelte-i18n';
import FullScreenModal from '../shared-components/full-screen-modal.svelte';
interface Props {
secret?: string;
onDone: () => void;
}
let { secret = '', onDone }: Props = $props();
</script>
<FullScreenModal title={$t('api_key')} icon={mdiKeyVariant} onClose={onDone}>
<div class="text-immich-primary dark:text-immich-dark-primary">
<p class="text-sm dark:text-immich-dark-fg">
{$t('api_key_description')}
</p>
</div>
<div class="my-4 flex flex-col gap-2">
<!-- <label class="immich-form-label" for="secret">{ $t("api_key") }</label> -->
<textarea class="immich-form-input" id="secret" name="secret" readonly={true} value={secret}></textarea>
</div>
{#snippet stickyBottom()}
<Button shape="round" onclick={() => copyToClipboard(secret)} fullWidth>{$t('copy_to_clipboard')}</Button>
<Button shape="round" onclick={onDone} fullWidth>{$t('done')}</Button>
{/snippet}
</FullScreenModal>