Skip to content

Commit

Permalink
refactor(web): admin and user signup forms (#7739)
Browse files Browse the repository at this point in the history
  • Loading branch information
michelheusschen committed Mar 8, 2024
1 parent 46597aa commit ffdd504
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 44 deletions.
28 changes: 9 additions & 19 deletions web/src/lib/components/forms/admin-registration-form.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@
import Button from '../elements/buttons/button.svelte';
import PasswordField from '../shared-components/password-field.svelte';
let errorMessage: string;
let email = '';
let password = '';
let confirmPassword = '';
let name = '';
let errorMessage: string;
let canRegister = false;
$: {
Expand All @@ -21,25 +24,12 @@
}
}
async function registerAdmin(event: SubmitEvent & { currentTarget: HTMLFormElement }) {
async function registerAdmin() {
if (canRegister) {
errorMessage = '';
const form = new FormData(event.currentTarget);
const email = form.get('email');
const password = form.get('password');
const name = form.get('name');
try {
await signUpAdmin({
signUpDto: {
email: String(email),
password: String(password),
name: String(name),
},
});
await signUpAdmin({ signUpDto: { email, password, name } });
await goto(AppRoute.AUTH_LOGIN);
} catch (error) {
handleError(error, 'Unable to create admin account');
Expand All @@ -52,12 +42,12 @@
<form on:submit|preventDefault={registerAdmin} method="post" class="mt-5 flex flex-col gap-5">
<div class="flex flex-col gap-2">
<label class="immich-form-label" for="email">Admin Email</label>
<input class="immich-form-input" id="email" name="email" type="email" autocomplete="email" required />
<input class="immich-form-input" id="email" bind:value={email} type="email" autocomplete="email" required />
</div>

<div class="flex flex-col gap-2">
<label class="immich-form-label" for="password">Admin Password</label>
<PasswordField id="password" name="password" bind:password autocomplete="new-password" />
<PasswordField id="password" bind:password autocomplete="new-password" />
</div>

<div class="flex flex-col gap-2">
Expand All @@ -67,7 +57,7 @@

<div class="flex flex-col gap-2">
<label class="immich-form-label" for="name">Name</label>
<input class="immich-form-input" id="name" name="name" type="text" autocomplete="name" required />
<input class="immich-form-input" id="name" bind:value={name} type="text" autocomplete="name" required />
</div>

{#if errorMessage}
Expand Down
44 changes: 19 additions & 25 deletions web/src/lib/components/forms/create-user-form.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,18 @@
let error: string;
let success: string;
let email = '';
let password = '';
let confirmPassword = '';
let name = '';
let shouldChangePassword = true;
let canCreateUser = false;
let quotaSize: number | undefined;
let isCreatingUser = false;
$: quotaSizeWarning = quotaSize && convertToBytes(Number(quotaSize), 'GiB') > $serverInfo.diskSizeRaw;
$: quotaSizeInBytes = quotaSize ? convertToBytes(quotaSize, 'GiB') : null;
$: quotaSizeWarning = quotaSizeInBytes && quotaSizeInBytes > $serverInfo.diskSizeRaw;
$: {
if (password !== confirmPassword && confirmPassword.length > 0) {
Expand All @@ -36,29 +39,19 @@
cancel: void;
}>();
async function registerUser(event: SubmitEvent) {
async function registerUser() {
if (canCreateUser && !isCreatingUser) {
isCreatingUser = true;
error = '';
const formElement = event.target as HTMLFormElement;
const form = new FormData(formElement);
const email = form.get('email');
const password = form.get('password');
const name = form.get('name');
const quotaSize = form.get('quotaSize');
try {
await createUser({
createUserDto: {
email: String(email),
password: String(password),
shouldChangePassword: Boolean(shouldChangePassword),
name: String(name),
quotaSizeInBytes: quotaSize ? convertToBytes(Number(quotaSize), 'GiB') : null,
email,
password,
shouldChangePassword,
name,
quotaSizeInBytes,
},
});
Expand Down Expand Up @@ -87,12 +80,12 @@
<form on:submit|preventDefault={registerUser} autocomplete="off">
<div class="m-4 flex flex-col gap-2">
<label class="immich-form-label" for="email">Email</label>
<input class="immich-form-input" id="email" name="email" type="email" required />
<input class="immich-form-input" id="email" bind:value={email} type="email" required />
</div>

<div class="m-4 flex flex-col gap-2">
<label class="immich-form-label" for="password">Password</label>
<PasswordField id="password" name="password" bind:password autocomplete="new-password" />
<PasswordField id="password" bind:password autocomplete="new-password" />
</div>

<div class="m-4 flex flex-col gap-2">
Expand All @@ -109,16 +102,17 @@

<div class="m-4 flex flex-col gap-2">
<label class="immich-form-label" for="name">Name</label>
<input class="immich-form-input" id="name" name="name" type="text" required />
<input class="immich-form-input" id="name" bind:value={name} type="text" required />
</div>

<div class="m-4 flex flex-col gap-2">
<label class="flex items-center gap-2 immich-form-label" for="quotaSize"
>Quota Size (GiB) {#if quotaSizeWarning}
<label class="flex items-center gap-2 immich-form-label" for="quotaSize">
Quota Size (GiB)
{#if quotaSizeWarning}
<p class="text-red-400 text-sm">You set a quota higher than the disk size</p>
{/if}</label
>
<input class="immich-form-input" id="quotaSize" name="quotaSize" type="number" min="0" bind:value={quotaSize} />
{/if}
</label>
<input class="immich-form-input" id="quotaSize" type="number" min="0" bind:value={quotaSize} />
</div>

{#if error}
Expand Down

0 comments on commit ffdd504

Please sign in to comment.