mirror of
https://github.com/immich-app/immich.git
synced 2025-12-22 01:11:20 +03:00
* feat(web): lighter timeline buckets * GalleryViewer * weird ssr * Remove generics from AssetInteraction * ensure keys on getAssetInfo, alt-text * empty - trigger ci * re-add alt-text * test fix * update tests * tests * missing import * fix: flappy e2e test * lint * revert settings * unneeded cast * fix after merge * missing import * lint * review * lint * avoid abbreviations * review comment - type safety in test * merge conflicts * lint * lint/abbreviations * fix: left-over migration --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
77 lines
2.4 KiB
TypeScript
77 lines
2.4 KiB
TypeScript
import type { TimelineAsset } from '$lib/stores/assets-store.svelte';
|
|
import { user } from '$lib/stores/user.store';
|
|
import { Visibility, type UserAdminResponseDto } from '@immich/sdk';
|
|
import { SvelteSet } from 'svelte/reactivity';
|
|
import { fromStore } from 'svelte/store';
|
|
|
|
export class AssetInteraction {
|
|
selectedAssets = $state<TimelineAsset[]>([]);
|
|
hasSelectedAsset(assetId: string) {
|
|
return this.selectedAssets.some((asset) => asset.id === assetId);
|
|
}
|
|
selectedGroup = new SvelteSet<string>();
|
|
assetSelectionCandidates = $state<TimelineAsset[]>([]);
|
|
hasSelectionCandidate(assetId: string) {
|
|
return this.assetSelectionCandidates.some((asset) => asset.id === assetId);
|
|
}
|
|
assetSelectionStart = $state<TimelineAsset | null>(null);
|
|
selectionActive = $derived(this.selectedAssets.length > 0);
|
|
|
|
private user = fromStore<UserAdminResponseDto | undefined>(user);
|
|
private userId = $derived(this.user.current?.id);
|
|
|
|
isAllTrashed = $derived(this.selectedAssets.every((asset) => asset.isTrashed));
|
|
isAllArchived = $derived(this.selectedAssets.every((asset) => asset.visibility === Visibility.Archive));
|
|
isAllFavorite = $derived(this.selectedAssets.every((asset) => asset.isFavorite));
|
|
isAllUserOwned = $derived(this.selectedAssets.every((asset) => asset.ownerId === this.userId));
|
|
|
|
selectAsset(asset: TimelineAsset) {
|
|
if (!this.hasSelectedAsset(asset.id)) {
|
|
this.selectedAssets.push(asset);
|
|
}
|
|
}
|
|
|
|
selectAssets(assets: TimelineAsset[]) {
|
|
for (const asset of assets) {
|
|
this.selectAsset(asset);
|
|
}
|
|
}
|
|
|
|
removeAssetFromMultiselectGroup(assetId: string) {
|
|
const index = this.selectedAssets.findIndex((a) => a.id == assetId);
|
|
if (index !== -1) {
|
|
this.selectedAssets.splice(index, 1);
|
|
}
|
|
}
|
|
|
|
addGroupToMultiselectGroup(group: string) {
|
|
this.selectedGroup.add(group);
|
|
}
|
|
|
|
removeGroupFromMultiselectGroup(group: string) {
|
|
this.selectedGroup.delete(group);
|
|
}
|
|
|
|
setAssetSelectionStart(asset: TimelineAsset | null) {
|
|
this.assetSelectionStart = asset;
|
|
}
|
|
|
|
setAssetSelectionCandidates(assets: TimelineAsset[]) {
|
|
this.assetSelectionCandidates = assets;
|
|
}
|
|
|
|
clearAssetSelectionCandidates() {
|
|
this.assetSelectionCandidates = [];
|
|
}
|
|
|
|
clearMultiselect() {
|
|
// Multi-selection
|
|
this.selectedAssets = [];
|
|
this.selectedGroup.clear();
|
|
|
|
// Range selection
|
|
this.assetSelectionCandidates = [];
|
|
this.assetSelectionStart = null;
|
|
}
|
|
}
|