feat(MoveToShelf): move selected books to shelf
This commit is contained in:
parent
65e9aa2e0b
commit
c03aa30cfd
12 changed files with 331 additions and 69 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
.env
|
||||
n39env
|
||||
.n39env
|
||||
.vscode
|
|
@ -45,12 +45,17 @@ body {
|
|||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
tbody > tr > td {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
|
||||
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
|
||||
"Helvetica Neue", sans-serif !important;
|
||||
}
|
||||
.table > :not(caption) > * > * {
|
||||
background-color: #f2f2e8 !important;
|
||||
color: #5e6268 !important;
|
||||
}
|
||||
|
||||
table {
|
||||
table > thead {
|
||||
letter-spacing: 0.25em;
|
||||
}
|
||||
|
||||
|
@ -151,6 +156,11 @@ body {
|
|||
}
|
||||
|
||||
table {
|
||||
tbody > td > div {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
|
||||
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
|
||||
"Helvetica Neue", sans-serif !important;
|
||||
}
|
||||
letter-spacing: 0.25em;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import React, { useCallback, useContext, useMemo } from "react";
|
||||
import React, { useCallback, useContext, useMemo, useState } from "react";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import { Book } from "../../types/Book";
|
||||
import { Pagination, Table } from "react-bootstrap";
|
||||
import { Button, Form, Table } from "react-bootstrap";
|
||||
import {
|
||||
createColumnHelper,
|
||||
flexRender,
|
||||
|
@ -15,12 +15,13 @@ import {
|
|||
} from "@tanstack/react-table";
|
||||
import { Actions } from "./components/Actions";
|
||||
import { ImArrowDown, ImArrowUp } from "react-icons/im";
|
||||
import { AiOutlineLeft, AiOutlineRight } from "react-icons/ai";
|
||||
import { useLocation } from "react-router-dom";
|
||||
import { format } from "date-fns";
|
||||
import { useAuth } from "../../shared/utils/useAuthentication";
|
||||
import { ModalSelector } from "../../shared/components/modals/Modals";
|
||||
import { ModalContext } from "../../App";
|
||||
import { Pagination } from "./components/Pagination";
|
||||
import { modalTypes } from "../../shared/components/modals/types";
|
||||
|
||||
export const Library = (): React.JSX.Element => {
|
||||
const location = useLocation();
|
||||
|
@ -31,9 +32,21 @@ export const Library = (): React.JSX.Element => {
|
|||
[location]
|
||||
);
|
||||
|
||||
const auth = useAuth();
|
||||
const { authenticated } = useAuth();
|
||||
const modalContext = useContext(ModalContext);
|
||||
|
||||
const [selectedBooks, setSelectedBooks] = useState<Book["uuid"][]>([]);
|
||||
|
||||
const toggleBookSelection = useCallback(
|
||||
(uuid: Book["uuid"]) =>
|
||||
setSelectedBooks((prev) =>
|
||||
prev.includes(uuid)
|
||||
? prev.filter((current) => current !== uuid)
|
||||
: [...prev, uuid]
|
||||
),
|
||||
[]
|
||||
);
|
||||
|
||||
const { data: books, refetch } = useQuery<Book[]>({
|
||||
queryFn: async () => {
|
||||
if (
|
||||
|
@ -50,10 +63,48 @@ export const Library = (): React.JSX.Element => {
|
|||
queryKey: ["books"],
|
||||
});
|
||||
|
||||
const shelf = params.get("shelf");
|
||||
const year = params.get("year");
|
||||
|
||||
const data = useMemo(
|
||||
() =>
|
||||
books?.filter(
|
||||
(b) =>
|
||||
(!shelf || b.shelf?.toLowerCase() === shelf?.toLowerCase()) &&
|
||||
(!year || b.published.toString() === year)
|
||||
) ?? [],
|
||||
[books, year, shelf]
|
||||
);
|
||||
|
||||
const columnHelper = createColumnHelper<Book>();
|
||||
const columns: ColumnDef<Book, any>[] = useMemo(
|
||||
() =>
|
||||
[
|
||||
authenticated
|
||||
? columnHelper.display({
|
||||
id: "selection",
|
||||
header: () => (
|
||||
<Form.Check
|
||||
type='checkbox'
|
||||
checked={selectedBooks.length === data?.length}
|
||||
id={`select-all-books`}
|
||||
onChange={() =>
|
||||
setSelectedBooks((prev) =>
|
||||
prev.length || !data ? [] : data.map((b) => b.uuid)
|
||||
)
|
||||
}
|
||||
/>
|
||||
),
|
||||
cell: (props) => (
|
||||
<Form.Check
|
||||
type='checkbox'
|
||||
checked={selectedBooks.includes(props.row.original.uuid)}
|
||||
id={`select-book-${props.row.original.uuid}`}
|
||||
onChange={() => toggleBookSelection(props.row.original.uuid)}
|
||||
/>
|
||||
),
|
||||
})
|
||||
: undefined,
|
||||
columnHelper.accessor((book) => book.isbn, {
|
||||
id: "isbn",
|
||||
header: "ISBN",
|
||||
|
@ -108,7 +159,7 @@ export const Library = (): React.JSX.Element => {
|
|||
</div>
|
||||
),
|
||||
}),
|
||||
auth.authenticated
|
||||
authenticated
|
||||
? columnHelper.accessor(
|
||||
(book) => (!book.contact ? "" : book.contact),
|
||||
{
|
||||
|
@ -133,26 +184,21 @@ export const Library = (): React.JSX.Element => {
|
|||
<Actions
|
||||
book={props.row.original}
|
||||
refetch={refetch}
|
||||
authenticated={auth.authenticated}
|
||||
authenticated={authenticated}
|
||||
setActiveModal={modalContext.setActiveModal}
|
||||
/>
|
||||
),
|
||||
}),
|
||||
].filter((c) => typeof c !== "undefined") as ColumnDef<Book, any>[],
|
||||
[auth.authenticated, columnHelper, modalContext.setActiveModal, refetch]
|
||||
);
|
||||
|
||||
const shelf = params.get("shelf");
|
||||
const year = params.get("year");
|
||||
|
||||
const data = useMemo(
|
||||
() =>
|
||||
books?.filter(
|
||||
(b) =>
|
||||
(!shelf || b.shelf?.toLowerCase() === shelf?.toLowerCase()) &&
|
||||
(!year || b.published.toString() === year)
|
||||
) ?? [],
|
||||
[books, year, shelf]
|
||||
[
|
||||
authenticated,
|
||||
columnHelper,
|
||||
selectedBooks,
|
||||
data,
|
||||
toggleBookSelection,
|
||||
refetch,
|
||||
modalContext.setActiveModal,
|
||||
]
|
||||
);
|
||||
|
||||
const [pagination, setPagination] = React.useState<PaginationState>({
|
||||
|
@ -179,19 +225,6 @@ export const Library = (): React.JSX.Element => {
|
|||
[table.getState().pagination.pageIndex]
|
||||
);
|
||||
|
||||
const getPage = useCallback(
|
||||
(n: number) => (
|
||||
<Pagination.Item
|
||||
key={`${n}th-page`}
|
||||
active={n === currentPage}
|
||||
onClick={() => table.setPageIndex(n)}
|
||||
>
|
||||
{n + 1}
|
||||
</Pagination.Item>
|
||||
),
|
||||
[table, currentPage]
|
||||
);
|
||||
|
||||
return (
|
||||
<div className='m-auto p-2' style={{ width: "100%", maxHeight: "100vh" }}>
|
||||
<ModalSelector {...modalContext} />
|
||||
|
@ -249,32 +282,32 @@ export const Library = (): React.JSX.Element => {
|
|||
</div>
|
||||
{table.getPageCount() ? (
|
||||
<div className='d-flex w-100'>
|
||||
<Pagination className='d-flex m-auto'>
|
||||
<Pagination.Item
|
||||
key='prev'
|
||||
disabled={currentPage === 0}
|
||||
onClick={() => table.setPageIndex(currentPage - 1)}
|
||||
<Pagination
|
||||
currentPage={currentPage}
|
||||
setPageIndex={table.setPageIndex}
|
||||
getPageCount={table.getPageCount}
|
||||
/>
|
||||
{authenticated && (
|
||||
<Button
|
||||
style={{
|
||||
marginLeft: "0px",
|
||||
marginRight: "auto",
|
||||
}}
|
||||
className='my-auto'
|
||||
onClick={() =>
|
||||
modalContext.setActiveModal({
|
||||
type: modalTypes.moveShelf,
|
||||
books: selectedBooks,
|
||||
onClose: () => {
|
||||
refetch();
|
||||
modalContext.setActiveModal();
|
||||
},
|
||||
})
|
||||
}
|
||||
>
|
||||
<AiOutlineLeft />
|
||||
</Pagination.Item>
|
||||
{getPage(0)}
|
||||
{currentPage > 3 && <Pagination.Ellipsis />}
|
||||
{currentPage === 3 && getPage(currentPage - 2)}
|
||||
{currentPage > 1 && getPage(currentPage - 1)}
|
||||
{currentPage > 0 && getPage(currentPage)}
|
||||
{currentPage < table.getPageCount() - 2 && getPage(currentPage + 1)}
|
||||
{currentPage < table.getPageCount() - 3 &&
|
||||
table.getPageCount() > 4 && <Pagination.Ellipsis />}
|
||||
{currentPage < table.getPageCount() - 1 &&
|
||||
getPage(table.getPageCount() - 1)}
|
||||
<Pagination.Item
|
||||
key='next'
|
||||
onClick={() => table.setPageIndex(currentPage + 1)}
|
||||
disabled={currentPage >= table.getPageCount() - 1}
|
||||
>
|
||||
<AiOutlineRight />
|
||||
</Pagination.Item>
|
||||
</Pagination>
|
||||
Move selection
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
) : null}
|
||||
</div>
|
||||
|
|
|
@ -108,9 +108,7 @@ export const Actions = ({
|
|||
<Dropdown.Item
|
||||
id='delete'
|
||||
className='d-flex'
|
||||
onClick={() =>
|
||||
setActiveModal({ type: del, uuid: book.uuid, onClose })
|
||||
}
|
||||
onClick={() => setActiveModal({ type: del, onClose, ...book })}
|
||||
>
|
||||
<Badge pill className='ml-2 d-flex danger mr-2'>
|
||||
<ImBin size={25} color='black' className='m-auto' />
|
||||
|
|
61
frontend/src/pages/Library/components/Pagination.tsx
Normal file
61
frontend/src/pages/Library/components/Pagination.tsx
Normal file
|
@ -0,0 +1,61 @@
|
|||
import React, { useCallback } from "react";
|
||||
import { Pagination as BP } from "react-bootstrap";
|
||||
import { AiOutlineLeft, AiOutlineRight } from "react-icons/ai";
|
||||
|
||||
export const Pagination = ({
|
||||
currentPage,
|
||||
getPageCount,
|
||||
setPageIndex,
|
||||
}: {
|
||||
currentPage: number;
|
||||
getPageCount: () => number;
|
||||
setPageIndex: (index: number) => void;
|
||||
}): React.JSX.Element => {
|
||||
const getPage = useCallback(
|
||||
(n: number) => (
|
||||
<BP.Item
|
||||
key={`${n}th-page`}
|
||||
active={n === currentPage}
|
||||
onClick={() => setPageIndex(n)}
|
||||
>
|
||||
{n + 1}
|
||||
</BP.Item>
|
||||
),
|
||||
[setPageIndex, currentPage]
|
||||
);
|
||||
|
||||
return (
|
||||
<BP
|
||||
className='d-flex'
|
||||
style={{
|
||||
marginLeft: "auto",
|
||||
marginRight: "10px",
|
||||
}}
|
||||
>
|
||||
<BP.Item
|
||||
key='prev'
|
||||
disabled={currentPage === 0}
|
||||
onClick={() => setPageIndex(currentPage - 1)}
|
||||
>
|
||||
<AiOutlineLeft />
|
||||
</BP.Item>
|
||||
{getPage(0)}
|
||||
{currentPage > 3 && <BP.Ellipsis />}
|
||||
{currentPage === 3 && getPage(currentPage - 2)}
|
||||
{currentPage > 1 && getPage(currentPage - 1)}
|
||||
{currentPage > 0 && getPage(currentPage)}
|
||||
{currentPage < getPageCount() - 2 && getPage(currentPage + 1)}
|
||||
{currentPage < getPageCount() - 3 && getPageCount() > 4 && (
|
||||
<BP.Ellipsis />
|
||||
)}
|
||||
{currentPage < getPageCount() - 1 && getPage(getPageCount() - 1)}
|
||||
<BP.Item
|
||||
key='next'
|
||||
onClick={() => setPageIndex(currentPage + 1)}
|
||||
disabled={currentPage >= getPageCount() - 1}
|
||||
>
|
||||
<AiOutlineRight />
|
||||
</BP.Item>
|
||||
</BP>
|
||||
);
|
||||
};
|
|
@ -6,6 +6,7 @@ import { DeleteBookModalProps } from "./types";
|
|||
|
||||
export const DeleteBookModal = ({
|
||||
uuid,
|
||||
title,
|
||||
open,
|
||||
onClose,
|
||||
}: Omit<DeleteBookModalProps, "type">): React.JSX.Element => {
|
||||
|
@ -26,7 +27,7 @@ export const DeleteBookModal = ({
|
|||
<Modal show={open} onHide={onClose} centered>
|
||||
<ModalHeader
|
||||
onClose={onClose}
|
||||
title={"Move to Shelf"}
|
||||
title={`Delete Book "${title}"`}
|
||||
icon={<ImBin size={50} className='ml-0 mr-auto' />}
|
||||
/>
|
||||
<Modal.Body
|
||||
|
@ -34,6 +35,7 @@ export const DeleteBookModal = ({
|
|||
borderTop: "none",
|
||||
}}
|
||||
>
|
||||
Do you really want to delete this book?
|
||||
<div className='d-flex mx-auto mb-auto mt-2 w-100'>
|
||||
<Button
|
||||
style={{
|
||||
|
|
|
@ -6,8 +6,9 @@ import { CheckoutBookModal } from "./CheckoutModal";
|
|||
import { ScannerModal } from "./ScannerModal";
|
||||
import { DeleteBookModal } from "./DeleteBookModal";
|
||||
import { ModalContextType } from "../../../App";
|
||||
import { MoveShelfModal } from "./MoveShelfModal";
|
||||
|
||||
const { auth, book, checkout, scanner, del } = modalTypes;
|
||||
const { auth, book, checkout, scanner, del, moveShelf } = modalTypes;
|
||||
|
||||
export const ModalSelector = ({
|
||||
activeModal,
|
||||
|
@ -48,7 +49,15 @@ export const ModalSelector = ({
|
|||
<DeleteBookModal
|
||||
open={activeModal?.type === del}
|
||||
onClose={activeModal?.type === del ? activeModal.onClose : setActiveModal}
|
||||
uuid={activeModal?.type === checkout ? activeModal.uuid : ""}
|
||||
uuid={activeModal?.type === del ? activeModal.uuid : ""}
|
||||
title={activeModal?.type === del ? activeModal.title : ""}
|
||||
/>
|
||||
<MoveShelfModal
|
||||
books={activeModal?.type === moveShelf ? activeModal.books : []}
|
||||
open={activeModal?.type === moveShelf}
|
||||
onClose={
|
||||
activeModal?.type === moveShelf ? activeModal.onClose : setActiveModal
|
||||
}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
|
|
100
frontend/src/shared/components/modals/MoveShelfModal.tsx
Normal file
100
frontend/src/shared/components/modals/MoveShelfModal.tsx
Normal file
|
@ -0,0 +1,100 @@
|
|||
import { useMutation } from "@tanstack/react-query";
|
||||
import { Button, Col, Form, Modal, Row } from "react-bootstrap";
|
||||
import { ImBook } from "react-icons/im";
|
||||
import { ModalHeader } from "./ModalHeader";
|
||||
import { MoveShelfAction, MoveShelfModalProps } from "./types";
|
||||
import { useForm, useWatch } from "react-hook-form";
|
||||
import { bookShelfs } from "../../../types/Book";
|
||||
|
||||
export const MoveShelfModal = ({
|
||||
books,
|
||||
open,
|
||||
onClose,
|
||||
}: Omit<MoveShelfModalProps, "type">): React.JSX.Element => {
|
||||
const { control, register, formState, setError } = useForm<MoveShelfAction>({
|
||||
mode: "onChange",
|
||||
});
|
||||
|
||||
const values = useWatch({ control });
|
||||
|
||||
const { mutate: mv } = useMutation({
|
||||
mutationFn: async () => {
|
||||
if (!values.target) {
|
||||
setError("target", { message: "Taget shelf is required" });
|
||||
return;
|
||||
}
|
||||
|
||||
await fetch(`/api/shelf/move`, {
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
body: JSON.stringify({ ...values, books }),
|
||||
});
|
||||
onClose();
|
||||
},
|
||||
});
|
||||
|
||||
return (
|
||||
<Modal show={open} onHide={onClose} centered>
|
||||
<ModalHeader
|
||||
onClose={onClose}
|
||||
title={"Move to Shelf"}
|
||||
icon={<ImBook size={50} className='ml-0 mr-auto' />}
|
||||
/>
|
||||
<Modal.Body
|
||||
style={{
|
||||
borderTop: "none",
|
||||
}}
|
||||
>
|
||||
<Form.Group as={Row} className='mb-2'>
|
||||
<Col sm='2'>
|
||||
<Form.Label>Shelf</Form.Label>
|
||||
</Col>
|
||||
<Col>
|
||||
<Form.Select
|
||||
{...register("target", { required: true })}
|
||||
isInvalid={!!formState.errors.target}
|
||||
>
|
||||
{Object.keys(bookShelfs).map((key) => (
|
||||
<option
|
||||
key='key'
|
||||
value={bookShelfs[key as keyof typeof bookShelfs]}
|
||||
>
|
||||
{key}
|
||||
</option>
|
||||
))}
|
||||
</Form.Select>
|
||||
<Form.Control.Feedback type='invalid'>
|
||||
{!values.target
|
||||
? "Target shelf is required"
|
||||
: formState.errors.target?.message}
|
||||
</Form.Control.Feedback>
|
||||
</Col>
|
||||
</Form.Group>
|
||||
<div className='d-flex mx-auto mb-auto mt-2 w-100'>
|
||||
<Button
|
||||
style={{
|
||||
borderRadius: "5px",
|
||||
marginLeft: "auto",
|
||||
marginRight: "10px",
|
||||
}}
|
||||
onClick={() => onClose()}
|
||||
>
|
||||
Cancel
|
||||
</Button>
|
||||
<Button
|
||||
style={{
|
||||
borderRadius: "5px",
|
||||
marginLeft: "0px",
|
||||
marginRight: "10px",
|
||||
}}
|
||||
onClick={() => mv()}
|
||||
>
|
||||
Move
|
||||
</Button>
|
||||
</div>
|
||||
</Modal.Body>
|
||||
</Modal>
|
||||
);
|
||||
};
|
|
@ -11,6 +11,7 @@ export const modalTypes = {
|
|||
checkout: "checkout",
|
||||
scanner: "scanner",
|
||||
del: "del",
|
||||
moveShelf: "moveShelf",
|
||||
} as const;
|
||||
|
||||
export type ModalTypes = keyof typeof modalTypes;
|
||||
|
@ -37,11 +38,21 @@ export type ScannnerModal = {
|
|||
} & BaseModalProps;
|
||||
|
||||
export type DeleteBookModalProps = { type: "del" } & BaseModalProps &
|
||||
Pick<Book, "uuid">;
|
||||
Pick<Book, "uuid" | "title">;
|
||||
|
||||
export type MoveShelfModalProps = { type: "moveShelf" } & BaseModalProps & {
|
||||
books: Book["uuid"][];
|
||||
};
|
||||
|
||||
export interface MoveShelfAction {
|
||||
target: Book["shelf"];
|
||||
books: Book["uuid"][];
|
||||
}
|
||||
|
||||
export type ActiveModalProps =
|
||||
| Omit<AuthModalProps, "open" | "onClose">
|
||||
| Omit<BookModalProps, "open">
|
||||
| Omit<CheckoutBookModalProps, "open">
|
||||
| Omit<ScannnerModal, "open" | "onClose">
|
||||
| Omit<DeleteBookModalProps, "open">;
|
||||
| Omit<DeleteBookModalProps, "open">
|
||||
| Omit<MoveShelfModalProps, "open">;
|
||||
|
|
|
@ -2,7 +2,7 @@ import express, { Request, Response, Application } from "express";
|
|||
import dotenv from "dotenv";
|
||||
|
||||
import { createPool } from "mariadb";
|
||||
import { Book } from "./types/Book";
|
||||
import { Book, MoveShelfAction } from "./types/Book";
|
||||
import {
|
||||
checkoutBook,
|
||||
findBook,
|
||||
|
@ -19,6 +19,7 @@ import session from "express-session";
|
|||
import { censorBookData } from "./utils/censorBookData";
|
||||
import * as fs from "fs";
|
||||
import { checkForThreads } from "./utils/passesSQLInjectionCheck";
|
||||
import { moveShelf } from "./queries/moveShelf";
|
||||
|
||||
dotenv.config();
|
||||
|
||||
|
@ -199,6 +200,31 @@ app.post(
|
|||
}
|
||||
);
|
||||
|
||||
app.post(
|
||||
"/api/shelf/move",
|
||||
async (
|
||||
req: Request<undefined, undefined, MoveShelfAction>,
|
||||
res: Response
|
||||
) => {
|
||||
await isAuthenticated(req, res, async () => {
|
||||
const { target } = req.body;
|
||||
try {
|
||||
const containsThread = checkForThreads([target], res);
|
||||
if (containsThread) {
|
||||
return;
|
||||
}
|
||||
|
||||
const conn = await pool.getConnection();
|
||||
await conn.query(moveShelf(req.body));
|
||||
await conn.end();
|
||||
res.status(200).send(`Books moved to shelf ${target}.`);
|
||||
} catch (error) {
|
||||
res.status(500).send("Internal Server Error: " + error);
|
||||
}
|
||||
});
|
||||
}
|
||||
);
|
||||
|
||||
app.post(
|
||||
"/api/books/edit",
|
||||
async (
|
||||
|
@ -230,7 +256,7 @@ app.post(
|
|||
} else {
|
||||
await conn.query(editBook(req.body));
|
||||
await conn.end();
|
||||
res.status(200).send("Book moved to shelf");
|
||||
res.status(200).send("Book edited.");
|
||||
}
|
||||
} catch (error) {
|
||||
res.status(500).send("Internal Server Error: " + error);
|
||||
|
|
6
middleware/queries/moveShelf.ts
Normal file
6
middleware/queries/moveShelf.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
import { MoveShelfAction } from "../types/Book";
|
||||
|
||||
export const moveShelf = ({ target, books }: MoveShelfAction) =>
|
||||
`UPDATE bookData SET shelf='${target}' WHERE uuid IN ('${books.join(
|
||||
"', '"
|
||||
)}');`;
|
|
@ -9,3 +9,8 @@ export type Book = {
|
|||
contact: string | null;
|
||||
shelf: "AVAILABLE" | "FNORD1" | "FNORD2" | "SHARING" | null;
|
||||
};
|
||||
|
||||
export interface MoveShelfAction {
|
||||
target: Book["shelf"];
|
||||
books: Book["uuid"][];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue