mirror of
https://github.com/immich-app/immich.git
synced 2024-12-26 10:50:29 +02:00
fix(web): recent albums sort (#14545)
This commit is contained in:
parent
e2b36476e7
commit
5e955a1b03
@ -0,0 +1,28 @@
|
|||||||
|
import { sdkMock } from '$lib/__mocks__/sdk.mock';
|
||||||
|
import RecentAlbums from '$lib/components/shared-components/side-bar/recent-albums.svelte';
|
||||||
|
import { albumFactory } from '@test-data/factories/album-factory';
|
||||||
|
import { render, screen } from '@testing-library/svelte';
|
||||||
|
import { tick } from 'svelte';
|
||||||
|
|
||||||
|
describe('RecentAlbums component', () => {
|
||||||
|
it('sorts albums by most recently updated', async () => {
|
||||||
|
const albums = [
|
||||||
|
albumFactory.build({ updatedAt: '2024-01-01T00:00:00Z' }),
|
||||||
|
albumFactory.build({ updatedAt: '2024-01-09T00:00:01Z' }),
|
||||||
|
albumFactory.build({ updatedAt: '2024-01-10T00:00:00Z' }),
|
||||||
|
albumFactory.build({ updatedAt: '2024-01-09T00:00:00Z' }),
|
||||||
|
];
|
||||||
|
|
||||||
|
sdkMock.getAllAlbums.mockResolvedValueOnce([...albums]);
|
||||||
|
render(RecentAlbums);
|
||||||
|
|
||||||
|
expect(sdkMock.getAllAlbums).toBeCalledTimes(1);
|
||||||
|
await tick();
|
||||||
|
|
||||||
|
const links = screen.getAllByRole('link');
|
||||||
|
expect(links).toHaveLength(3);
|
||||||
|
expect(links[0]).toHaveAttribute('href', `/albums/${albums[2].id}`);
|
||||||
|
expect(links[1]).toHaveAttribute('href', `/albums/${albums[1].id}`);
|
||||||
|
expect(links[2]).toHaveAttribute('href', `/albums/${albums[3].id}`);
|
||||||
|
});
|
||||||
|
});
|
@ -10,9 +10,7 @@
|
|||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
try {
|
try {
|
||||||
const allAlbums = await getAllAlbums({});
|
const allAlbums = await getAllAlbums({});
|
||||||
albums = allAlbums
|
albums = allAlbums.sort((a, b) => (a.updatedAt > b.updatedAt ? -1 : 1)).slice(0, 3);
|
||||||
.sort((album1, album2) => (album1.lastModifiedAssetTimestamp! > album2.lastModifiedAssetTimestamp! ? 1 : 0))
|
|
||||||
.slice(0, 3);
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
handleError(error, $t('failed_to_load_assets'));
|
handleError(error, $t('failed_to_load_assets'));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user