mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-22 07:29:08 +00:00
refactor: add table actions
This commit is contained in:
committed by
Carlos Valente
parent
8f30c0a7df
commit
2c25910863
@@ -17,9 +17,9 @@ import CuesheetEventEditor from '../../features/rundown/event-editor/CuesheetEve
|
|||||||
|
|
||||||
import CuesheetDnd from './cuesheet-dnd/CuesheetDnd';
|
import CuesheetDnd from './cuesheet-dnd/CuesheetDnd';
|
||||||
import CuesheetProgress from './cuesheet-progress/CuesheetProgress';
|
import CuesheetProgress from './cuesheet-progress/CuesheetProgress';
|
||||||
|
import { makeCuesheetColumns } from './cuesheet-table/cuesheet-table-elements/cuesheetCols';
|
||||||
import CuesheetTable from './cuesheet-table/CuesheetTable';
|
import CuesheetTable from './cuesheet-table/CuesheetTable';
|
||||||
import { cuesheetOptions } from './cuesheet.options';
|
import { cuesheetOptions } from './cuesheet.options';
|
||||||
import { makeCuesheetColumns } from './cuesheet-table/cuesheet-table-elements/cuesheetCols';
|
|
||||||
|
|
||||||
import styles from './CuesheetPage.module.scss';
|
import styles from './CuesheetPage.module.scss';
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,180 @@
|
|||||||
|
import { useRef } from 'react';
|
||||||
|
import { IconButton, Menu, MenuButton } from '@chakra-ui/react';
|
||||||
|
import { IoEllipsisHorizontal } from '@react-icons/all-files/io5/IoEllipsisHorizontal';
|
||||||
|
import { ColumnDef, flexRender, getCoreRowModel, useReactTable } from '@tanstack/react-table';
|
||||||
|
import Color from 'color';
|
||||||
|
import {
|
||||||
|
CustomFieldLabel,
|
||||||
|
isOntimeBlock,
|
||||||
|
isOntimeDelay,
|
||||||
|
isOntimeEvent,
|
||||||
|
MaybeString,
|
||||||
|
OntimeRundown,
|
||||||
|
OntimeRundownEntry,
|
||||||
|
} from 'ontime-types';
|
||||||
|
|
||||||
|
import useFollowComponent from '../../../common/hooks/useFollowComponent';
|
||||||
|
import { useSelectedEventId } from '../../../common/hooks/useSocket';
|
||||||
|
import { getAccessibleColour } from '../../../common/utils/styleUtils';
|
||||||
|
import { useCuesheetOptions } from '../cuesheet.options';
|
||||||
|
|
||||||
|
import BlockRow from './cuesheet-table-elements/BlockRow';
|
||||||
|
import CuesheetHeader from './cuesheet-table-elements/CuesheetHeader';
|
||||||
|
import DelayRow from './cuesheet-table-elements/DelayRow';
|
||||||
|
import EventRow from './cuesheet-table-elements/EventRow';
|
||||||
|
import CuesheetTableSettings from './cuesheet-table-settings/CuesheetTableSettings';
|
||||||
|
import CuesheetTableMenu from './CuesheetTableMenu';
|
||||||
|
import useColumnManager from './useColumnManager';
|
||||||
|
|
||||||
|
import style from './CuesheetTable.module.scss';
|
||||||
|
|
||||||
|
interface CuesheetTableProps {
|
||||||
|
data: OntimeRundown;
|
||||||
|
columns: ColumnDef<OntimeRundownEntry>[];
|
||||||
|
handleUpdate: (rowIndex: number, accessor: keyof OntimeRundownEntry, payload: string) => void;
|
||||||
|
handleUpdateCustom: (rowIndex: number, accessor: CustomFieldLabel, payload: string) => void;
|
||||||
|
showModal: (eventId: MaybeString) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function CuesheetTable(props: CuesheetTableProps) {
|
||||||
|
const { data, columns, handleUpdate, handleUpdateCustom, showModal } = props;
|
||||||
|
|
||||||
|
const { selectedEventId } = useSelectedEventId();
|
||||||
|
const { followSelected, hideDelays, hidePast, hideIndexColumn } = useCuesheetOptions();
|
||||||
|
const { columnVisibility, columnOrder, columnSizing, resetColumnOrder, setColumnVisibility, setColumnSizing } =
|
||||||
|
useColumnManager(columns);
|
||||||
|
|
||||||
|
const selectedRef = useRef<HTMLTableRowElement | null>(null);
|
||||||
|
const tableContainerRef = useRef<HTMLDivElement | null>(null);
|
||||||
|
useFollowComponent({ followRef: selectedRef, scrollRef: tableContainerRef, doFollow: followSelected });
|
||||||
|
|
||||||
|
const table = useReactTable({
|
||||||
|
data,
|
||||||
|
columns,
|
||||||
|
columnResizeMode: 'onChange',
|
||||||
|
state: {
|
||||||
|
columnOrder,
|
||||||
|
columnVisibility,
|
||||||
|
columnSizing,
|
||||||
|
},
|
||||||
|
meta: {
|
||||||
|
handleUpdate,
|
||||||
|
handleUpdateCustom,
|
||||||
|
},
|
||||||
|
onColumnVisibilityChange: setColumnVisibility,
|
||||||
|
onColumnSizingChange: setColumnSizing,
|
||||||
|
getCoreRowModel: getCoreRowModel(),
|
||||||
|
});
|
||||||
|
|
||||||
|
const setAllVisible = () => {
|
||||||
|
table.toggleAllColumnsVisible(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
const resetColumnResizing = () => {
|
||||||
|
setColumnSizing({});
|
||||||
|
};
|
||||||
|
|
||||||
|
const headerGroups = table.getHeaderGroups();
|
||||||
|
const rowModel = table.getRowModel();
|
||||||
|
const allLeafColumns = table.getAllLeafColumns();
|
||||||
|
|
||||||
|
let eventIndex = 0;
|
||||||
|
// for the first event, it will be past if there is something selected
|
||||||
|
let isPast = Boolean(selectedEventId);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<CuesheetTableSettings
|
||||||
|
columns={allLeafColumns}
|
||||||
|
handleResetResizing={resetColumnResizing}
|
||||||
|
handleResetReordering={resetColumnOrder}
|
||||||
|
handleClearToggles={setAllVisible}
|
||||||
|
/>
|
||||||
|
<div ref={tableContainerRef} className={style.cuesheetContainer}>
|
||||||
|
<table className={style.cuesheet} id='cuesheet'>
|
||||||
|
<CuesheetHeader headerGroups={headerGroups} showIndexColumn={!hideIndexColumn} />
|
||||||
|
<tbody>
|
||||||
|
{rowModel.rows.map((row, index) => {
|
||||||
|
const key = row.original.id;
|
||||||
|
const isSelected = selectedEventId === key;
|
||||||
|
const entry = row.original;
|
||||||
|
if (isSelected) {
|
||||||
|
isPast = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isOntimeBlock(entry)) {
|
||||||
|
return <BlockRow key={key} title={entry.title} hidePast={isPast && hidePast} />;
|
||||||
|
}
|
||||||
|
if (isOntimeDelay(entry)) {
|
||||||
|
if (isPast && hidePast) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
const delayVal = entry.duration;
|
||||||
|
if (hideDelays || delayVal === 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return <DelayRow key={key} duration={delayVal} />;
|
||||||
|
}
|
||||||
|
if (isOntimeEvent(entry)) {
|
||||||
|
eventIndex++;
|
||||||
|
const isSelected = key === selectedEventId;
|
||||||
|
|
||||||
|
if (isPast && hidePast) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
let rowBgColour: string | undefined;
|
||||||
|
if (isSelected) {
|
||||||
|
rowBgColour = '#D20300'; // $red-700
|
||||||
|
} else if (entry.colour) {
|
||||||
|
try {
|
||||||
|
// the colour is user defined and might be invalid
|
||||||
|
const accessibleBackgroundColor = Color(getAccessibleColour(entry.colour).backgroundColor);
|
||||||
|
rowBgColour = accessibleBackgroundColor.fade(0.75).hexa();
|
||||||
|
} catch (_error) {
|
||||||
|
/* we do not handle errors here */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Menu key={key} variant='ontime-on-dark' size='sm' isLazy>
|
||||||
|
<EventRow
|
||||||
|
eventIndex={eventIndex}
|
||||||
|
isPast={isPast}
|
||||||
|
selectedRef={isSelected ? selectedRef : undefined}
|
||||||
|
skip={entry.skip}
|
||||||
|
colour={entry.colour}
|
||||||
|
showIndexColumn={!hideIndexColumn}
|
||||||
|
>
|
||||||
|
<td>
|
||||||
|
<MenuButton
|
||||||
|
as={IconButton}
|
||||||
|
size='xs'
|
||||||
|
aria-label='Options'
|
||||||
|
icon={<IoEllipsisHorizontal />}
|
||||||
|
variant='ontime-ghosted'
|
||||||
|
/>
|
||||||
|
</td>
|
||||||
|
{row.getVisibleCells().map((cell) => {
|
||||||
|
return (
|
||||||
|
<td key={cell.id} style={{ width: cell.column.getSize(), backgroundColor: rowBgColour }}>
|
||||||
|
{flexRender(cell.column.columnDef.cell, cell.getContext())}
|
||||||
|
</td>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</EventRow>
|
||||||
|
<CuesheetTableMenu event={entry} entryIndex={index} showModal={showModal} />
|
||||||
|
</Menu>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// currently there is no scenario where entryType is not handled above, either way...
|
||||||
|
return null;
|
||||||
|
})}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
import { MenuDivider, MenuItem, MenuList } from '@chakra-ui/react';
|
||||||
|
import { IoAdd } from '@react-icons/all-files/io5/IoAdd';
|
||||||
|
import { IoArrowDown } from '@react-icons/all-files/io5/IoArrowDown';
|
||||||
|
import { IoArrowUp } from '@react-icons/all-files/io5/IoArrowUp';
|
||||||
|
import { IoDuplicateOutline } from '@react-icons/all-files/io5/IoDuplicateOutline';
|
||||||
|
import { IoOptions } from '@react-icons/all-files/io5/IoOptions';
|
||||||
|
import { IoTrash } from '@react-icons/all-files/io5/IoTrash';
|
||||||
|
import { OntimeEvent, SupportedEvent } from 'ontime-types';
|
||||||
|
|
||||||
|
import { useEventAction } from '../../../common/hooks/useEventAction';
|
||||||
|
import { cloneEvent } from '../../../common/utils/eventsManager';
|
||||||
|
|
||||||
|
interface CuesheetTableMenuProps {
|
||||||
|
event: OntimeEvent;
|
||||||
|
entryIndex: number;
|
||||||
|
showModal: (entryId: string) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function CuesheetTableMenu(props: CuesheetTableMenuProps) {
|
||||||
|
const { event, entryIndex, showModal } = props;
|
||||||
|
const { addEvent, reorderEvent, deleteEvent } = useEventAction();
|
||||||
|
|
||||||
|
const handleCloneEvent = () => {
|
||||||
|
const newEvent = cloneEvent(event);
|
||||||
|
try {
|
||||||
|
addEvent(newEvent, { after: event.id });
|
||||||
|
} catch (_error) {
|
||||||
|
// we do not handle errors here
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<MenuList>
|
||||||
|
<MenuItem icon={<IoOptions />} onClick={() => showModal(event.id)}>
|
||||||
|
Edit ...
|
||||||
|
</MenuItem>
|
||||||
|
<MenuDivider />
|
||||||
|
<MenuItem icon={<IoAdd />} onClick={() => addEvent({ type: SupportedEvent.Event }, { before: event.id })}>
|
||||||
|
Add event above
|
||||||
|
</MenuItem>
|
||||||
|
<MenuItem icon={<IoAdd />} onClick={() => addEvent({ type: SupportedEvent.Event }, { after: event.id })}>
|
||||||
|
Add event below
|
||||||
|
</MenuItem>
|
||||||
|
<MenuItem icon={<IoDuplicateOutline />} onClick={handleCloneEvent}>
|
||||||
|
Clone event
|
||||||
|
</MenuItem>
|
||||||
|
<MenuDivider />
|
||||||
|
<MenuItem
|
||||||
|
isDisabled={entryIndex < 1}
|
||||||
|
icon={<IoArrowUp />}
|
||||||
|
onClick={() => reorderEvent(event.id, entryIndex, entryIndex - 1)}
|
||||||
|
>
|
||||||
|
Move up
|
||||||
|
</MenuItem>
|
||||||
|
<MenuItem icon={<IoArrowDown />} onClick={() => reorderEvent(event.id, entryIndex, entryIndex + 1)}>
|
||||||
|
Move down
|
||||||
|
</MenuItem>
|
||||||
|
<MenuItem icon={<IoTrash />} onClick={() => deleteEvent([event.id])}>
|
||||||
|
Delete
|
||||||
|
</MenuItem>
|
||||||
|
</MenuList>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user