mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
101 lines
2.9 KiB
Svelte
101 lines
2.9 KiB
Svelte
<script context="module" lang="ts">
|
|
import type { Load } from '@sveltejs/kit';
|
|
import { getRequest } from '$lib/api';
|
|
|
|
export const load: Load = async ({ session, fetch }) => {
|
|
if (!session.user) {
|
|
return {
|
|
status: 302,
|
|
redirect: '/auth/login',
|
|
};
|
|
}
|
|
|
|
const usersOnServer = await getRequest('user', session.user.accessToken);
|
|
|
|
return {
|
|
status: 200,
|
|
props: {
|
|
user: session.user,
|
|
usersOnServer,
|
|
},
|
|
};
|
|
};
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import { onMount } from 'svelte';
|
|
import { session } from '$app/stores';
|
|
|
|
import type { ImmichUser } from '$lib/models/immich-user';
|
|
import { AdminSideBarSelection } from '$lib/models/admin-sidebar-selection';
|
|
import SideBarButton from '$lib/components/shared/side-bar-button.svelte';
|
|
import AccountMultipleOutline from 'svelte-material-icons/AccountMultipleOutline.svelte';
|
|
import NavigationBar from '$lib/components/shared/navigation-bar.svelte';
|
|
import UserManagement from '$lib/components/admin/user-management.svelte';
|
|
import FullScreenModal from '$lib/components/shared/full-screen-modal.svelte';
|
|
import CreateUserForm from '$lib/components/forms/create-user-form.svelte';
|
|
|
|
let selectedAction: AdminSideBarSelection;
|
|
|
|
export let user: ImmichUser;
|
|
export let usersOnServer: Array<ImmichUser>;
|
|
|
|
let shouldShowCreateUserForm: boolean;
|
|
|
|
const onButtonClicked = (buttonType: CustomEvent) => {
|
|
selectedAction = buttonType.detail['actionType'] as AdminSideBarSelection;
|
|
};
|
|
|
|
onMount(() => {
|
|
selectedAction = AdminSideBarSelection.USER_MANAGEMENT;
|
|
});
|
|
|
|
const onUserCreated = async () => {
|
|
if ($session.user) {
|
|
usersOnServer = await getRequest('user', $session.user.accessToken);
|
|
}
|
|
|
|
shouldShowCreateUserForm = false;
|
|
};
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Immich - Administration</title>
|
|
</svelte:head>
|
|
|
|
<NavigationBar {user} />
|
|
|
|
{#if shouldShowCreateUserForm}
|
|
<FullScreenModal on:clickOutside={() => (shouldShowCreateUserForm = false)}>
|
|
<div>
|
|
<CreateUserForm on:user-created={onUserCreated} />
|
|
</div>
|
|
</FullScreenModal>
|
|
{/if}
|
|
|
|
<section class="grid grid-cols-[250px_auto] relative pt-[72px] h-screen">
|
|
<section id="admin-sidebar" class="pt-8 pr-6">
|
|
<SideBarButton
|
|
title="User"
|
|
logo={AccountMultipleOutline}
|
|
actionType={AdminSideBarSelection.USER_MANAGEMENT}
|
|
isSelected={selectedAction === AdminSideBarSelection.USER_MANAGEMENT}
|
|
on:selected={onButtonClicked}
|
|
/>
|
|
</section>
|
|
<section class="overflow-y-auto relative">
|
|
<div id="setting-title" class="pt-10 fixed w-full z-50 bg-immich-bg">
|
|
<h1 class="text-lg ml-8 mb-4 text-immich-primary font-medium">{selectedAction}</h1>
|
|
<hr />
|
|
</div>
|
|
|
|
<section id="setting-content" class="relative pt-[85px] flex place-content-center">
|
|
<section class="w-[800px] pt-4">
|
|
{#if selectedAction === AdminSideBarSelection.USER_MANAGEMENT}
|
|
<UserManagement {usersOnServer} on:createUser={() => (shouldShowCreateUserForm = true)} />
|
|
{/if}
|
|
</section>
|
|
</section>
|
|
</section>
|
|
</section>
|