mirror of
https://github.com/immich-app/immich.git
synced 2025-12-23 17:25:11 +03:00
* refactor: asset-store * Potential fix for code scanning alert no. 152: Prototype-polluting function Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
77 lines
2.4 KiB
TypeScript
77 lines
2.4 KiB
TypeScript
import type { TimelineAsset } from '$lib/managers/timeline-manager/types';
|
|
import { user } from '$lib/stores/user.store';
|
|
import { AssetVisibility, 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 === AssetVisibility.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;
|
|
}
|
|
}
|