mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
* feat(server, web): implement share with partner * chore: regenerate api * chore: regenerate api * Pass userId to getAssetCountByTimeBucket and getAssetByTimeBucket * chore: regenerate api * Use AssetGrid to view partner's assets * Remove disableNavBarActions flag * Check access to buckets * Apply suggestions from code review Co-authored-by: Jason Rasmussen <jrasm91@gmail.com> * Remove exception rethrowing * Simplify partner access check * Create new PartnerController * chore api:generate * Use partnerApi * Remove id from PartnerResponseDto * Refactor PartnerEntity * Rename args * Remove duplicate code in getAll * Create composite primary keys for partners table * Move asset access check into PartnerCore * Remove redundant getUserAssets call * Remove unused getUserAssets method * chore: regenerate api * Simplify getAll * Replace ?? with || * Simplify PartnerRepository.create * Introduce PartnerIds interface * Replace two database migrations with one * Simplify getAll * Change PartnerResponseDto to include UserResponseDto * Move partner sharing endpoints to PartnerController * Rename ShareController to SharedLinkController * chore: regenerate api after rebase * refactor: shared link remove return type * refactor: return user response dto * chore: regenerate open api * refactor: partner getAll * refactor: partner settings event typing * chore: remove unused code * refactor: add partners modal trigger * refactor: update url for viewing partner photos * feat: update partner sharing title * refactor: rename service method names * refactor: http exception logic to service, PartnerIds interface * chore: regenerate open api * test: coverage for domain code * fix: addPartner => createPartner * fix: missed rename * refactor: more code cleanup * chore: alphabetize settings order * feat: stop sharing confirmation modal * Enhance contrast of the email in dark mode * Replace button with CircleIconButton * Fix linter warning * Fix date types for PartnerEntity * Fix PartnerEntity creation * Reset assetStore state * Change layout of the partner's assets page * Add bulk download action for partner's assets --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
169 lines
5.1 KiB
TypeScript
169 lines
5.1 KiB
TypeScript
import { AssetGridState } from '$lib/models/asset-grid-state';
|
|
import { calculateViewportHeightByNumberOfAsset } from '$lib/utils/viewport-utils';
|
|
import { api, AssetCountByTimeBucketResponseDto } from '@api';
|
|
import { sumBy, flatMap } from 'lodash-es';
|
|
import { writable } from 'svelte/store';
|
|
|
|
/**
|
|
* The state that holds information about the asset grid
|
|
*/
|
|
export const assetGridState = writable<AssetGridState>(new AssetGridState());
|
|
export const loadingBucketState = writable<{ [key: string]: boolean }>({});
|
|
|
|
function createAssetStore() {
|
|
let _assetGridState = new AssetGridState();
|
|
assetGridState.subscribe((state) => {
|
|
_assetGridState = state;
|
|
});
|
|
|
|
let _loadingBucketState: { [key: string]: boolean } = {};
|
|
loadingBucketState.subscribe((state) => {
|
|
_loadingBucketState = state;
|
|
});
|
|
/**
|
|
* Set initial state
|
|
* @param viewportHeight
|
|
* @param viewportWidth
|
|
* @param data
|
|
*/
|
|
const setInitialState = (
|
|
viewportHeight: number,
|
|
viewportWidth: number,
|
|
data: AssetCountByTimeBucketResponseDto,
|
|
userId: string | undefined
|
|
) => {
|
|
assetGridState.set({
|
|
viewportHeight,
|
|
viewportWidth,
|
|
timelineHeight: 0,
|
|
buckets: data.buckets.map((d) => ({
|
|
bucketDate: d.timeBucket,
|
|
bucketHeight: calculateViewportHeightByNumberOfAsset(d.count, viewportWidth),
|
|
assets: [],
|
|
cancelToken: new AbortController()
|
|
})),
|
|
assets: [],
|
|
userId
|
|
});
|
|
|
|
// Update timeline height based on calculated bucket height
|
|
assetGridState.update((state) => {
|
|
state.timelineHeight = sumBy(state.buckets, (d) => d.bucketHeight);
|
|
return state;
|
|
});
|
|
};
|
|
|
|
const getAssetsByBucket = async (bucket: string) => {
|
|
try {
|
|
const currentBucketData = _assetGridState.buckets.find((b) => b.bucketDate === bucket);
|
|
if (currentBucketData?.assets && currentBucketData.assets.length > 0) {
|
|
return;
|
|
}
|
|
|
|
loadingBucketState.set({
|
|
..._loadingBucketState,
|
|
[bucket]: true
|
|
});
|
|
const { data: assets } = await api.assetApi.getAssetByTimeBucket(
|
|
{
|
|
timeBucket: [bucket],
|
|
userId: _assetGridState.userId
|
|
},
|
|
{ signal: currentBucketData?.cancelToken.signal }
|
|
);
|
|
loadingBucketState.set({
|
|
..._loadingBucketState,
|
|
[bucket]: false
|
|
});
|
|
|
|
// Update assetGridState with assets by time bucket
|
|
assetGridState.update((state) => {
|
|
const bucketIndex = state.buckets.findIndex((b) => b.bucketDate === bucket);
|
|
state.buckets[bucketIndex].assets = assets;
|
|
state.assets = flatMap(state.buckets, (b) => b.assets);
|
|
|
|
return state;
|
|
});
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
} catch (e: any) {
|
|
if (e.name === 'CanceledError') {
|
|
return;
|
|
}
|
|
console.error('Failed to get asset for bucket ', bucket);
|
|
console.error(e);
|
|
}
|
|
};
|
|
|
|
const removeAsset = (assetId: string) => {
|
|
assetGridState.update((state) => {
|
|
const bucketIndex = state.buckets.findIndex((b) => b.assets.some((a) => a.id === assetId));
|
|
const assetIndex = state.buckets[bucketIndex].assets.findIndex((a) => a.id === assetId);
|
|
state.buckets[bucketIndex].assets.splice(assetIndex, 1);
|
|
|
|
if (state.buckets[bucketIndex].assets.length === 0) {
|
|
_removeBucket(state.buckets[bucketIndex].bucketDate);
|
|
}
|
|
state.assets = flatMap(state.buckets, (b) => b.assets);
|
|
return state;
|
|
});
|
|
};
|
|
|
|
const _removeBucket = (bucketDate: string) => {
|
|
assetGridState.update((state) => {
|
|
const bucketIndex = state.buckets.findIndex((b) => b.bucketDate === bucketDate);
|
|
state.buckets.splice(bucketIndex, 1);
|
|
state.assets = flatMap(state.buckets, (b) => b.assets);
|
|
return state;
|
|
});
|
|
};
|
|
|
|
const updateBucketHeight = (bucket: string, actualBucketHeight: number) => {
|
|
assetGridState.update((state) => {
|
|
const bucketIndex = state.buckets.findIndex((b) => b.bucketDate === bucket);
|
|
// Update timeline height based on the new bucket height
|
|
const estimateBucketHeight = state.buckets[bucketIndex].bucketHeight;
|
|
|
|
if (actualBucketHeight >= estimateBucketHeight) {
|
|
state.timelineHeight += actualBucketHeight - estimateBucketHeight;
|
|
} else {
|
|
state.timelineHeight -= estimateBucketHeight - actualBucketHeight;
|
|
}
|
|
|
|
state.buckets[bucketIndex].bucketHeight = actualBucketHeight;
|
|
return state;
|
|
});
|
|
};
|
|
|
|
const cancelBucketRequest = async (token: AbortController, bucketDate: string) => {
|
|
token.abort();
|
|
// set new abort controller for bucket
|
|
assetGridState.update((state) => {
|
|
const bucketIndex = state.buckets.findIndex((b) => b.bucketDate === bucketDate);
|
|
state.buckets[bucketIndex].cancelToken = new AbortController();
|
|
return state;
|
|
});
|
|
};
|
|
|
|
const updateAsset = (assetId: string, isFavorite: boolean) => {
|
|
assetGridState.update((state) => {
|
|
const bucketIndex = state.buckets.findIndex((b) => b.assets.some((a) => a.id === assetId));
|
|
const assetIndex = state.buckets[bucketIndex].assets.findIndex((a) => a.id === assetId);
|
|
state.buckets[bucketIndex].assets[assetIndex].isFavorite = isFavorite;
|
|
|
|
state.assets = flatMap(state.buckets, (b) => b.assets);
|
|
return state;
|
|
});
|
|
};
|
|
|
|
return {
|
|
setInitialState,
|
|
getAssetsByBucket,
|
|
removeAsset,
|
|
updateBucketHeight,
|
|
cancelBucketRequest,
|
|
updateAsset
|
|
};
|
|
}
|
|
|
|
export const assetStore = createAssetStore();
|