mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
155 lines
5.6 KiB
Svelte
155 lines
5.6 KiB
Svelte
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
import { page } from '$app/state';
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import { ActionQueryParameterValue, AppRoute, QueryParameter } from '$lib/constants';
|
|
import { modalManager } from '$lib/managers/modal-manager.svelte';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { getAllPeople, getPerson, mergePerson, type PersonResponseDto } from '@immich/sdk';
|
|
import { mdiCallMerge, mdiMerge, mdiSwapHorizontal } from '@mdi/js';
|
|
import { onMount } from 'svelte';
|
|
import { t } from 'svelte-i18n';
|
|
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';
|
|
|
|
interface Props {
|
|
person: PersonResponseDto;
|
|
onBack: () => void;
|
|
onMerge: (mergedPerson: PersonResponseDto) => void;
|
|
}
|
|
|
|
let { person = $bindable(), onBack, onMerge }: Props = $props();
|
|
|
|
let people: PersonResponseDto[] = $state([]);
|
|
let selectedPeople: PersonResponseDto[] = $state([]);
|
|
let screenHeight: number = $state(0);
|
|
|
|
let hasSelection = $derived(selectedPeople.length > 0);
|
|
let peopleToNotShow = $derived([...selectedPeople, person]);
|
|
|
|
const handleSearch = async (sortFaces: boolean = false) => {
|
|
const data = await getAllPeople({ withHidden: false, closestPersonId: sortFaces ? person.id : undefined });
|
|
people = data.people;
|
|
};
|
|
|
|
onMount(handleSearch);
|
|
|
|
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 = async (selected: PersonResponseDto) => {
|
|
if (selectedPeople.includes(selected)) {
|
|
selectedPeople = selectedPeople.filter((person) => person.id !== selected.id);
|
|
return;
|
|
}
|
|
|
|
if (selectedPeople.length >= 5) {
|
|
notificationController.show({
|
|
message: $t('merge_people_limit'),
|
|
type: NotificationType.Info,
|
|
});
|
|
return;
|
|
}
|
|
|
|
selectedPeople = [selected, ...selectedPeople];
|
|
|
|
if (selectedPeople.length === 1 && !person.name && selected.name) {
|
|
await handleSwapPeople();
|
|
}
|
|
};
|
|
|
|
const handleMerge = async () => {
|
|
const isConfirm = await modalManager.showDialog({ prompt: $t('merge_people_prompt') });
|
|
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: $t('merged_people_count', { values: { count } }),
|
|
type: NotificationType.Info,
|
|
});
|
|
onMerge(mergedPerson);
|
|
} catch (error) {
|
|
handleError(error, $t('cannot_merge_people'));
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<svelte:window bind:innerHeight={screenHeight} />
|
|
|
|
<section
|
|
transition:fly={{ y: 500, duration: 100, easing: quintOut }}
|
|
class="absolute start-0 top-0 z-[9999] h-full w-full bg-light"
|
|
>
|
|
<ControlAppBar onClose={onBack}>
|
|
{#snippet leading()}
|
|
{#if hasSelection}
|
|
{$t('selected_count', { values: { count: selectedPeople.length } })}
|
|
{:else}
|
|
{$t('merge_people')}
|
|
{/if}
|
|
<div></div>
|
|
{/snippet}
|
|
{#snippet trailing()}
|
|
<Button size="sm" disabled={!hasSelection} onclick={handleMerge}>
|
|
<Icon path={mdiMerge} size={18} />
|
|
<span class="ms-2">{$t('merge')}</span></Button
|
|
>
|
|
{/snippet}
|
|
</ControlAppBar>
|
|
<section class="px-[70px] pt-[100px]">
|
|
<section id="merge-face-selector">
|
|
<div class="mb-10 h-[200px] place-content-center place-items-center">
|
|
<p class="mb-4 text-center uppercase dark:text-white">{$t('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} onClick={() => 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={$t('swap_merge_direction')}
|
|
icon={mdiSwapHorizontal}
|
|
size="24"
|
|
onclick={handleSwapPeople}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
<FaceThumbnail {person} border circle selectable={false} thumbnailSize={180} />
|
|
</div>
|
|
</div>
|
|
<PeopleList {people} {peopleToNotShow} {screenHeight} {onSelect} {handleSearch} />
|
|
</section>
|
|
</section>
|
|
</section>
|