mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 12:15:47 -04:00
* Allow 0GiB quotas in user create/edit form, remove unused translations * Make requireQuota check for null or 0 * Add unlimited quota change to the docs * Fix user dto formatting * Fix formating edit-user-form * Regenerate open-api files * Revert unnecessary i18n file changes * Re-add newline en.json * Resolve linting issues * Fix formatting edit-user-form * Re-add manifest
129 lines
4.1 KiB
Svelte
129 lines
4.1 KiB
Svelte
<script lang="ts">
|
|
import FullScreenModal from '$lib/components/shared-components/full-screen-modal.svelte';
|
|
import { featureFlags } from '$lib/stores/server-config.store';
|
|
import { userInteraction } from '$lib/stores/user.svelte';
|
|
import { ByteUnit, convertToBytes } from '$lib/utils/byte-units';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { createUserAdmin } from '@immich/sdk';
|
|
import { Alert, Button, Field, HelperText, Input, PasswordInput, Stack, Switch } from '@immich/ui';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
onClose: () => void;
|
|
onSubmit: () => void;
|
|
onCancel: () => void;
|
|
oauthEnabled?: boolean;
|
|
}
|
|
|
|
let { onClose, onSubmit: onDone, onCancel, oauthEnabled = false }: Props = $props();
|
|
|
|
let error = $state('');
|
|
let success = $state(false);
|
|
|
|
let email = $state('');
|
|
let password = $state('');
|
|
let passwordConfirm = $state('');
|
|
let name = $state('');
|
|
let shouldChangePassword = $state(true);
|
|
let notify = $state(true);
|
|
|
|
let quotaSize: string | undefined = $state();
|
|
let isCreatingUser = $state(false);
|
|
|
|
let quotaSizeInBytes = $derived(quotaSize === null ? null : convertToBytes(Number(quotaSize), ByteUnit.GiB));
|
|
let quotaSizeWarning = $derived(
|
|
quotaSizeInBytes && userInteraction.serverInfo && quotaSizeInBytes > userInteraction.serverInfo.diskSizeRaw,
|
|
);
|
|
|
|
const passwordMismatch = $derived(password !== passwordConfirm && passwordConfirm.length > 0);
|
|
const passwordMismatchMessage = $derived(passwordMismatch ? $t('password_does_not_match') : '');
|
|
const valid = $derived(!passwordMismatch && !isCreatingUser);
|
|
|
|
const onSubmit = async (event: Event) => {
|
|
event.preventDefault();
|
|
|
|
if (!valid) {
|
|
return;
|
|
}
|
|
|
|
isCreatingUser = true;
|
|
error = '';
|
|
|
|
try {
|
|
await createUserAdmin({
|
|
userAdminCreateDto: {
|
|
email,
|
|
password,
|
|
shouldChangePassword,
|
|
name,
|
|
quotaSizeInBytes,
|
|
notify,
|
|
},
|
|
});
|
|
|
|
success = true;
|
|
|
|
onDone();
|
|
|
|
return;
|
|
} catch (error) {
|
|
handleError(error, $t('errors.unable_to_create_user'));
|
|
} finally {
|
|
isCreatingUser = false;
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<form onsubmit={onSubmit} autocomplete="off" id="create-new-user-form">
|
|
<FullScreenModal title={$t('create_new_user')} showLogo {onClose}>
|
|
{#if error}
|
|
<Alert color="danger" size="small" title={error} closable />
|
|
{/if}
|
|
|
|
{#if success}
|
|
<p class="text-sm text-immich-primary">{$t('new_user_created')}</p>
|
|
{/if}
|
|
|
|
<Stack gap={4}>
|
|
<Field label={$t('email')} required>
|
|
<Input bind:value={email} type="email" />
|
|
</Field>
|
|
|
|
{#if $featureFlags.email}
|
|
<Field label={$t('admin.send_welcome_email')}>
|
|
<Switch id="send-welcome-email" bind:checked={notify} class="text-sm" />
|
|
</Field>
|
|
{/if}
|
|
|
|
<Field label={$t('password')} required={!oauthEnabled}>
|
|
<PasswordInput id="password" bind:value={password} autocomplete="new-password" />
|
|
</Field>
|
|
|
|
<Field label={$t('confirm_password')} required={!oauthEnabled}>
|
|
<PasswordInput id="confirmPassword" bind:value={passwordConfirm} autocomplete="new-password" />
|
|
<HelperText color="danger">{passwordMismatchMessage}</HelperText>
|
|
</Field>
|
|
|
|
<Field label={$t('admin.require_password_change_on_login')}>
|
|
<Switch id="require-password-change" bind:checked={shouldChangePassword} class="text-sm" />
|
|
</Field>
|
|
|
|
<Field label={$t('name')} required>
|
|
<Input bind:value={name} />
|
|
</Field>
|
|
|
|
<Field label={$t('admin.quota_size_gib')}>
|
|
<Input bind:value={quotaSize} type="number" placeholder={$t('unlimited')} min="0" />
|
|
{#if quotaSizeWarning}
|
|
<HelperText color="danger">{$t('errors.quota_higher_than_disk_size')}</HelperText>
|
|
{/if}
|
|
</Field>
|
|
</Stack>
|
|
|
|
{#snippet stickyBottom()}
|
|
<Button color="secondary" fullWidth onclick={onCancel} shape="round">{$t('cancel')}</Button>
|
|
<Button type="submit" disabled={!valid} fullWidth shape="round">{$t('create')}</Button>
|
|
{/snippet}
|
|
</FullScreenModal>
|
|
</form>
|