mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 04:06:26 -04:00
* refactor(server): user endpoints * fix repos * fix unit tests --------- Co-authored-by: Daniel Dietzler <mail@ddietzler.dev> Co-authored-by: Alex <alex.tran1502@gmail.com>
111 lines
3.6 KiB
Svelte
111 lines
3.6 KiB
Svelte
<script lang="ts">
|
|
import Button from '$lib/components/elements/buttons/button.svelte';
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import { AppRoute } from '$lib/constants';
|
|
import { user } from '$lib/stores/user.store';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { deleteProfileImage, updateMyUser, type UserAvatarColor } from '@immich/sdk';
|
|
import { mdiCog, mdiLogout, mdiPencil } from '@mdi/js';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import { fade } from 'svelte/transition';
|
|
import { notificationController, NotificationType } from '../notification/notification';
|
|
import UserAvatar from '../user-avatar.svelte';
|
|
import AvatarSelector from './avatar-selector.svelte';
|
|
import FocusTrap from '$lib/components/shared-components/focus-trap.svelte';
|
|
import CircleIconButton from '$lib/components/elements/buttons/circle-icon-button.svelte';
|
|
|
|
let isShowSelectAvatar = false;
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
logout: void;
|
|
close: void;
|
|
}>();
|
|
|
|
const handleSaveProfile = async (color: UserAvatarColor) => {
|
|
try {
|
|
if ($user.profileImagePath !== '') {
|
|
await deleteProfileImage();
|
|
}
|
|
|
|
$user = await updateMyUser({
|
|
userUpdateMeDto: {
|
|
email: $user.email,
|
|
name: $user.name,
|
|
avatarColor: color,
|
|
},
|
|
});
|
|
|
|
isShowSelectAvatar = false;
|
|
|
|
notificationController.show({
|
|
message: 'Saved profile',
|
|
type: NotificationType.Info,
|
|
});
|
|
} catch (error) {
|
|
handleError(error, 'Unable to save profile');
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<FocusTrap>
|
|
<div
|
|
in:fade={{ duration: 100 }}
|
|
out:fade={{ duration: 100 }}
|
|
id="account-info-panel"
|
|
class="absolute right-[25px] top-[75px] z-[100] w-[360px] rounded-3xl bg-gray-200 shadow-lg dark:border dark:border-immich-dark-gray dark:bg-immich-dark-gray"
|
|
>
|
|
<div
|
|
class="mx-4 mt-4 flex flex-col items-center justify-center gap-4 rounded-3xl bg-white p-4 dark:bg-immich-dark-primary/10"
|
|
>
|
|
<div class="relative">
|
|
{#key $user}
|
|
<UserAvatar user={$user} size="xl" />
|
|
{/key}
|
|
<div class="absolute z-10 bottom-0 right-0 rounded-full w-6 h-6">
|
|
<CircleIconButton
|
|
color="primary"
|
|
icon={mdiPencil}
|
|
title="Edit avatar"
|
|
class="border"
|
|
size="12"
|
|
padding="2"
|
|
on:click={() => (isShowSelectAvatar = true)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<p class="text-center text-lg font-medium text-immich-primary dark:text-immich-dark-primary">
|
|
{$user.name}
|
|
</p>
|
|
<p class="text-sm text-gray-500 dark:text-immich-dark-fg">{$user.email}</p>
|
|
</div>
|
|
|
|
<a href={AppRoute.USER_SETTINGS} on:click={() => dispatch('close')}>
|
|
<Button color="dark-gray" size="sm" shadow={false} border>
|
|
<div class="flex place-content-center place-items-center gap-2 px-2">
|
|
<Icon path={mdiCog} size="18" />
|
|
Account Settings
|
|
</div>
|
|
</Button>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="mb-4 flex flex-col">
|
|
<button
|
|
class="flex w-full place-content-center place-items-center gap-2 py-3 font-medium text-gray-500 hover:bg-immich-primary/10 dark:text-gray-300"
|
|
on:click={() => dispatch('logout')}
|
|
>
|
|
<Icon path={mdiLogout} size={24} />
|
|
Sign Out</button
|
|
>
|
|
</div>
|
|
</div>
|
|
</FocusTrap>
|
|
{#if isShowSelectAvatar}
|
|
<AvatarSelector
|
|
user={$user}
|
|
on:close={() => (isShowSelectAvatar = false)}
|
|
on:choose={({ detail: color }) => handleSaveProfile(color)}
|
|
/>
|
|
{/if}
|