mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
feat(web): use websocket to update the feature photo (#10683)
feat: use ws to update the feature photo
This commit is contained in:
parent
821570f2fb
commit
e0bb9add91
2 changed files with 27 additions and 3 deletions
|
@ -8,6 +8,8 @@
|
|||
import { getMetadataSearchQuery } from '$lib/utils/metadata-search';
|
||||
import { t } from 'svelte-i18n';
|
||||
import EmptyPlaceholder from '$lib/components/shared-components/empty-placeholder.svelte';
|
||||
import { onMount } from 'svelte';
|
||||
import { websocketEvents } from '$lib/stores/websocket';
|
||||
|
||||
export let data: PageData;
|
||||
|
||||
|
@ -36,6 +38,18 @@
|
|||
MAX_PLACE_ITEMS = screenSize < 768 ? Math.floor(innerWidth / 150) : Math.floor(innerWidth / 172);
|
||||
}
|
||||
}
|
||||
|
||||
onMount(() => {
|
||||
return websocketEvents.on('on_person_thumbnail', (personId: string) => {
|
||||
people.map((person) => {
|
||||
if (person.id === personId) {
|
||||
person.updatedAt = Date.now().toString();
|
||||
}
|
||||
});
|
||||
// trigger reactivity
|
||||
people = people;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<svelte:window bind:innerWidth={screenSize} />
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
NotificationType,
|
||||
} from '$lib/components/shared-components/notification/notification';
|
||||
import { ActionQueryParameterValue, AppRoute, QueryParameter } from '$lib/constants';
|
||||
import { getPeopleThumbnailUrl } from '$lib/utils';
|
||||
import { getPeopleThumbnailUrl, handlePromiseError } from '$lib/utils';
|
||||
import { handleError } from '$lib/utils/handle-error';
|
||||
import { shortcut } from '$lib/actions/shortcut';
|
||||
import {
|
||||
|
@ -35,6 +35,7 @@
|
|||
import SearchPeople from '$lib/components/faces-page/people-search.svelte';
|
||||
import LinkButton from '$lib/components/elements/buttons/link-button.svelte';
|
||||
import { t } from 'svelte-i18n';
|
||||
import { websocketEvents } from '$lib/stores/websocket';
|
||||
|
||||
export let data: PageData;
|
||||
|
||||
|
@ -79,12 +80,21 @@
|
|||
}
|
||||
}
|
||||
|
||||
onMount(async () => {
|
||||
onMount(() => {
|
||||
const getSearchedPeople = $page.url.searchParams.get(QueryParameter.SEARCHED_PEOPLE);
|
||||
if (getSearchedPeople) {
|
||||
searchName = getSearchedPeople;
|
||||
await handleSearchPeople(true, searchName);
|
||||
handlePromiseError(handleSearchPeople(true, searchName));
|
||||
}
|
||||
return websocketEvents.on('on_person_thumbnail', (personId: string) => {
|
||||
people.map((person) => {
|
||||
if (person.id === personId) {
|
||||
person.updatedAt = Date.now().toString();
|
||||
}
|
||||
});
|
||||
// trigger reactivity
|
||||
people = people;
|
||||
});
|
||||
});
|
||||
|
||||
const handleSearch = async () => {
|
||||
|
|
Loading…
Reference in a new issue