add drag state to item grid

This commit is contained in:
jeffvli
2025-11-09 00:36:35 -08:00
parent 7d4a17e89c
commit ad409fecfa
13 changed files with 451 additions and 71 deletions
@@ -6,7 +6,7 @@ import { Fragment, Suspense } from 'react';
import styles from './expanded-album-list-item.module.css';
import { ItemListItem } from '/@/renderer/components/item-list/helpers/item-list-state';
import { ItemListStateItem } from '/@/renderer/components/item-list/helpers/item-list-state';
import { albumQueries } from '/@/renderer/features/albums/api/album-api';
import { useFastAverageColor } from '/@/renderer/hooks';
import { Group } from '/@/shared/components/group/group';
@@ -18,7 +18,7 @@ import { TextTitle } from '/@/shared/components/text-title/text-title';
import { Text } from '/@/shared/components/text/text';
interface ExpandedAlbumListItemProps {
item: ItemListItem;
item: ItemListStateItem;
}
export const ExpandedAlbumListItem = ({ item }: ExpandedAlbumListItemProps) => {