mirror of
https://github.com/immich-app/immich.git
synced 2025-11-25 12:00:42 +09:00
Some checks are pending
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Docker / pre-job (push) Waiting to run
Docker / Re-Tag ML () (push) Blocked by required conditions
Docker / Re-Tag ML (-armnn) (push) Blocked by required conditions
Docker / Re-Tag ML (-cuda) (push) Blocked by required conditions
Docker / Re-Tag ML (-openvino) (push) Blocked by required conditions
Docker / Re-Tag Server () (push) Blocked by required conditions
Docker / Build and Push ML (armnn, linux/arm64, -armnn) (push) Blocked by required conditions
Docker / Build and Push ML (cpu, linux/amd64,linux/arm64) (push) Blocked by required conditions
Docker / Build and Push ML (cuda, linux/amd64, -cuda) (push) Blocked by required conditions
Docker / Build and Push ML (openvino, linux/amd64, -openvino) (push) Blocked by required conditions
Docker / Build and Push Server (cpu, linux/amd64,linux/arm64) (push) Blocked by required conditions
Docker / Docker Build & Push Server Success (push) Blocked by required conditions
Docker / Docker Build & Push ML Success (push) Blocked by required conditions
Docs build / pre-job (push) Waiting to run
Docs build / Docs Build (push) Blocked by required conditions
Static Code Analysis / pre-job (push) Waiting to run
Static Code Analysis / Run Dart Code Analysis (push) Blocked by required conditions
Test / pre-job (push) Waiting to run
Test / Test & Lint Server (push) Blocked by required conditions
Test / Unit Test CLI (push) Blocked by required conditions
Test / Unit Test CLI (Windows) (push) Blocked by required conditions
Test / Test & Lint Web (push) Blocked by required conditions
Test / End-to-End Lint (push) Blocked by required conditions
Test / Medium Tests (Server) (push) Blocked by required conditions
Test / End-to-End Tests (Server & CLI) (push) Blocked by required conditions
Test / End-to-End Tests (Web) (push) Blocked by required conditions
Test / Unit Test Mobile (push) Blocked by required conditions
Test / Unit Test ML (push) Blocked by required conditions
Test / ShellCheck (push) Waiting to run
Test / OpenAPI Clients (push) Waiting to run
Test / TypeORM Checks (push) Waiting to run
* Allows for toggling of sorting in the merge face selector * Adds toggle to the side panel for faces * Improve layout and fix toggle * chore: ui cleanup --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
57 lines
1.9 KiB
Svelte
57 lines
1.9 KiB
Svelte
<script lang="ts">
|
|
import { type PersonResponseDto } from '@immich/sdk';
|
|
import FaceThumbnail from './face-thumbnail.svelte';
|
|
import SearchPeople from '$lib/components/faces-page/people-search.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
import CircleIconButton from '$lib/components/elements/buttons/circle-icon-button.svelte';
|
|
import { mdiSwapVertical } from '@mdi/js';
|
|
|
|
interface Props {
|
|
screenHeight: number;
|
|
people: PersonResponseDto[];
|
|
peopleToNotShow: PersonResponseDto[];
|
|
onSelect: (person: PersonResponseDto) => void;
|
|
handleSearch?: (sortFaces: boolean) => void;
|
|
}
|
|
|
|
let { screenHeight, people, peopleToNotShow, onSelect, handleSearch }: Props = $props();
|
|
let searchedPeopleLocal: PersonResponseDto[] = $state([]);
|
|
let sortBySimilarirty = $state(false);
|
|
let name = $state('');
|
|
|
|
const showPeople = $derived(
|
|
(name ? searchedPeopleLocal : people).filter(
|
|
(person) => !peopleToNotShow.some((unselectedPerson) => unselectedPerson.id === person.id),
|
|
),
|
|
);
|
|
</script>
|
|
|
|
<div class="w-40 sm:w-48 md:w-full h-14 flex gap-4 place-items-center">
|
|
<div class="md:w-96">
|
|
<SearchPeople type="searchBar" placeholder={$t('search_people')} bind:searchName={name} bind:searchedPeopleLocal />
|
|
</div>
|
|
|
|
{#if handleSearch}
|
|
<CircleIconButton
|
|
icon={mdiSwapVertical}
|
|
onclick={() => {
|
|
sortBySimilarirty = !sortBySimilarirty;
|
|
handleSearch(sortBySimilarirty);
|
|
}}
|
|
color="neutral"
|
|
title={$t('sort_people_by_similarity')}
|
|
></CircleIconButton>
|
|
{/if}
|
|
</div>
|
|
|
|
<div
|
|
class="immich-scrollbar overflow-y-auto rounded-3xl bg-gray-200 p-10 dark:bg-immich-dark-gray mt-6"
|
|
style:max-height={screenHeight - 400 + 'px'}
|
|
>
|
|
<div class="grid-col-2 grid gap-8 md:grid-cols-3 lg:grid-cols-6 xl:grid-cols-8 2xl:grid-cols-10">
|
|
{#each showPeople as person (person.id)}
|
|
<FaceThumbnail {person} onClick={() => onSelect(person)} circle border selectable />
|
|
{/each}
|
|
</div>
|
|
</div>
|