mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-24 05:39:35 +02:00
166 lines
5 KiB
TypeScript
166 lines
5 KiB
TypeScript
import { useState, useEffect, Fragment } 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 { Bookmark, Category } from '../../../interfaces';
|
|
|
|
// UI
|
|
import { Message, Table } from '../../UI';
|
|
import { TableActions } from '../../Actions/TableActions';
|
|
|
|
interface Props {
|
|
openFormForUpdating: (data: Category | Bookmark) => void;
|
|
}
|
|
|
|
export const CategoryTable = ({ openFormForUpdating }: Props): JSX.Element => {
|
|
const {
|
|
config: { config },
|
|
bookmarks: { categories },
|
|
} = useSelector((state: State) => state);
|
|
|
|
const dispatch = useDispatch();
|
|
const {
|
|
pinCategory,
|
|
deleteCategory,
|
|
createNotification,
|
|
reorderCategories,
|
|
updateCategory,
|
|
} = bindActionCreators(actionCreators, dispatch);
|
|
|
|
const [localCategories, setLocalCategories] = useState<Category[]>([]);
|
|
|
|
// Copy categories array
|
|
useEffect(() => {
|
|
setLocalCategories([...categories]);
|
|
}, [categories]);
|
|
|
|
// Drag and drop handler
|
|
const dragEndHanlder = (result: DropResult): void => {
|
|
if (config.useOrdering !== 'orderId') {
|
|
createNotification({
|
|
title: 'Error',
|
|
message: 'Custom order is disabled',
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (!result.destination) {
|
|
return;
|
|
}
|
|
|
|
const tmpCategories = [...localCategories];
|
|
const [movedCategory] = tmpCategories.splice(result.source.index, 1);
|
|
tmpCategories.splice(result.destination.index, 0, movedCategory);
|
|
|
|
setLocalCategories(tmpCategories);
|
|
reorderCategories(tmpCategories);
|
|
};
|
|
|
|
// Action handlers
|
|
const deleteCategoryHandler = (id: number, name: string) => {
|
|
const proceed = window.confirm(
|
|
`Are you sure you want to delete ${name}? It will delete ALL assigned bookmarks`
|
|
);
|
|
|
|
if (proceed) {
|
|
deleteCategory(id);
|
|
}
|
|
};
|
|
|
|
const updateCategoryHandler = (id: number) => {
|
|
const category = categories.find((c) => c.id === id) as Category;
|
|
openFormForUpdating(category);
|
|
};
|
|
|
|
const pinCategoryHandler = (id: number) => {
|
|
const category = categories.find((c) => c.id === id) as Category;
|
|
pinCategory(category);
|
|
};
|
|
|
|
const changeCategoryVisibiltyHandler = (id: number) => {
|
|
const category = categories.find((c) => c.id === id) as Category;
|
|
updateCategory(id, { ...category, isPublic: !category.isPublic });
|
|
};
|
|
|
|
return (
|
|
<Fragment>
|
|
<Message isPrimary={false}>
|
|
{config.useOrdering === 'orderId' ? (
|
|
<p>You can drag and drop single rows to reorder categories</p>
|
|
) : (
|
|
<p>
|
|
Custom order is disabled. You can change it in the{' '}
|
|
<Link to="/settings/interface">settings</Link>
|
|
</p>
|
|
)}
|
|
</Message>
|
|
|
|
<DragDropContext onDragEnd={dragEndHanlder}>
|
|
<Droppable droppableId="categories">
|
|
{(provided) => (
|
|
<Table
|
|
headers={['Name', 'Visibility', 'Actions']}
|
|
innerRef={provided.innerRef}
|
|
>
|
|
{localCategories.map((category, index): JSX.Element => {
|
|
return (
|
|
<Draggable
|
|
key={category.id}
|
|
draggableId={category.id.toString()}
|
|
index={index}
|
|
>
|
|
{(provided, snapshot) => {
|
|
const style = {
|
|
border: snapshot.isDragging
|
|
? '1px solid var(--color-accent)'
|
|
: 'none',
|
|
borderRadius: '4px',
|
|
...provided.draggableProps.style,
|
|
};
|
|
|
|
return (
|
|
<tr
|
|
{...provided.draggableProps}
|
|
{...provided.dragHandleProps}
|
|
ref={provided.innerRef}
|
|
style={style}
|
|
>
|
|
<td style={{ width: '300px' }}>{category.name}</td>
|
|
<td style={{ width: '300px' }}>
|
|
{category.isPublic ? 'Visible' : 'Hidden'}
|
|
</td>
|
|
|
|
{!snapshot.isDragging && (
|
|
<TableActions
|
|
entity={category}
|
|
deleteHandler={deleteCategoryHandler}
|
|
updateHandler={updateCategoryHandler}
|
|
pinHanlder={pinCategoryHandler}
|
|
changeVisibilty={changeCategoryVisibiltyHandler}
|
|
/>
|
|
)}
|
|
</tr>
|
|
);
|
|
}}
|
|
</Draggable>
|
|
);
|
|
})}
|
|
</Table>
|
|
)}
|
|
</Droppable>
|
|
</DragDropContext>
|
|
</Fragment>
|
|
);
|
|
};
|