mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 00:13:53 +00:00
bca7ad30b1
* fix: fetch in offline environments (#295) * add arm platforms to docker build --------- Co-authored-by: Fabian Posenau <fabian@fphome.de> * fix: docker build (#298) Co-authored-by: Fabian Posenau <fabian@fphome.de> * Timer: fix too many renders error when using ?progress (#305) * ux: remove duplicate showing of selected event * several small fixes and UX improvements --------- Co-authored-by: Fabian Posenau <fabian.p99@gmx.de> Co-authored-by: Fabian Posenau <fabian@fphome.de> Co-authored-by: Marks Polakovs <github@markspolakovs.me>
98 lines
2.8 KiB
React
98 lines
2.8 KiB
React
import { useCallback, useContext, useEffect } from 'react';
|
|
|
|
import { TableSettingsContext } from '../../common/context/TableSettingsContext';
|
|
import { useEventAction } from '../../common/hooks/useEventAction';
|
|
import { useCuesheet } from '../../common/hooks/useSocket';
|
|
import useRundown from '../../common/hooks-query/useRundown';
|
|
import useUserFields from '../../common/hooks-query/useUserFields';
|
|
|
|
import OntimeTable from './OntimeTable';
|
|
import TableHeader from './TableHeader';
|
|
import { makeCSV, makeTable } from './utils';
|
|
|
|
import style from './Table.module.scss';
|
|
|
|
export default function TableWrapper() {
|
|
const { data: rundown } = useRundown();
|
|
const { data: userFields } = useUserFields();
|
|
const { updateEvent } = useEventAction();
|
|
const featureData = useCuesheet();
|
|
const { theme } = useContext(TableSettingsContext);
|
|
|
|
// Set window title
|
|
useEffect(() => {
|
|
document.title = 'ontime - Cuesheet';
|
|
}, []);
|
|
|
|
const handleUpdate = useCallback(
|
|
async (rowIndex, accessor, payload) => {
|
|
if (rowIndex == null || accessor == null || payload == null) {
|
|
return;
|
|
}
|
|
|
|
// check if value is the same
|
|
const event = rundown[rowIndex];
|
|
if (event == null) {
|
|
return;
|
|
}
|
|
|
|
if (event[accessor] === payload) {
|
|
return;
|
|
}
|
|
// check if value is valid
|
|
// as of now, the fields do not have any validation
|
|
if (typeof payload !== 'string') {
|
|
return;
|
|
}
|
|
|
|
// cleanup
|
|
const cleanVal = payload.trim();
|
|
const mutationObject = {
|
|
id: event.id,
|
|
[accessor]: cleanVal,
|
|
};
|
|
|
|
// submit
|
|
try {
|
|
await updateEvent(mutationObject);
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
},
|
|
[updateEvent, rundown],
|
|
);
|
|
|
|
const exportHandler = useCallback(
|
|
(headerData) => {
|
|
if (!headerData || !rundown || !userFields) {
|
|
return;
|
|
}
|
|
|
|
const sheetData = makeTable(headerData, rundown, userFields);
|
|
const csvContent = makeCSV(sheetData);
|
|
const encodedUri = encodeURI(csvContent);
|
|
const link = document.createElement('a');
|
|
link.setAttribute('href', encodedUri);
|
|
link.setAttribute('download', 'ontime export.csv');
|
|
document.body.appendChild(link);
|
|
link.click();
|
|
},
|
|
[rundown, userFields],
|
|
);
|
|
|
|
if (typeof rundown === 'undefined' || typeof userFields === 'undefined') {
|
|
return <span>loading...</span>;
|
|
}
|
|
return (
|
|
<div className={theme === 'dark' ? style.tableWrapper__dark : style.tableWrapper} data-testid='cuesheet'>
|
|
<TableHeader handleCSVExport={exportHandler} featureData={featureData} />
|
|
<OntimeTable
|
|
tableData={rundown}
|
|
userFields={userFields}
|
|
handleUpdate={handleUpdate}
|
|
selectedId={featureData.selectedEventId}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|