1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/utils/image.test.ts
2024-09-21 02:14:07 -04:00

101 lines
3 KiB
TypeScript

import { BaseItemKind } from '@jellyfin/sdk/lib/generated-client/models/base-item-kind';
import { describe, expect, it } from 'vitest';
import { getItemTypeIcon, getLibraryIcon } from './image';
import { CollectionType } from '@jellyfin/sdk/lib/generated-client/models/collection-type';
const ITEM_ICON_MAP: Record<string, string | undefined> = {
AggregateFolder: undefined,
Audio: 'audiotrack',
AudioBook: undefined,
BasePluginFolder: undefined,
Book: 'book',
BoxSet: 'video_library',
Channel: undefined,
ChannelFolderItem: undefined,
CollectionFolder: undefined,
Episode: 'tv',
Folder: 'folder',
Genre: undefined,
LiveTvChannel: undefined,
LiveTvProgram: undefined,
ManualPlaylistsFolder: undefined,
Movie: 'movie',
MusicAlbum: 'album',
MusicArtist: 'person',
MusicGenre: undefined,
MusicVideo: undefined,
Person: 'person',
Photo: 'photo',
PhotoAlbum: 'photo_album',
Playlist: 'queue',
PlaylistsFolder: undefined,
Program: 'live_tv',
Recording: undefined,
Season: undefined,
Series: 'tv',
Studio: undefined,
Trailer: undefined,
TvChannel: undefined,
TvProgram: undefined,
UserRootFolder: undefined,
UserView: undefined,
Video: undefined,
Year: undefined
};
const LIBRARY_ICON_MAP: Record<string, string | undefined> = {
Books: 'book',
Boxsets: 'video_library',
Folders: 'folder',
Homevideos: 'photo',
Livetv: 'live_tv',
Movies: 'movie',
Music: 'music_note',
Musicvideos: 'music_video',
Photos: 'photo',
Playlists: 'queue',
Trailers: 'theaters',
Tvshows: 'tv',
Unknown: 'folder'
};
describe('getItemTypeIcon()', () => {
it('Should return the correct icon for item type', () => {
Object.entries(BaseItemKind).forEach(([key, value]) => {
expect(Object.prototype.hasOwnProperty.call(ITEM_ICON_MAP, key)).toBe(true);
expect(`${key}=${getItemTypeIcon(value)}`).toBe(`${key}=${ITEM_ICON_MAP[key]}`);
});
});
it('Should return the default icon for unknown type if provided', () => {
expect(getItemTypeIcon('foobar', 'default'))
.toBe('default');
});
it('Should return undefined for unknown type', () => {
expect(getItemTypeIcon('foobar'))
.toBeUndefined();
});
});
describe('getLibraryIcon()', () => {
it('Should return the correct icon for collection type', () => {
Object.entries(CollectionType).forEach(([key, value]) => {
expect(Object.prototype.hasOwnProperty.call(LIBRARY_ICON_MAP, key)).toBe(true);
expect(`${key}=${getLibraryIcon(value)}`).toBe(`${key}=${LIBRARY_ICON_MAP[key]}`);
});
});
it('Should return the correct icon for nonstandard types', () => {
expect(getLibraryIcon(undefined))
.toBe('quiz');
expect(getLibraryIcon('channels'))
.toBe('videocam');
});
it('Should return the default icon for unknown types', () => {
expect(getLibraryIcon('foobar'))
.toBe('folder');
});
});