mirror of
https://github.com/immich-app/immich
synced 2025-06-09 18:45:37 +00:00
55 lines
2.0 KiB
Svelte
55 lines
2.0 KiB
Svelte
<script lang="ts">
|
|
import { createEventDispatcher } from 'svelte';
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import Button from '../elements/buttons/button.svelte';
|
|
import FullScreenModal from '../shared-components/full-screen-modal.svelte';
|
|
import { mdiFolderSync } from '@mdi/js';
|
|
import { onMount } from 'svelte';
|
|
import { getAllUsers } from '@immich/sdk';
|
|
import { user } from '$lib/stores/user.store';
|
|
import SettingSelect from '$lib/components/shared-components/settings/setting-select.svelte';
|
|
|
|
let ownerId: string = $user.id;
|
|
|
|
let userOptions: { value: string; text: string }[] = [];
|
|
|
|
onMount(async () => {
|
|
const users = await getAllUsers({ isAll: true });
|
|
userOptions = users.map((user) => ({ value: user.id, text: user.name }));
|
|
});
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
cancel: void;
|
|
submit: { ownerId: string };
|
|
delete: void;
|
|
}>();
|
|
|
|
const handleCancel = () => dispatch('cancel');
|
|
const handleSubmit = () => dispatch('submit', { ownerId });
|
|
</script>
|
|
|
|
<FullScreenModal onClose={handleCancel}>
|
|
<div
|
|
class="w-[500px] max-w-[95vw] rounded-3xl border bg-immich-bg p-4 py-8 shadow-sm dark:border-immich-dark-gray dark:bg-immich-dark-gray dark:text-immich-dark-fg"
|
|
>
|
|
<div
|
|
class="flex flex-col place-content-center place-items-center gap-4 px-4 text-immich-primary dark:text-immich-dark-primary"
|
|
>
|
|
<Icon path={mdiFolderSync} size="4em" />
|
|
<h1 class="text-2xl font-medium text-immich-primary dark:text-immich-dark-primary">Select library owner</h1>
|
|
</div>
|
|
|
|
<form on:submit|preventDefault={() => handleSubmit()} autocomplete="off">
|
|
<p class="p-5 text-sm">NOTE: This cannot be changed later!</p>
|
|
|
|
<SettingSelect bind:value={ownerId} options={userOptions} name="user" />
|
|
|
|
<div class="mt-8 flex w-full gap-4 px-4">
|
|
<Button color="gray" fullwidth on:click={() => handleCancel()}>Cancel</Button>
|
|
|
|
<Button type="submit" fullwidth>Create</Button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</FullScreenModal>
|