mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 11:39:36 +02:00
Cleaned up Apps and Bookmarks containers. Changed AppTable to use TableActions component
This commit is contained in:
parent
8941f8f2f4
commit
882f011d07
3 changed files with 114 additions and 146 deletions
|
@ -1,4 +1,4 @@
|
||||||
import { Fragment, KeyboardEvent, useState, useEffect } from 'react';
|
import { Fragment, useState, useEffect } from 'react';
|
||||||
import {
|
import {
|
||||||
DragDropContext,
|
DragDropContext,
|
||||||
Droppable,
|
Droppable,
|
||||||
|
@ -9,21 +9,20 @@ import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
// Redux
|
// Redux
|
||||||
import { useDispatch, useSelector } from 'react-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 { State } from '../../../store/reducers';
|
||||||
import { bindActionCreators } from 'redux';
|
import { bindActionCreators } from 'redux';
|
||||||
import { actionCreators } from '../../../store';
|
import { actionCreators } from '../../../store';
|
||||||
|
|
||||||
|
// Typescript
|
||||||
|
import { App } from '../../../interfaces';
|
||||||
|
|
||||||
|
// Other
|
||||||
|
import classes from './AppTable.module.css';
|
||||||
|
import { Table } from '../../UI';
|
||||||
|
import { TableActions } from '../../Actions/TableActions';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
updateAppHandler: (app: App) => void;
|
openFormForUpdating: (app: App) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const AppTable = (props: Props): JSX.Element => {
|
export const AppTable = (props: Props): JSX.Element => {
|
||||||
|
@ -33,49 +32,18 @@ export const AppTable = (props: Props): JSX.Element => {
|
||||||
} = useSelector((state: State) => state);
|
} = useSelector((state: State) => state);
|
||||||
|
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
const { pinApp, deleteApp, reorderApps, updateConfig, createNotification } =
|
const { pinApp, deleteApp, reorderApps, createNotification, updateApp } =
|
||||||
bindActionCreators(actionCreators, dispatch);
|
bindActionCreators(actionCreators, dispatch);
|
||||||
|
|
||||||
const [localApps, setLocalApps] = useState<App[]>([]);
|
const [localApps, setLocalApps] = useState<App[]>([]);
|
||||||
const [isCustomOrder, setIsCustomOrder] = useState<boolean>(false);
|
|
||||||
|
|
||||||
// Copy apps array
|
// Copy apps array
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setLocalApps([...apps]);
|
setLocalApps([...apps]);
|
||||||
}, [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 => {
|
const dragEndHanlder = (result: DropResult): void => {
|
||||||
if (!isCustomOrder) {
|
if (config.useOrdering !== 'orderId') {
|
||||||
createNotification({
|
createNotification({
|
||||||
title: 'Error',
|
title: 'Error',
|
||||||
message: 'Custom order is disabled',
|
message: 'Custom order is disabled',
|
||||||
|
@ -95,18 +63,43 @@ export const AppTable = (props: Props): JSX.Element => {
|
||||||
reorderApps(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 (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<div className={classes.Message}>
|
<div className={classes.Message}>
|
||||||
{isCustomOrder ? (
|
{config.useOrdering === 'orderId' ? (
|
||||||
<p>You can drag and drop single rows to reorder application</p>
|
<p>You can drag and drop single rows to reorder application</p>
|
||||||
) : (
|
) : (
|
||||||
<p>
|
<p>
|
||||||
Custom order is disabled. You can change it in{' '}
|
Custom order is disabled. You can change it in the{' '}
|
||||||
<Link to="/settings/other">settings</Link>
|
<Link to="/settings/interface">settings</Link>
|
||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<DragDropContext onDragEnd={dragEndHanlder}>
|
<DragDropContext onDragEnd={dragEndHanlder}>
|
||||||
<Droppable droppableId="apps">
|
<Droppable droppableId="apps">
|
||||||
{(provided) => (
|
{(provided) => (
|
||||||
|
@ -143,54 +136,15 @@ export const AppTable = (props: Props): JSX.Element => {
|
||||||
<td style={{ width: '200px' }}>
|
<td style={{ width: '200px' }}>
|
||||||
{app.isPublic ? 'Visible' : 'Hidden'}
|
{app.isPublic ? 'Visible' : 'Hidden'}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
{!snapshot.isDragging && (
|
{!snapshot.isDragging && (
|
||||||
<td className={classes.TableActions}>
|
<TableActions
|
||||||
<div
|
entity={app}
|
||||||
className={classes.TableAction}
|
deleteHandler={deleteAppHandler}
|
||||||
onClick={() => deleteAppHandler(app)}
|
updateHandler={updateAppHandler}
|
||||||
onKeyDown={(e) =>
|
pinHanlder={pinAppHandler}
|
||||||
keyboardActionHandler(
|
changeVisibilty={changeAppVisibiltyHandler}
|
||||||
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>
|
|
||||||
<div
|
|
||||||
className={classes.TableAction}
|
|
||||||
onClick={() => pinApp(app)}
|
|
||||||
onKeyDown={(e) =>
|
|
||||||
keyboardActionHandler(e, app, pinApp)
|
|
||||||
}
|
|
||||||
tabIndex={0}
|
|
||||||
>
|
|
||||||
{app.isPinned ? (
|
|
||||||
<Icon
|
|
||||||
icon="mdiPinOff"
|
|
||||||
color="var(--color-accent)"
|
|
||||||
/>
|
|
||||||
) : (
|
|
||||||
<Icon icon="mdiPin" />
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
)}
|
)}
|
||||||
</tr>
|
</tr>
|
||||||
);
|
);
|
||||||
|
|
|
@ -29,44 +29,49 @@ interface Props {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Apps = (props: Props): JSX.Element => {
|
export const Apps = (props: Props): JSX.Element => {
|
||||||
|
// Get Redux state
|
||||||
const {
|
const {
|
||||||
apps: { apps, loading },
|
apps: { apps, loading },
|
||||||
auth: { isAuthenticated },
|
auth: { isAuthenticated },
|
||||||
} = useSelector((state: State) => state);
|
} = useSelector((state: State) => state);
|
||||||
|
|
||||||
|
// Get Redux action creators
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
const { getApps } = bindActionCreators(actionCreators, dispatch);
|
const { getApps } = bindActionCreators(actionCreators, dispatch);
|
||||||
|
|
||||||
const [modalIsOpen, setModalIsOpen] = useState(false);
|
// Load apps if array is empty
|
||||||
const [isInEdit, setIsInEdit] = useState(false);
|
|
||||||
const [isInUpdate, setIsInUpdate] = useState(false);
|
|
||||||
const [appInUpdate, setAppInUpdate] = useState<App>(appTemplate);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!apps.length) {
|
if (!apps.length) {
|
||||||
getApps();
|
getApps();
|
||||||
}
|
}
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
// observe if user is authenticated -> set default view if not
|
// Form
|
||||||
|
const [modalIsOpen, setModalIsOpen] = useState(false);
|
||||||
|
const [showTable, setShowTable] = useState(false);
|
||||||
|
const [isInUpdate, setIsInUpdate] = useState(false);
|
||||||
|
const [appInUpdate, setAppInUpdate] = useState<App>(appTemplate);
|
||||||
|
|
||||||
|
// Observe if user is authenticated -> set default view if not
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!isAuthenticated) {
|
if (!isAuthenticated) {
|
||||||
setIsInEdit(false);
|
setShowTable(false);
|
||||||
setModalIsOpen(false);
|
setModalIsOpen(false);
|
||||||
}
|
}
|
||||||
}, [isAuthenticated]);
|
}, [isAuthenticated]);
|
||||||
|
|
||||||
|
// Form actions
|
||||||
const toggleModal = (): void => {
|
const toggleModal = (): void => {
|
||||||
setModalIsOpen(!modalIsOpen);
|
setModalIsOpen(!modalIsOpen);
|
||||||
setIsInUpdate(false);
|
setIsInUpdate(false);
|
||||||
};
|
};
|
||||||
|
|
||||||
const toggleEdit = (): void => {
|
const toggleEdit = (): void => {
|
||||||
setIsInEdit(!isInEdit);
|
setShowTable(!showTable);
|
||||||
setIsInUpdate(false);
|
setIsInUpdate(false);
|
||||||
};
|
};
|
||||||
|
|
||||||
const toggleUpdate = (app: App): void => {
|
const openFormForUpdating = (app: App): void => {
|
||||||
setAppInUpdate(app);
|
setAppInUpdate(app);
|
||||||
setIsInUpdate(true);
|
setIsInUpdate(true);
|
||||||
setModalIsOpen(true);
|
setModalIsOpen(true);
|
||||||
|
@ -97,10 +102,10 @@ export const Apps = (props: Props): JSX.Element => {
|
||||||
<div className={classes.Apps}>
|
<div className={classes.Apps}>
|
||||||
{loading ? (
|
{loading ? (
|
||||||
<Spinner />
|
<Spinner />
|
||||||
) : !isInEdit ? (
|
) : !showTable ? (
|
||||||
<AppGrid apps={apps} searching={props.searching} />
|
<AppGrid apps={apps} searching={props.searching} />
|
||||||
) : (
|
) : (
|
||||||
<AppTable updateAppHandler={toggleUpdate} />
|
<AppTable openFormForUpdating={openFormForUpdating} />
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
|
|
|
@ -18,11 +18,11 @@ import { Container, Headline, ActionButton, Spinner, Modal } from '../UI';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import { BookmarkGrid } from './BookmarkGrid/BookmarkGrid';
|
import { BookmarkGrid } from './BookmarkGrid/BookmarkGrid';
|
||||||
import { BookmarkTable } from './BookmarkTable/BookmarkTable';
|
|
||||||
import { Form } from './Form/Form';
|
import { Form } from './Form/Form';
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
import { bookmarkTemplate, categoryTemplate } from '../../utility';
|
import { bookmarkTemplate, categoryTemplate } from '../../utility';
|
||||||
|
import { Table } from './Table/Table';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
searching: boolean;
|
searching: boolean;
|
||||||
|
@ -34,66 +34,64 @@ export enum ContentType {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Bookmarks = (props: Props): JSX.Element => {
|
export const Bookmarks = (props: Props): JSX.Element => {
|
||||||
|
// Get Redux state
|
||||||
const {
|
const {
|
||||||
bookmarks: { loading, categories },
|
bookmarks: { loading, categories },
|
||||||
auth: { isAuthenticated },
|
auth: { isAuthenticated },
|
||||||
} = useSelector((state: State) => state);
|
} = useSelector((state: State) => state);
|
||||||
|
|
||||||
|
// Get Redux action creators
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
const { getCategories } = bindActionCreators(actionCreators, dispatch);
|
const { getCategories } = bindActionCreators(actionCreators, dispatch);
|
||||||
|
|
||||||
const [modalIsOpen, setModalIsOpen] = useState(false);
|
// Load categories if array is empty
|
||||||
const [formContentType, setFormContentType] = useState(ContentType.category);
|
|
||||||
const [isInEdit, setIsInEdit] = useState(false);
|
|
||||||
const [tableContentType, setTableContentType] = useState(
|
|
||||||
ContentType.category
|
|
||||||
);
|
|
||||||
const [isInUpdate, setIsInUpdate] = useState(false);
|
|
||||||
const [categoryInUpdate, setCategoryInUpdate] =
|
|
||||||
useState<Category>(categoryTemplate);
|
|
||||||
const [bookmarkInUpdate, setBookmarkInUpdate] =
|
|
||||||
useState<Bookmark>(bookmarkTemplate);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!categories.length) {
|
if (!categories.length) {
|
||||||
getCategories();
|
getCategories();
|
||||||
}
|
}
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
// observe if user is authenticated -> set default view if not
|
// Form
|
||||||
|
const [modalIsOpen, setModalIsOpen] = useState(false);
|
||||||
|
const [formContentType, setFormContentType] = useState(ContentType.category);
|
||||||
|
const [isInUpdate, setIsInUpdate] = useState(false);
|
||||||
|
const [categoryInUpdate, setCategoryInUpdate] =
|
||||||
|
useState<Category>(categoryTemplate);
|
||||||
|
const [bookmarkInUpdate, setBookmarkInUpdate] =
|
||||||
|
useState<Bookmark>(bookmarkTemplate);
|
||||||
|
|
||||||
|
// Table
|
||||||
|
const [showTable, setShowTable] = useState(false);
|
||||||
|
const [tableContentType, setTableContentType] = useState(
|
||||||
|
ContentType.category
|
||||||
|
);
|
||||||
|
|
||||||
|
// Observe if user is authenticated -> set default view (grid) if not
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!isAuthenticated) {
|
if (!isAuthenticated) {
|
||||||
setIsInEdit(false);
|
setShowTable(false);
|
||||||
setModalIsOpen(false);
|
setModalIsOpen(false);
|
||||||
}
|
}
|
||||||
}, [isAuthenticated]);
|
}, [isAuthenticated]);
|
||||||
|
|
||||||
|
// Form actions
|
||||||
const toggleModal = (): void => {
|
const toggleModal = (): void => {
|
||||||
setModalIsOpen(!modalIsOpen);
|
setModalIsOpen(!modalIsOpen);
|
||||||
};
|
};
|
||||||
|
|
||||||
const addActionHandler = (contentType: ContentType) => {
|
const openFormForAdding = (contentType: ContentType) => {
|
||||||
setFormContentType(contentType);
|
setFormContentType(contentType);
|
||||||
setIsInUpdate(false);
|
setIsInUpdate(false);
|
||||||
toggleModal();
|
toggleModal();
|
||||||
};
|
};
|
||||||
|
|
||||||
const editActionHandler = (contentType: ContentType) => {
|
const openFormForUpdating = (data: Category | Bookmark): void => {
|
||||||
// We're in the edit mode and the same button was clicked - go back to list
|
|
||||||
if (isInEdit && contentType === tableContentType) {
|
|
||||||
setIsInEdit(false);
|
|
||||||
} else {
|
|
||||||
setIsInEdit(true);
|
|
||||||
setTableContentType(contentType);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const instanceOfCategory = (object: any): object is Category => {
|
|
||||||
return 'bookmarks' in object;
|
|
||||||
};
|
|
||||||
|
|
||||||
const goToUpdateMode = (data: Category | Bookmark): void => {
|
|
||||||
setIsInUpdate(true);
|
setIsInUpdate(true);
|
||||||
|
|
||||||
|
const instanceOfCategory = (object: any): object is Category => {
|
||||||
|
return 'bookmarks' in object;
|
||||||
|
};
|
||||||
|
|
||||||
if (instanceOfCategory(data)) {
|
if (instanceOfCategory(data)) {
|
||||||
setFormContentType(ContentType.category);
|
setFormContentType(ContentType.category);
|
||||||
setCategoryInUpdate(data);
|
setCategoryInUpdate(data);
|
||||||
|
@ -101,9 +99,21 @@ export const Bookmarks = (props: Props): JSX.Element => {
|
||||||
setFormContentType(ContentType.bookmark);
|
setFormContentType(ContentType.bookmark);
|
||||||
setBookmarkInUpdate(data);
|
setBookmarkInUpdate(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
toggleModal();
|
toggleModal();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Table actions
|
||||||
|
const showTableForEditing = (contentType: ContentType) => {
|
||||||
|
// We're in the edit mode and the same button was clicked - go back to list
|
||||||
|
if (showTable && contentType === tableContentType) {
|
||||||
|
setShowTable(false);
|
||||||
|
} else {
|
||||||
|
setShowTable(true);
|
||||||
|
setTableContentType(contentType);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container>
|
<Container>
|
||||||
<Modal isOpen={modalIsOpen} setIsOpen={toggleModal}>
|
<Modal isOpen={modalIsOpen} setIsOpen={toggleModal}>
|
||||||
|
@ -123,35 +133,34 @@ export const Bookmarks = (props: Props): JSX.Element => {
|
||||||
<ActionButton
|
<ActionButton
|
||||||
name="Add Category"
|
name="Add Category"
|
||||||
icon="mdiPlusBox"
|
icon="mdiPlusBox"
|
||||||
handler={() => addActionHandler(ContentType.category)}
|
handler={() => openFormForAdding(ContentType.category)}
|
||||||
/>
|
/>
|
||||||
<ActionButton
|
<ActionButton
|
||||||
name="Add Bookmark"
|
name="Add Bookmark"
|
||||||
icon="mdiPlusBox"
|
icon="mdiPlusBox"
|
||||||
handler={() => addActionHandler(ContentType.bookmark)}
|
handler={() => openFormForAdding(ContentType.bookmark)}
|
||||||
/>
|
/>
|
||||||
<ActionButton
|
<ActionButton
|
||||||
name="Edit Categories"
|
name="Edit Categories"
|
||||||
icon="mdiPencil"
|
icon="mdiPencil"
|
||||||
handler={() => editActionHandler(ContentType.category)}
|
handler={() => showTableForEditing(ContentType.category)}
|
||||||
/>
|
/>
|
||||||
<ActionButton
|
{/* <ActionButton
|
||||||
name="Edit Bookmarks"
|
name="Edit Bookmarks"
|
||||||
icon="mdiPencil"
|
icon="mdiPencil"
|
||||||
handler={() => editActionHandler(ContentType.bookmark)}
|
handler={() => showTableForEditing(ContentType.bookmark)}
|
||||||
/>
|
/> */}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{loading ? (
|
{loading ? (
|
||||||
<Spinner />
|
<Spinner />
|
||||||
) : !isInEdit ? (
|
) : !showTable ? (
|
||||||
<BookmarkGrid categories={categories} searching={props.searching} />
|
<BookmarkGrid categories={categories} searching={props.searching} />
|
||||||
) : (
|
) : (
|
||||||
<BookmarkTable
|
<Table
|
||||||
contentType={tableContentType}
|
contentType={tableContentType}
|
||||||
categories={categories}
|
openFormForUpdating={openFormForUpdating}
|
||||||
updateHandler={goToUpdateMode}
|
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</Container>
|
</Container>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue