1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 19:49:37 +02:00
flame/client/src/components/Bookmarks/BookmarkTable/BookmarkTable.tsx

123 lines
4.1 KiB
TypeScript
Raw Normal View History

2021-05-25 11:44:11 +02:00
import { ContentType } from '../Bookmarks';
import classes from './BookmarkTable.module.css';
2021-05-25 14:05:53 +02:00
import { connect } from 'react-redux';
import { pinCategory, deleteCategory } from '../../../store/actions';
import { KeyboardEvent } from 'react';
2021-05-25 11:44:11 +02:00
import Table from '../../UI/Table/Table';
import { Bookmark, Category } from '../../../interfaces';
import Icon from '../../UI/Icons/Icon/Icon';
interface ComponentProps {
contentType: ContentType;
categories: Category[];
2021-05-25 14:05:53 +02:00
pinCategory: (category: Category) => void;
deleteCategory: (id: number) => void;
2021-05-26 13:13:56 +02:00
updateCategoryHandler: (category: Category) => void;
2021-05-25 11:44:11 +02:00
}
const BookmarkTable = (props: ComponentProps): JSX.Element => {
2021-05-25 14:05:53 +02:00
const deleteCategoryHandler = (category: Category): void => {
const proceed = window.confirm(`Are you sure you want to delete ${category.name}? It will delete ALL assigned bookmarks`);
if (proceed) {
props.deleteCategory(category.id);
}
}
const keyboardActionHandler = (e: KeyboardEvent, category: Category, handler: Function) => {
if (e.key === 'Enter') {
handler(category);
}
}
2021-05-25 11:44:11 +02:00
if (props.contentType === ContentType.category) {
return (
<Table headers={[
'Name',
'Actions'
]}>
{props.categories.map((category: Category) => {
return (
<tr key={category.id}>
<td>{category.name}</td>
<td className={classes.TableActions}>
<div
className={classes.TableAction}
2021-05-25 14:05:53 +02:00
onClick={() => deleteCategoryHandler(category)}
onKeyDown={(e) => keyboardActionHandler(e, category, deleteCategoryHandler)}
2021-05-25 11:44:11 +02:00
tabIndex={0}>
<Icon icon='mdiDelete' />
</div>
<div
className={classes.TableAction}
2021-05-26 13:13:56 +02:00
onClick={() => props.updateCategoryHandler(category)}
2021-05-25 11:44:11 +02:00
// onKeyDown={(e) => keyboardActionHandler(e, app, props.updateAppHandler)}
tabIndex={0}>
<Icon icon='mdiPencil' />
</div>
<div
className={classes.TableAction}
2021-05-25 14:05:53 +02:00
onClick={() => props.pinCategory(category)}
onKeyDown={(e) => keyboardActionHandler(e, category, props.pinCategory)}
2021-05-25 11:44:11 +02:00
tabIndex={0}>
{category.isPinned
? <Icon icon='mdiPinOff' color='var(--color-accent)' />
: <Icon icon='mdiPin' />
}
</div>
</td>
</tr>
)
})}
</Table>
)
} else {
const bookmarks: {bookmark: Bookmark, categoryName: string}[] = [];
props.categories.forEach((category: Category) => {
category.bookmarks.forEach((bookmark: Bookmark) => {
bookmarks.push({
bookmark,
categoryName: category.name
});
})
})
return (
<Table headers={[
'Name',
'URL',
'Category',
'Actions'
]}>
{bookmarks.map((bookmark: {bookmark: Bookmark, categoryName: string}) => {
return (
<tr key={bookmark.bookmark.id}>
<td>{bookmark.bookmark.name}</td>
<td>{bookmark.bookmark.url}</td>
<td>{bookmark.categoryName}</td>
<td className={classes.TableActions}>
<div
className={classes.TableAction}
// onClick={() => deleteAppHandler(app)}
// onKeyDown={(e) => keyboardActionHandler(e, app, deleteAppHandler)}
tabIndex={0}>
<Icon icon='mdiDelete' />
</div>
<div
className={classes.TableAction}
// onClick={() => props.updateAppHandler(app)}
// onKeyDown={(e) => keyboardActionHandler(e, app, props.updateAppHandler)}
tabIndex={0}>
<Icon icon='mdiPencil' />
</div>
</td>
</tr>
)
})}
</Table>
)
}
}
2021-05-25 14:05:53 +02:00
export default connect(null, { pinCategory, deleteCategory })(BookmarkTable);