diff --git a/src/renderer/components/item-list/helpers/item-list-controls.ts b/src/renderer/components/item-list/helpers/item-list-controls.ts
new file mode 100644
index 000000000..5dbc8c448
--- /dev/null
+++ b/src/renderer/components/item-list/helpers/item-list-controls.ts
@@ -0,0 +1,81 @@
+import {
+ ItemListItem,
+ ItemListStateActions,
+} from '/@/renderer/components/item-list/helpers/item-list-state';
+import { LibraryItem } from '/@/shared/types/domain-types';
+import { Play } from '/@/shared/types/types';
+
+const handleItemClick = (
+ item: (ItemListItem & object) | undefined,
+ itemType: LibraryItem,
+ internalState: ItemListStateActions,
+) => {
+ console.log('handleItemClick', item, itemType, internalState);
+};
+
+const handleItemDoubleClick = (
+ item: (ItemListItem & object) | undefined,
+ itemType: LibraryItem,
+ internalState: ItemListStateActions,
+) => {
+ console.log('handleItemDoubleClick', item, itemType, internalState);
+};
+
+const handleItemExpand = (
+ item: (ItemListItem & object) | undefined,
+ itemType: LibraryItem,
+ internalState: ItemListStateActions,
+) => {
+ if (!item) {
+ return;
+ }
+
+ return internalState.toggleExpanded({
+ id: item.id,
+ itemType,
+ serverId: item.serverId,
+ });
+};
+
+const handleItemFavorite = (
+ item: (ItemListItem & object) | undefined,
+ itemType: LibraryItem,
+ internalState: ItemListStateActions,
+) => {
+ console.log('handleItemFavorite', item, itemType, internalState);
+};
+
+const handleItemRating = (
+ item: (ItemListItem & object) | undefined,
+ itemType: LibraryItem,
+ internalState: ItemListStateActions,
+) => {
+ console.log('handleItemRating', item, itemType, internalState);
+};
+
+const handleItemMore = (
+ item: (ItemListItem & object) | undefined,
+ itemType: LibraryItem,
+ internalState: ItemListStateActions,
+) => {
+ console.log('handleItemMore', item, itemType, internalState);
+};
+
+const handleItemPlay = (
+ item: (ItemListItem & object) | undefined,
+ itemType: LibraryItem,
+ playType: Play,
+ internalState: ItemListStateActions,
+) => {
+ console.log('handleItemPlay', item, itemType, playType, internalState);
+};
+
+export const itemListControls = {
+ handleItemClick,
+ handleItemDoubleClick,
+ handleItemExpand,
+ handleItemFavorite,
+ handleItemMore,
+ handleItemPlay,
+ handleItemRating,
+};
diff --git a/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx b/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx
index 3a46eea71..e977696a3 100644
--- a/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx
+++ b/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx
@@ -19,14 +19,13 @@ import styles from './item-grid-list.module.css';
import { getDataRowsCount, ItemCard } from '/@/renderer/components/item-card/item-card';
import { ExpandedListItem } from '/@/renderer/components/item-list/expanded-list-item';
+import { itemListControls } from '/@/renderer/components/item-list/helpers/item-list-controls';
import {
- ItemListItem,
ItemListStateActions,
useItemListState,
} from '/@/renderer/components/item-list/helpers/item-list-state';
import { ItemListHandle } from '/@/renderer/components/item-list/types';
import { LibraryItem } from '/@/shared/types/domain-types';
-import { Play } from '/@/shared/types/types';
export interface GridItemProps {
columns: number;
@@ -277,7 +276,6 @@ export const ItemGridList = ({
className={styles.listExpandedContainer}
exit="hidden"
initial="hidden"
- style={{ height: '500px' }}
variants={expandedAnimationVariants}
>
@@ -310,28 +308,57 @@ const ListComponent = ({
controls={{
onClick: enableSelection
? (item, itemType) => {
- return handleItemClick(item, itemType, internalState);
+ return itemListControls.handleItemClick(
+ item,
+ itemType,
+ internalState,
+ );
}
: undefined,
onDoubleClick: (item, itemType) => {
- return handleItemDoubleClick(item, itemType, internalState);
+ return itemListControls.handleItemDoubleClick(
+ item,
+ itemType,
+ internalState,
+ );
},
onFavorite: (item, itemType) => {
- return handleItemFavorite(item, itemType, internalState);
+ return itemListControls.handleItemFavorite(
+ item,
+ itemType,
+ internalState,
+ );
},
onItemExpand: enableExpansion
? (item, itemType) => {
- return handleItemExpand(item, itemType, internalState);
+ return itemListControls.handleItemExpand(
+ item,
+ itemType,
+ internalState,
+ );
}
: undefined,
onMore: (item, itemType) => {
- return handleItemMore(item, itemType, internalState);
+ return itemListControls.handleItemMore(
+ item,
+ itemType,
+ internalState,
+ );
},
onPlay: (item, itemType, playType) => {
- return handleItemPlay(item, itemType, playType, internalState);
+ return itemListControls.handleItemPlay(
+ item,
+ itemType,
+ playType,
+ internalState,
+ );
},
onRating: (item, itemType) => {
- return handleItemRating(item, itemType, internalState);
+ return itemListControls.handleItemRating(
+ item,
+ itemType,
+ internalState,
+ );
},
}}
data={d.data}
@@ -343,68 +370,3 @@ const ListComponent = ({
);
};
-
-const handleItemClick = (
- item: (ItemListItem & object) | undefined,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemClick', item, itemType, internalState);
-};
-
-const handleItemDoubleClick = (
- item: (ItemListItem & object) | undefined,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemDoubleClick', item, itemType, internalState);
-};
-
-const handleItemExpand = (
- item: (ItemListItem & object) | undefined,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- if (!item) {
- return;
- }
-
- return internalState.toggleExpanded({
- id: item.id,
- itemType,
- serverId: item.serverId,
- });
-};
-
-const handleItemFavorite = (
- item: (ItemListItem & object) | undefined,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemFavorite', item, itemType, internalState);
-};
-
-const handleItemRating = (
- item: (ItemListItem & object) | undefined,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemRating', item, itemType, internalState);
-};
-
-const handleItemMore = (
- item: (ItemListItem & object) | undefined,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemMore', item, itemType, internalState);
-};
-
-const handleItemPlay = (
- item: (ItemListItem & object) | undefined,
- itemType: LibraryItem,
- playType: Play,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemPlay', item, itemType, playType, internalState);
-};
diff --git a/src/renderer/components/item-list/item-table-list/item-table-list-column.tsx b/src/renderer/components/item-list/item-table-list/item-table-list-column.tsx
index 20deaa401..9a8b6010d 100644
--- a/src/renderer/components/item-list/item-table-list/item-table-list-column.tsx
+++ b/src/renderer/components/item-list/item-table-list/item-table-list-column.tsx
@@ -5,7 +5,7 @@ import { CellComponentProps } from 'react-window-v2';
import styles from './item-table-list-column.module.css';
import i18n from '/@/i18n/i18n';
-import { ItemListStateActions } from '/@/renderer/components/item-list/helpers/item-list-state';
+import { itemListControls } from '/@/renderer/components/item-list/helpers/item-list-controls';
import { ActionsColumn } from '/@/renderer/components/item-list/item-table-list/columns/actions-column';
import { AlbumArtistsColumn } from '/@/renderer/components/item-list/item-table-list/columns/album-artists-column';
import { CountColumn } from '/@/renderer/components/item-list/item-table-list/columns/count-column';
@@ -25,14 +25,15 @@ import { RowIndexColumn } from '/@/renderer/components/item-list/item-table-list
import { SizeColumn } from '/@/renderer/components/item-list/item-table-list/columns/size-column';
import { TextColumn } from '/@/renderer/components/item-list/item-table-list/columns/text-column';
import { TableItemProps } from '/@/renderer/components/item-list/item-table-list/item-table-list';
+import { ItemControls } from '/@/renderer/components/item-list/types';
import { Icon } from '/@/shared/components/icon/icon';
import { Text } from '/@/shared/components/text/text';
-import { LibraryItem } from '/@/shared/types/domain-types';
-import { Play, TableColumn } from '/@/shared/types/types';
+import { TableColumn } from '/@/shared/types/types';
export interface ItemTableListColumn extends CellComponentProps {}
export interface ItemTableListInnerColumn extends ItemTableListColumn {
+ controls: ItemControls;
type: TableColumn;
}
@@ -41,26 +42,49 @@ export const ItemTableListColumn = (props: ItemTableListColumn) => {
const isHeaderEnabled = !!props.enableHeader;
+ const controls: ItemControls = {
+ onClick: (item, itemType) =>
+ itemListControls.handleItemClick(item, itemType, props.internalState),
+ onDoubleClick: (item, itemType) =>
+ itemListControls.handleItemDoubleClick(item, itemType, props.internalState),
+ onFavorite: (item, itemType) =>
+ itemListControls.handleItemFavorite(item, itemType, props.internalState),
+ onItemExpand: (item, itemType) =>
+ itemListControls.handleItemExpand(item, itemType, props.internalState),
+ onMore: (item, itemType) =>
+ itemListControls.handleItemMore(item, itemType, props.internalState),
+ onPlay: (item, itemType, playType) =>
+ itemListControls.handleItemPlay(item, itemType, playType, props.internalState),
+ onRating: (item, itemType) =>
+ itemListControls.handleItemRating(item, itemType, props.internalState),
+ };
+
if (isHeaderEnabled && props.rowIndex === 0) {
- return ;
+ return (
+
+ );
}
switch (type) {
case TableColumn.ACTIONS:
case TableColumn.SKIP:
- return ;
+ return ;
case TableColumn.ALBUM_ARTIST:
- return ;
+ return ;
case TableColumn.ALBUM_COUNT:
case TableColumn.PLAY_COUNT:
case TableColumn.SONG_COUNT:
- return ;
+ return ;
case TableColumn.BIOGRAPHY:
case TableColumn.COMMENT:
- return ;
+ return ;
case TableColumn.BIT_RATE:
case TableColumn.BPM:
@@ -68,41 +92,41 @@ export const ItemTableListColumn = (props: ItemTableListColumn) => {
case TableColumn.DISC_NUMBER:
case TableColumn.TRACK_NUMBER:
case TableColumn.YEAR:
- return ;
+ return ;
case TableColumn.DATE_ADDED:
case TableColumn.RELEASE_DATE:
- return ;
+ return ;
case TableColumn.DURATION:
- return ;
+ return ;
case TableColumn.GENRE:
- return ;
+ return ;
case TableColumn.IMAGE:
- return ;
+ return ;
case TableColumn.LAST_PLAYED:
- return ;
+ return ;
case TableColumn.PATH:
- return ;
+ return ;
case TableColumn.ROW_INDEX:
- return ;
+ return ;
case TableColumn.SIZE:
- return ;
+ return ;
case TableColumn.USER_FAVORITE:
- return ;
+ return ;
case TableColumn.USER_RATING:
- return ;
+ return ;
default:
- return ;
+ return ;
}
};
@@ -113,6 +137,7 @@ export const TableColumnTextContainer = (
children: React.ReactNode;
className?: string;
containerClassName?: string;
+ controls: ItemControls;
type: TableColumn;
},
) => {
@@ -179,6 +204,7 @@ export const TableColumnContainer = (
children: React.ReactNode;
className?: string;
containerClassName?: string;
+ controls: ItemControls;
type: TableColumn;
},
) => {
@@ -238,6 +264,7 @@ export const TableColumnHeaderContainer = (
props: ItemTableListColumn & {
className?: string;
containerClassName?: string;
+ controls: ItemControls;
type: TableColumn;
},
) => {
@@ -260,71 +287,6 @@ export const TableColumnHeaderContainer = (
);
};
-const handleItemClick = (
- item: unknown,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemClick', item, itemType, internalState);
-};
-
-const handleItemExpand = (
- item: unknown,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemExpand', item, itemType, internalState);
-};
-
-const handleItemSelect = (
- item: unknown,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemSelect', item, itemType, internalState);
-};
-
-const handleItemDoubleClick = (
- item: unknown,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemDoubleClick', item, itemType, internalState);
-};
-
-const handleItemFavorite = (
- item: unknown,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemFavorite', item, itemType, internalState);
-};
-
-const handleItemRating = (
- item: unknown,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemRating', item, itemType, internalState);
-};
-
-const handleItemMore = (
- item: unknown,
- itemType: LibraryItem,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemMore', item, itemType, internalState);
-};
-
-const handleItemPlay = (
- item: unknown,
- itemType: LibraryItem,
- playType: Play,
- internalState: ItemListStateActions,
-) => {
- console.log('handleItemPlay', item, itemType, playType, internalState);
-};
-
const columnLabelMap: Record = {
[TableColumn.ACTIONS]: ,
[TableColumn.ALBUM]: i18n.t('table.column.album', { postProcess: 'upperCase' }) as string,