2023-11-30 04:52:28 +01:00
|
|
|
<script lang="ts">
|
2025-08-07 15:42:33 +02:00
|
|
|
import ChangeDate, {
|
|
|
|
|
type AbsoluteResult,
|
|
|
|
|
type RelativeResult,
|
|
|
|
|
} from '$lib/components/shared-components/change-date.svelte';
|
2024-02-14 08:09:49 -05:00
|
|
|
import { user } from '$lib/stores/user.store';
|
|
|
|
|
import { getSelectedAssets } from '$lib/utils/asset-utils';
|
2023-11-30 04:52:28 +01:00
|
|
|
import { handleError } from '$lib/utils/handle-error';
|
2024-02-14 08:09:49 -05:00
|
|
|
import { updateAssets } from '@immich/sdk';
|
2025-05-17 22:57:08 -04:00
|
|
|
import { mdiCalendarEditOutline } from '@mdi/js';
|
2025-08-07 15:42:33 +02:00
|
|
|
import { DateTime, Duration } from 'luxon';
|
2025-05-17 22:57:08 -04:00
|
|
|
import { t } from 'svelte-i18n';
|
2023-11-30 04:52:28 +01:00
|
|
|
import MenuOption from '../../shared-components/context-menu/menu-option.svelte';
|
|
|
|
|
import { getAssetControlContext } from '../asset-select-control-bar.svelte';
|
2025-08-07 15:42:33 +02:00
|
|
|
import { fromTimelinePlainDateTime } from '$lib/utils/timeline-util.js';
|
2024-11-14 08:43:25 -06:00
|
|
|
interface Props {
|
|
|
|
|
menuItem?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let { menuItem = false }: Props = $props();
|
2023-11-30 04:52:28 +01:00
|
|
|
const { clearSelect, getOwnedAssets } = getAssetControlContext();
|
|
|
|
|
|
2024-11-14 08:43:25 -06:00
|
|
|
let isShowChangeDate = $state(false);
|
2023-11-30 04:52:28 +01:00
|
|
|
|
2025-08-07 15:42:33 +02:00
|
|
|
let currentInterval = $derived.by(() => {
|
|
|
|
|
if (isShowChangeDate) {
|
|
|
|
|
const ids = getSelectedAssets(getOwnedAssets(), $user);
|
|
|
|
|
const assets = getOwnedAssets().filter((asset) => ids.includes(asset.id));
|
|
|
|
|
const imageTimestamps = assets.map((asset) => {
|
|
|
|
|
let localDateTime = fromTimelinePlainDateTime(asset.localDateTime);
|
|
|
|
|
let fileCreatedAt = fromTimelinePlainDateTime(asset.fileCreatedAt);
|
|
|
|
|
let offsetMinutes = localDateTime.diff(fileCreatedAt, 'minutes').shiftTo('minutes').minutes;
|
|
|
|
|
const timeZone = `UTC${offsetMinutes >= 0 ? '+' : ''}${Duration.fromObject({ minutes: offsetMinutes }).toFormat('hh:mm')}`;
|
|
|
|
|
return fileCreatedAt.setZone('utc', { keepLocalTime: true }).setZone(timeZone);
|
|
|
|
|
});
|
|
|
|
|
let minTimestamp = imageTimestamps[0];
|
|
|
|
|
let maxTimestamp = imageTimestamps[0];
|
|
|
|
|
for (let current of imageTimestamps) {
|
|
|
|
|
if (current < minTimestamp) {
|
|
|
|
|
minTimestamp = current;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (current > maxTimestamp) {
|
|
|
|
|
maxTimestamp = current;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return { start: minTimestamp, end: maxTimestamp };
|
|
|
|
|
}
|
|
|
|
|
return undefined;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const handleConfirm = async (result: AbsoluteResult | RelativeResult) => {
|
2023-11-30 04:52:28 +01:00
|
|
|
isShowChangeDate = false;
|
2023-12-01 21:58:24 +01:00
|
|
|
const ids = getSelectedAssets(getOwnedAssets(), $user);
|
2023-11-30 04:52:28 +01:00
|
|
|
|
|
|
|
|
try {
|
2025-08-07 15:42:33 +02:00
|
|
|
if (result.mode === 'absolute') {
|
|
|
|
|
await updateAssets({ assetBulkUpdateDto: { ids, dateTimeOriginal: result.date } });
|
|
|
|
|
} else if (result.mode === 'relative') {
|
|
|
|
|
await updateAssets({
|
|
|
|
|
assetBulkUpdateDto: {
|
|
|
|
|
ids,
|
|
|
|
|
dateTimeRelative: result.duration,
|
|
|
|
|
timeZone: result.timeZone,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}
|
2023-11-30 04:52:28 +01:00
|
|
|
} catch (error) {
|
2024-06-04 21:53:00 +02:00
|
|
|
handleError(error, $t('errors.unable_to_change_date'));
|
2023-11-30 04:52:28 +01:00
|
|
|
}
|
|
|
|
|
clearSelect();
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
{#if menuItem}
|
2024-06-20 21:15:36 +00:00
|
|
|
<MenuOption text={$t('change_date')} icon={mdiCalendarEditOutline} onClick={() => (isShowChangeDate = true)} />
|
2023-11-30 04:52:28 +01:00
|
|
|
{/if}
|
|
|
|
|
{#if isShowChangeDate}
|
2025-08-07 15:42:33 +02:00
|
|
|
<ChangeDate
|
|
|
|
|
initialDate={DateTime.now()}
|
|
|
|
|
{currentInterval}
|
|
|
|
|
onConfirm={handleConfirm}
|
|
|
|
|
onCancel={() => (isShowChangeDate = false)}
|
|
|
|
|
/>
|
2023-11-30 04:52:28 +01:00
|
|
|
{/if}
|