import { Fragment, useState, useEffect } from 'react'; import { DragDropContext, Droppable, Draggable, DropResult, } from 'react-beautiful-dnd'; import { Link } from 'react-router-dom'; // Redux import { useDispatch, useSelector } from 'react-redux'; import { State } from '../../../store/reducers'; import { bindActionCreators } from 'redux'; import { actionCreators } from '../../../store'; // Typescript import { App } from '../../../interfaces'; // Other import { Message, Table } from '../../UI'; import { TableActions } from '../../Actions/TableActions'; interface Props { openFormForUpdating: (app: App) => void; } export const AppTable = (props: Props): JSX.Element => { const { apps: { apps }, config: { config }, } = useSelector((state: State) => state); const dispatch = useDispatch(); const { pinApp, deleteApp, reorderApps, createNotification, updateApp } = bindActionCreators(actionCreators, dispatch); const [localApps, setLocalApps] = useState([]); // Copy apps array useEffect(() => { setLocalApps([...apps]); }, [apps]); const dragEndHanlder = (result: DropResult): void => { if (config.useOrdering !== 'orderId') { createNotification({ title: 'Error', message: 'Custom order is disabled', }); return; } if (!result.destination) { return; } const tmpApps = [...localApps]; const [movedApp] = tmpApps.splice(result.source.index, 1); tmpApps.splice(result.destination.index, 0, movedApp); setLocalApps(tmpApps); reorderApps(tmpApps); }; // Action handlers const deleteAppHandler = (id: number, name: string) => { const proceed = window.confirm(`Are you sure you want to delete ${name}?`); if (proceed) { deleteApp(id); } }; const updateAppHandler = (id: number) => { const app = apps.find((a) => a.id === id) as App; props.openFormForUpdating(app); }; const pinAppHandler = (id: number) => { const app = apps.find((a) => a.id === id) as App; pinApp(app); }; const changeAppVisibiltyHandler = (id: number) => { const app = apps.find((a) => a.id === id) as App; updateApp(id, { ...app, isPublic: !app.isPublic }); }; return ( {config.useOrdering === 'orderId' ? (

You can drag and drop single rows to reorder application

) : (

Custom order is disabled. You can change it in the{' '} settings

)}
{(provided) => ( {localApps.map((app: App, index): JSX.Element => { return ( {(provided, snapshot) => { const style = { border: snapshot.isDragging ? '1px solid var(--color-accent)' : 'none', borderRadius: '4px', ...provided.draggableProps.style, }; return ( {!snapshot.isDragging && ( )} ); }} ); })}
{app.name} {app.url} {app.icon} {app.isPublic ? 'Visible' : 'Hidden'}
)}
); };