mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
facd0bc3a4
Revert "perf(web): optimize date groups (#7593)"
This reverts commit 762c4684f8
.
72 lines
1.7 KiB
TypeScript
72 lines
1.7 KiB
TypeScript
import { locale } from '$lib/stores/preferences.store';
|
|
import type { AssetResponseDto } from '@immich/sdk';
|
|
import { groupBy, sortBy } from 'lodash-es';
|
|
import { DateTime, Interval } from 'luxon';
|
|
import { get } from 'svelte/store';
|
|
|
|
export const fromLocalDateTime = (localDateTime: string) =>
|
|
DateTime.fromISO(localDateTime, { zone: 'UTC', locale: get(locale) });
|
|
|
|
export const groupDateFormat: Intl.DateTimeFormatOptions = {
|
|
weekday: 'short',
|
|
month: 'short',
|
|
day: 'numeric',
|
|
year: 'numeric',
|
|
};
|
|
|
|
export function formatGroupTitle(date: DateTime): string {
|
|
const today = DateTime.now().startOf('day');
|
|
|
|
// Today
|
|
if (today.hasSame(date, 'day')) {
|
|
return 'Today';
|
|
}
|
|
|
|
// Yesterday
|
|
if (Interval.fromDateTimes(date, today).length('days') == 1) {
|
|
return 'Yesterday';
|
|
}
|
|
|
|
// Last week
|
|
if (Interval.fromDateTimes(date, today).length('weeks') < 1) {
|
|
return date.toLocaleString({ weekday: 'long' });
|
|
}
|
|
|
|
// This year
|
|
if (today.hasSame(date, 'year')) {
|
|
return date.toLocaleString({
|
|
weekday: 'short',
|
|
month: 'short',
|
|
day: 'numeric',
|
|
});
|
|
}
|
|
|
|
return date.toLocaleString(groupDateFormat);
|
|
}
|
|
|
|
export function splitBucketIntoDateGroups(
|
|
assets: AssetResponseDto[],
|
|
locale: string | undefined,
|
|
): AssetResponseDto[][] {
|
|
const grouped = groupBy(assets, (asset) =>
|
|
fromLocalDateTime(asset.localDateTime).toLocaleString(groupDateFormat, { locale }),
|
|
);
|
|
return sortBy(grouped, (group) => assets.indexOf(group[0]));
|
|
}
|
|
|
|
export type LayoutBox = {
|
|
top: number;
|
|
left: number;
|
|
width: number;
|
|
};
|
|
|
|
export function calculateWidth(boxes: LayoutBox[]): number {
|
|
let width = 0;
|
|
for (const box of boxes) {
|
|
if (box.top < 100) {
|
|
width = box.left + box.width;
|
|
}
|
|
}
|
|
|
|
return width;
|
|
}
|