mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 20:25:32 -04: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 * feat(server): lighter buckets * fix: flappy e2e test * lint * revert settings * unneeded cast * fix after merge * Adapt web client to consume new server response format * test * missing import * lint * Use nulls, make-sql * openapi battle * date->string * tests * tests * lint/tests * lint * test * push aggregation to query * openapi * stack as tuple * openapi * update references to description * update alt text tests * update sql * update sql * update timeline tests * linting, fix expected response * string tuple * fix spec * fix * silly generator * rename patch * minimize sorting * review * lint * lint * sql * test * avoid abbreviations * review comment - type safety in test * merge conflicts * lint * lint/abbreviations * remove unncessary code * review comments * sql * re-add package-lock * use booleans, fix visibility in openapi spec, less cursed controller * update sql * no need to use sql template * array access actually doesn't seem to matter * remove redundant code * re-add sql decorator * unused type * remove null assertions * bad merge * Fix test * shave * extra clean shave * use decorator for content type * redundant types * redundant comment * update comment * unnecessary res --------- Co-authored-by: mertalev <101130780+mertalev@users.noreply.github.com> Co-authored-by: Alex <alex.tran1502@gmail.com>
79 lines
3.1 KiB
TypeScript
79 lines
3.1 KiB
TypeScript
import { notificationController, NotificationType } from '$lib/components/shared-components/notification/notification';
|
|
import type { AssetStore, TimelineAsset } from '$lib/stores/assets-store.svelte';
|
|
import type { StackResponse } from '$lib/utils/asset-utils';
|
|
import { AssetVisibility, deleteAssets as deleteBulk } from '@immich/sdk';
|
|
import { t } from 'svelte-i18n';
|
|
import { get } from 'svelte/store';
|
|
import { handleError } from './handle-error';
|
|
|
|
export type OnDelete = (assetIds: string[]) => void;
|
|
export type OnRestore = (ids: string[]) => void;
|
|
export type OnLink = (assets: { still: TimelineAsset; motion: TimelineAsset }) => void;
|
|
export type OnUnlink = (assets: { still: TimelineAsset; motion: TimelineAsset }) => void;
|
|
export type OnAddToAlbum = (ids: string[], albumId: string) => void;
|
|
export type OnArchive = (ids: string[], visibility: AssetVisibility) => void;
|
|
export type OnFavorite = (ids: string[], favorite: boolean) => void;
|
|
export type OnStack = (result: StackResponse) => void;
|
|
export type OnUnstack = (assets: TimelineAsset[]) => void;
|
|
export type OnSetVisibility = (ids: string[]) => void;
|
|
|
|
export const deleteAssets = async (force: boolean, onAssetDelete: OnDelete, ids: string[]) => {
|
|
const $t = get(t);
|
|
try {
|
|
await deleteBulk({ assetBulkDeleteDto: { ids, force } });
|
|
onAssetDelete(ids);
|
|
|
|
notificationController.show({
|
|
message: force
|
|
? $t('assets_permanently_deleted_count', { values: { count: ids.length } })
|
|
: $t('assets_trashed_count', { values: { count: ids.length } }),
|
|
type: NotificationType.Info,
|
|
});
|
|
} catch (error) {
|
|
handleError(error, $t('errors.unable_to_delete_assets'));
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Update the asset stack state in the asset store based on the provided stack response.
|
|
* This function updates the stack information so that the icon is shown for the primary asset
|
|
* and removes any assets from the timeline that are marked for deletion.
|
|
*
|
|
* @param {AssetStore} assetStore - The asset store to update.
|
|
* @param {StackResponse} stackResponse - The stack response containing the stack and assets to delete.
|
|
*/
|
|
export function updateStackedAssetInTimeline(assetStore: AssetStore, { stack, toDeleteIds }: StackResponse) {
|
|
if (stack != undefined) {
|
|
assetStore.updateAssetOperation([stack.primaryAssetId], (asset) => {
|
|
asset.stack = {
|
|
id: stack.id,
|
|
primaryAssetId: stack.primaryAssetId,
|
|
assetCount: stack.assets.length,
|
|
};
|
|
return { remove: false };
|
|
});
|
|
|
|
assetStore.removeAssets(toDeleteIds);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update the asset store to reflect the unstacked state of assets.
|
|
* This function updates the stack property of each asset to undefined, effectively unstacking them.
|
|
* It also adds the unstacked assets back to the asset store.
|
|
*
|
|
* @param assetStore - The asset store to update.
|
|
* @param assets - The array of asset response DTOs to update in the asset store.
|
|
*/
|
|
export function updateUnstackedAssetInTimeline(assetStore: AssetStore, assets: TimelineAsset[]) {
|
|
assetStore.updateAssetOperation(
|
|
assets.map((asset) => asset.id),
|
|
(asset) => {
|
|
asset.stack = null;
|
|
return { remove: false };
|
|
},
|
|
);
|
|
|
|
assetStore.addAssets(assets);
|
|
}
|