mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
bce916e4c8
* wrapper * no more callback * refactor: wip * refactor: wip * refactor: wip * pr feedback * fix * pr feedback
154 lines
5.5 KiB
Svelte
154 lines
5.5 KiB
Svelte
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
import { page } from '$app/stores';
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import { ActionQueryParameterValue, AppRoute, QueryParameter } from '$lib/constants';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { getAllPeople, getPerson, mergePerson, type PersonResponseDto } from '@immich/sdk';
|
|
import { mdiCallMerge, mdiMerge, mdiSwapHorizontal } from '@mdi/js';
|
|
import { createEventDispatcher, onMount } from 'svelte';
|
|
import { flip } from 'svelte/animate';
|
|
import { quintOut } from 'svelte/easing';
|
|
import { fly } from 'svelte/transition';
|
|
import Button from '../elements/buttons/button.svelte';
|
|
import CircleIconButton from '../elements/buttons/circle-icon-button.svelte';
|
|
import ControlAppBar from '../shared-components/control-app-bar.svelte';
|
|
import { NotificationType, notificationController } from '../shared-components/notification/notification';
|
|
import FaceThumbnail from './face-thumbnail.svelte';
|
|
import PeopleList from './people-list.svelte';
|
|
import { dialogController } from '$lib/components/shared-components/dialog/dialog';
|
|
|
|
export let person: PersonResponseDto;
|
|
let people: PersonResponseDto[] = [];
|
|
let selectedPeople: PersonResponseDto[] = [];
|
|
let screenHeight: number;
|
|
|
|
let dispatch = createEventDispatcher<{
|
|
back: void;
|
|
merge: PersonResponseDto;
|
|
}>();
|
|
|
|
$: hasSelection = selectedPeople.length > 0;
|
|
$: peopleToNotShow = [...selectedPeople, person];
|
|
|
|
onMount(async () => {
|
|
const data = await getAllPeople({ withHidden: false });
|
|
people = data.people;
|
|
});
|
|
|
|
const onClose = () => {
|
|
dispatch('back');
|
|
};
|
|
|
|
const handleSwapPeople = async () => {
|
|
[person, selectedPeople[0]] = [selectedPeople[0], person];
|
|
$page.url.searchParams.set(QueryParameter.ACTION, ActionQueryParameterValue.MERGE);
|
|
await goto(`${AppRoute.PEOPLE}/${person.id}?${$page.url.searchParams.toString()}`);
|
|
};
|
|
|
|
const onSelect = (selected: PersonResponseDto) => {
|
|
if (selectedPeople.includes(selected)) {
|
|
selectedPeople = selectedPeople.filter((person) => person.id !== selected.id);
|
|
return;
|
|
}
|
|
|
|
if (selectedPeople.length >= 5) {
|
|
notificationController.show({
|
|
message: 'You can only merge up to 5 faces at a time',
|
|
type: NotificationType.Info,
|
|
});
|
|
return;
|
|
}
|
|
|
|
selectedPeople = [selected, ...selectedPeople];
|
|
};
|
|
|
|
const handleMerge = async () => {
|
|
const isConfirm = await dialogController.show({
|
|
id: 'merge-people',
|
|
prompt: 'Do you want to merge these people?',
|
|
});
|
|
|
|
if (!isConfirm) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
let results = await mergePerson({
|
|
id: person.id,
|
|
mergePersonDto: { ids: selectedPeople.map(({ id }) => id) },
|
|
});
|
|
const mergedPerson = await getPerson({ id: person.id });
|
|
const count = results.filter(({ success }) => success).length;
|
|
notificationController.show({
|
|
message: `Merged ${count} ${count === 1 ? 'person' : 'people'}`,
|
|
type: NotificationType.Info,
|
|
});
|
|
dispatch('merge', mergedPerson);
|
|
} catch (error) {
|
|
handleError(error, 'Cannot merge people');
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<svelte:window bind:innerHeight={screenHeight} />
|
|
|
|
<section
|
|
transition:fly={{ y: 500, duration: 100, easing: quintOut }}
|
|
class="absolute left-0 top-0 z-[9999] h-full w-full bg-immich-bg dark:bg-immich-dark-bg"
|
|
>
|
|
<ControlAppBar on:close={onClose}>
|
|
<svelte:fragment slot="leading">
|
|
{#if hasSelection}
|
|
Selected {selectedPeople.length}
|
|
{:else}
|
|
Merge people
|
|
{/if}
|
|
<div />
|
|
</svelte:fragment>
|
|
<svelte:fragment slot="trailing">
|
|
<Button size={'sm'} disabled={!hasSelection} on:click={handleMerge}>
|
|
<Icon path={mdiMerge} size={18} />
|
|
<span class="ml-2"> Merge</span></Button
|
|
>
|
|
</svelte:fragment>
|
|
</ControlAppBar>
|
|
<section class="bg-immich-bg px-[70px] pt-[100px] dark:bg-immich-dark-bg">
|
|
<section id="merge-face-selector relative">
|
|
<div class="mb-10 h-[200px] place-content-center place-items-center">
|
|
<p class="mb-4 text-center uppercase dark:text-white">Choose matching people to merge</p>
|
|
|
|
<div class="grid grid-flow-col-dense place-content-center place-items-center gap-4">
|
|
{#each selectedPeople as person (person.id)}
|
|
<div animate:flip={{ duration: 250, easing: quintOut }}>
|
|
<FaceThumbnail border circle {person} selectable thumbnailSize={120} on:click={() => onSelect(person)} />
|
|
</div>
|
|
{/each}
|
|
|
|
{#if hasSelection}
|
|
<div class="relative h-full">
|
|
<div class="flex flex-col h-full justify-between">
|
|
<div class="flex h-full items-center justify-center">
|
|
<Icon path={mdiCallMerge} size={48} class="rotate-90 dark:text-white" />
|
|
</div>
|
|
{#if selectedPeople.length === 1}
|
|
<div class="absolute bottom-2">
|
|
<CircleIconButton
|
|
title="Swap merge direction"
|
|
icon={mdiSwapHorizontal}
|
|
size="24"
|
|
on:click={handleSwapPeople}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
<FaceThumbnail {person} border circle selectable={false} thumbnailSize={180} />
|
|
</div>
|
|
</div>
|
|
|
|
<PeopleList {people} {peopleToNotShow} {screenHeight} on:select={({ detail }) => onSelect(detail)} />
|
|
</section>
|
|
</section>
|
|
</section>
|