import { Fragment, KeyboardEvent, 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'; // Typescript import { App } from '../../../interfaces'; // CSS import classes from './AppTable.module.css'; // UI import { Icon, Table } from '../../UI'; import { State } from '../../../store/reducers'; import { bindActionCreators } from 'redux'; import { actionCreators } from '../../../store'; interface Props { updateAppHandler: (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, updateConfig, createNotification } = bindActionCreators(actionCreators, dispatch); const [localApps, setLocalApps] = useState([]); const [isCustomOrder, setIsCustomOrder] = useState(false); // Copy apps array useEffect(() => { setLocalApps([...apps]); }, [apps]); // Check ordering useEffect(() => { const order = config.useOrdering; if (order === 'orderId') { setIsCustomOrder(true); } }, []); const deleteAppHandler = (app: App): void => { const proceed = window.confirm( `Are you sure you want to delete ${app.name} at ${app.url} ?` ); if (proceed) { deleteApp(app.id); } }; // Support keyboard navigation for actions const keyboardActionHandler = ( e: KeyboardEvent, app: App, handler: Function ) => { if (e.key === 'Enter') { handler(app); } }; const dragEndHanlder = (result: DropResult): void => { if (!isCustomOrder) { 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); }; return (
{isCustomOrder ? (

You can drag and drop single rows to reorder application

) : (

Custom order is disabled. You can change it in{' '} 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'}
deleteAppHandler(app)} onKeyDown={(e) => keyboardActionHandler( e, app, deleteAppHandler ) } tabIndex={0} >
props.updateAppHandler(app)} onKeyDown={(e) => keyboardActionHandler( e, app, props.updateAppHandler ) } tabIndex={0} >
pinApp(app)} onKeyDown={(e) => keyboardActionHandler(e, app, pinApp) } tabIndex={0} > {app.isPinned ? ( ) : ( )}
)}
); };