mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
* add unicorn to eslint * fix lint errors for cli * fix merge * fix album name extraction * Update cli/src/commands/upload.command.ts Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> * es2k23 * use lowercase os * return undefined album name * fix bug in asset response dto * auto fix issues * fix server code style * es2022 and formatting * fix compilation error * fix test * fix config load * fix last lint errors * set string type * bump ts * start work on web * web formatting * Fix UUIDParamDto as UUIDParamDto * fix library service lint * fix web errors * fix errors * formatting * wip * lints fixed * web can now start * alphabetical package json * rename error * chore: clean up --------- Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
84 lines
2.3 KiB
Svelte
84 lines
2.3 KiB
Svelte
<script lang="ts">
|
|
import { api, type PersonResponseDto } from '@api';
|
|
import FaceThumbnail from './face-thumbnail.svelte';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { searchNameLocal } from '$lib/utils/person';
|
|
import SearchBar from './search-bar.svelte';
|
|
import { maximumLengthSearchPeople, timeBeforeShowLoadingSpinner } from '$lib/constants';
|
|
|
|
export let screenHeight: number;
|
|
export let people: PersonResponseDto[];
|
|
export let peopleCopy: PersonResponseDto[];
|
|
export let unselectedPeople: PersonResponseDto[];
|
|
|
|
let name = '';
|
|
let searchWord: string;
|
|
let isSearchingPeople = false;
|
|
|
|
let dispatch = createEventDispatcher<{
|
|
select: PersonResponseDto;
|
|
}>();
|
|
|
|
$: {
|
|
people = peopleCopy.filter(
|
|
(person) => !unselectedPeople.some((unselectedPerson) => unselectedPerson.id === person.id),
|
|
);
|
|
if (name) {
|
|
people = searchNameLocal(name, people, maximumLengthSearchPeople);
|
|
}
|
|
}
|
|
|
|
const searchPeople = async (force: boolean) => {
|
|
if (name === '') {
|
|
people = peopleCopy;
|
|
return;
|
|
}
|
|
if (!force && people.length < maximumLengthSearchPeople && name.startsWith(searchWord)) {
|
|
return;
|
|
}
|
|
|
|
const timeout = setTimeout(() => (isSearchingPeople = true), timeBeforeShowLoadingSpinner);
|
|
try {
|
|
const { data } = await api.searchApi.searchPerson({ name });
|
|
people = data;
|
|
searchWord = name;
|
|
} catch (error) {
|
|
handleError(error, "Can't search people");
|
|
} finally {
|
|
clearTimeout(timeout);
|
|
}
|
|
|
|
isSearchingPeople = false;
|
|
};
|
|
</script>
|
|
|
|
<div class=" w-40 sm:w-48 md:w-96 h-14 mb-8">
|
|
<SearchBar
|
|
bind:name
|
|
{isSearchingPeople}
|
|
on:reset={() => {
|
|
people = peopleCopy;
|
|
}}
|
|
on:search={({ detail }) => searchPeople(detail.force ?? false)}
|
|
/>
|
|
</div>
|
|
|
|
<div
|
|
class="immich-scrollbar overflow-y-auto rounded-3xl bg-gray-200 p-10 dark:bg-immich-dark-gray"
|
|
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 people as person (person.id)}
|
|
<FaceThumbnail
|
|
{person}
|
|
on:click={() => {
|
|
dispatch('select', person);
|
|
}}
|
|
circle
|
|
border
|
|
selectable
|
|
/>
|
|
{/each}
|
|
</div>
|
|
</div>
|