Compare commits
No commits in common. "afdc95d5c603b8c63ee8cfa6eaad542c03aa2f49" and "04d9b8641929443e1d674619fa8bd11ccadbd6d4" have entirely different histories.
afdc95d5c6
...
04d9b86419
11 changed files with 160 additions and 215 deletions
|
@ -6,6 +6,7 @@ import "./App.css";
|
|||
import { Main } from "./pages";
|
||||
import { Library } from "./pages/Library";
|
||||
import { Book } from "./pages/Book";
|
||||
import { primary } from "./colors";
|
||||
import { ActiveModalProps } from "./shared/components/modals/types";
|
||||
|
||||
export const AuthContext = createContext<{
|
||||
|
@ -49,6 +50,7 @@ function App() {
|
|||
style={{
|
||||
height: "100vh",
|
||||
width: "100vw",
|
||||
backgroundColor: primary,
|
||||
fontFamily: "New Amsterdam",
|
||||
overflow: "scroll",
|
||||
}}
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
export const primary = "#5e6268";
|
||||
export const primaryRGBA = "rgba(83,86,91, 0.8)";
|
||||
export const secondary = "#5f5e68";
|
||||
export const tertiary = "#5e6768";
|
||||
export const danger = "#685e62";
|
|
@ -12,210 +12,51 @@ body {
|
|||
}
|
||||
}
|
||||
|
||||
#bootstrap-overrides {
|
||||
background-color: #f2f3f4;
|
||||
color: #5e6268;
|
||||
|
||||
.btn-primary {
|
||||
background-color: #5e6268;
|
||||
color: #f2f3f4;
|
||||
border: 2px solid #5e6268;
|
||||
}
|
||||
|
||||
form-control {
|
||||
background-color: #f2f2e8 !important;
|
||||
border-color: #5e6268 !important;
|
||||
}
|
||||
|
||||
.form-select .form-control {
|
||||
#bootstrap-overrides .form-select .form-control {
|
||||
background-color: #f2f2e8 !important;
|
||||
border-color: #f2f2e8 !important;
|
||||
}
|
||||
|
||||
.dropdown-toggle::after {
|
||||
#bootstrap-overrides .dropdown-toggle::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.form-label {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
|
||||
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
|
||||
"Helvetica Neue", sans-serif !important;
|
||||
#bootstrap-overrides .form-label {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
||||
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
||||
sans-serif !important;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
.table > :not(caption) > * > * {
|
||||
background-color: #f2f2e8 !important;
|
||||
color: #5e6268 !important;
|
||||
}
|
||||
|
||||
table {
|
||||
#bootstrap-overrides table {
|
||||
letter-spacing: 0.25em;
|
||||
}
|
||||
|
||||
.bg-primary {
|
||||
#bootstrap-overrides .bg-primary {
|
||||
background-color: #f2f3f4 !important;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
#bootstrap-overrides .modal-body {
|
||||
background-color: #f2f3f4 !important;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
background-color: #f2f3f4 !important;
|
||||
border-radius: 0px 0px 10px 10px;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
background-color: #f2f3f4 !important;
|
||||
border-radius: 10px 10px 0px 0px;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.dropdown button {
|
||||
background-color: #f2f2e8 !important;
|
||||
color: #5e6268 !important;
|
||||
border: 2px solid #5e6268;
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
background-color: #f2f2e8 !important;
|
||||
color: #5e6268 !important;
|
||||
border: 2px solid #f2f2e8;
|
||||
}
|
||||
|
||||
.danger {
|
||||
#bootstrap-overrides .danger {
|
||||
background-color: #f9a9ab !important;
|
||||
}
|
||||
|
||||
.page-link {
|
||||
color: #5e6268 !important;
|
||||
border: 2px solid #5e6268 !important;
|
||||
#bootstrap-overrides .page-link {
|
||||
color: black !important;
|
||||
border: 2px solid black !important;
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.active > .page-link {
|
||||
background-color: #5e6268 !important;
|
||||
#bootstrap-overrides .active > .page-link {
|
||||
background-color: black !important;
|
||||
color: #f2f3f4 !important;
|
||||
}
|
||||
|
||||
.pagination {
|
||||
margin-top: 10px !important;
|
||||
|
||||
li {
|
||||
min-width: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
#bootstrap-overrides {
|
||||
background-color: #5e6268;
|
||||
color: #f2f3f4;
|
||||
|
||||
.btn-primary {
|
||||
background-color: #f2f3f4;
|
||||
color: #5e6268;
|
||||
border: 2px solid #5e6268;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
background-color: #f2f2e8 !important;
|
||||
border-color: #5e6268 !important;
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
.form-select .form-control {
|
||||
background-color: #f2f2e8 !important;
|
||||
border-color: #f2f2e8 !important;
|
||||
}
|
||||
|
||||
.dropdown-toggle::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.form-label {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
|
||||
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
|
||||
"Helvetica Neue", sans-serif !important;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
.table > :not(caption) > * > * {
|
||||
background-color: #5e6268 !important;
|
||||
color: #f2f2e8 !important;
|
||||
}
|
||||
|
||||
table {
|
||||
letter-spacing: 0.25em;
|
||||
}
|
||||
|
||||
.bg-primary {
|
||||
background-color: #5e6268 !important;
|
||||
}
|
||||
|
||||
.dropdown button {
|
||||
background-color: #f2f2e8 !important;
|
||||
color: #5e6268 !important;
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
background-color: #5e6268 !important;
|
||||
border: 2px solid #5e6268;
|
||||
}
|
||||
|
||||
.dropdown-item {
|
||||
color: #f2f2e8 !important;
|
||||
svg {
|
||||
color: #f2f2e8 !important;
|
||||
}
|
||||
}
|
||||
.dropdown-item:hover {
|
||||
color: #5e6268 !important;
|
||||
background-color: #f2f2e8 !important;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
background-color: #5e6268 !important;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
background-color: #5e6268 !important;
|
||||
border-radius: 0px 0px 10px 10px;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
background-color: #5e6268 !important;
|
||||
border-radius: 10px 10px 0px 0px;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.danger {
|
||||
background-color: #c94414 !important;
|
||||
}
|
||||
|
||||
.page-link {
|
||||
color: #f2f3f4 !important;
|
||||
border: 2px solid #f2f3f4 !important;
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.active > .page-link {
|
||||
background-color: #f2f3f4 !important;
|
||||
color: #5e6268 !important;
|
||||
}
|
||||
|
||||
.pagination {
|
||||
margin-top: 10px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
||||
monospace;
|
||||
|
|
|
@ -2,8 +2,7 @@ import { Badge, Dropdown } from "react-bootstrap";
|
|||
import { Book } from "../../../types/Book";
|
||||
import { ImBin, ImBook, ImBoxAdd, ImBoxRemove, ImMenu } from "react-icons/im";
|
||||
import { useMutation } from "@tanstack/react-query";
|
||||
import * as colors from "../../../colors";
|
||||
import * as dark from "../../../darkmodeColors";
|
||||
import { secondary } from "../../../colors";
|
||||
import { ModalContextType } from "../../../App";
|
||||
import { modalTypes } from "../../../shared/components/modals/types";
|
||||
import { useCallback } from "react";
|
||||
|
@ -45,7 +44,11 @@ export const Actions = ({
|
|||
return (
|
||||
<>
|
||||
<Dropdown>
|
||||
<Dropdown.Toggle variant='success' id='dropdown-basic'>
|
||||
<Dropdown.Toggle
|
||||
variant='success'
|
||||
id='dropdown-basic'
|
||||
style={{ backgroundColor: secondary, border: "2px solid black" }}
|
||||
>
|
||||
<ImMenu size={25} color='black' />
|
||||
</Dropdown.Toggle>
|
||||
|
||||
|
@ -56,7 +59,14 @@ export const Actions = ({
|
|||
className='d-flex'
|
||||
onClick={() => setActiveModal({ type: bookModal, book, onClose })}
|
||||
>
|
||||
<Badge pill className='ml-2 d-flex mr-2'>
|
||||
<Badge
|
||||
pill
|
||||
className='ml-2 d-flex mr-2'
|
||||
style={{
|
||||
border: "2px solid black",
|
||||
backgroundColor: "transparent",
|
||||
}}
|
||||
>
|
||||
<ImBook size={25} color='black' className='m-auto' />
|
||||
</Badge>
|
||||
<p className='m-auto' style={{ paddingLeft: "10px" }}>
|
||||
|
@ -77,7 +87,13 @@ export const Actions = ({
|
|||
})
|
||||
}
|
||||
>
|
||||
<Badge pill className='ml-2 d-flex mr-2'>
|
||||
<Badge
|
||||
pill
|
||||
className='ml-2 d-flex mr-2'
|
||||
style={{
|
||||
border: "2px solid black",
|
||||
}}
|
||||
>
|
||||
<ImBoxRemove size={25} color='black' className='m-auto' />
|
||||
</Badge>{" "}
|
||||
<p className='m-auto' style={{ paddingLeft: "10px" }}>
|
||||
|
@ -114,7 +130,13 @@ export const Actions = ({
|
|||
setActiveModal({ type: del, uuid: book.uuid, onClose })
|
||||
}
|
||||
>
|
||||
<Badge pill className='ml-2 d-flex danger mr-2'>
|
||||
<Badge
|
||||
pill
|
||||
className='ml-2 d-flex danger mr-2'
|
||||
style={{
|
||||
border: "2px solid black",
|
||||
}}
|
||||
>
|
||||
<ImBin size={25} color='black' className='m-auto' />
|
||||
</Badge>{" "}
|
||||
<p className='m-auto' style={{ paddingLeft: "10px" }}>
|
||||
|
|
|
@ -13,6 +13,7 @@ import { TfiKey } from "react-icons/tfi";
|
|||
|
||||
import { Link, useNavigate } from "react-router-dom";
|
||||
import { Book } from "../../types/Book";
|
||||
import { secondary } from "../../colors";
|
||||
import { useAuth } from "../../shared/utils/useAuthentication";
|
||||
import { ModalContext } from "../../App";
|
||||
import { modalTypes } from "../../shared/components/modals/types";
|
||||
|
@ -94,12 +95,16 @@ export const Main = (): React.JSX.Element => {
|
|||
onChange={(ev) => setTitle(ev.target.value)}
|
||||
style={{
|
||||
borderRadius: "20px 0px 0px 20px",
|
||||
border: "2px solid black",
|
||||
borderRight: "none",
|
||||
}}
|
||||
/>
|
||||
<Button
|
||||
style={{
|
||||
borderRadius: "0px 5px 5px 0px",
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
}}
|
||||
className='mr-2'
|
||||
disabled={activeModal?.type === scanner || isFetching}
|
||||
|
@ -130,6 +135,9 @@ export const Main = (): React.JSX.Element => {
|
|||
<Button
|
||||
style={{
|
||||
borderRadius: "5px",
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
marginLeft: "auto",
|
||||
marginRight: "10px",
|
||||
}}
|
||||
|
@ -143,6 +151,9 @@ export const Main = (): React.JSX.Element => {
|
|||
<Button
|
||||
style={{
|
||||
borderRadius: "5px",
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
marginLeft: "auto",
|
||||
marginRight: "10px",
|
||||
}}
|
||||
|
@ -163,6 +174,9 @@ export const Main = (): React.JSX.Element => {
|
|||
<Button
|
||||
style={{
|
||||
borderRadius: "5px",
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
}}
|
||||
>
|
||||
<ImBooks /> Browse library{" "}
|
||||
|
@ -172,6 +186,9 @@ export const Main = (): React.JSX.Element => {
|
|||
<Button
|
||||
style={{
|
||||
borderRadius: "5px",
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
marginRight: "auto",
|
||||
marginLeft: "10px",
|
||||
}}
|
||||
|
|
|
@ -2,6 +2,7 @@ import { useCallback, useContext } from "react";
|
|||
import { Button, Col, Form, Modal, Row } from "react-bootstrap";
|
||||
import { useForm, useWatch } from "react-hook-form";
|
||||
import { TfiKey } from "react-icons/tfi";
|
||||
import { primaryRGBA, primary, secondary } from "../../../colors";
|
||||
import { ModalHeader } from "./ModalHeader";
|
||||
import { AuthContext } from "../../../App";
|
||||
import { AuthModalProps } from "./types";
|
||||
|
@ -70,7 +71,12 @@ export const AuthenticationModal = ({
|
|||
);
|
||||
|
||||
return (
|
||||
<Modal show={open} onHide={onClose} centered>
|
||||
<Modal
|
||||
show={open}
|
||||
onHide={onClose}
|
||||
style={{ backgroundColor: primaryRGBA }}
|
||||
centered
|
||||
>
|
||||
<ModalHeader
|
||||
onClose={onClose}
|
||||
title={isUpdate ? "Set new Admin key" : "Admin Login"}
|
||||
|
@ -78,7 +84,9 @@ export const AuthenticationModal = ({
|
|||
/>
|
||||
<Modal.Body
|
||||
style={{
|
||||
border: "2px solid black",
|
||||
borderTop: "none",
|
||||
backgroundColor: primary,
|
||||
}}
|
||||
>
|
||||
<Form
|
||||
|
@ -133,6 +141,9 @@ export const AuthenticationModal = ({
|
|||
|
||||
{!isUpdate && (
|
||||
<Form.Group as={Row} className='mb-2'>
|
||||
<Col sm='4'>
|
||||
<Form.Label>Password</Form.Label>
|
||||
</Col>
|
||||
<Col>
|
||||
<Form.Control
|
||||
{...register("password", {
|
||||
|
@ -155,6 +166,9 @@ export const AuthenticationModal = ({
|
|||
<Button
|
||||
style={{
|
||||
borderRadius: "5px",
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
marginLeft: "auto",
|
||||
marginRight: "10px",
|
||||
}}
|
||||
|
|
|
@ -5,6 +5,7 @@ import { ModalHeader } from "./ModalHeader";
|
|||
import { useForm, useWatch } from "react-hook-form";
|
||||
import { Book, bookShelfs } from "../../../types/Book";
|
||||
import { useScanner } from "../../utils/useScanner";
|
||||
import { primary, primaryRGBA, secondary } from "../../../colors";
|
||||
import { BookModalProps } from "./types";
|
||||
|
||||
type BookForm = Pick<Book, "isbn" | "title" | "shelf" | "published">;
|
||||
|
@ -93,7 +94,12 @@ export const BookModal = ({
|
|||
);
|
||||
|
||||
return (
|
||||
<Modal show={open} onHide={onClose} centered>
|
||||
<Modal
|
||||
show={open}
|
||||
onHide={onClose}
|
||||
style={{ backgroundColor: primaryRGBA }}
|
||||
centered
|
||||
>
|
||||
<ModalHeader
|
||||
onClose={onClose}
|
||||
title={`${!!book ? "Edit" : "Add new"} Book`}
|
||||
|
@ -101,7 +107,9 @@ export const BookModal = ({
|
|||
/>
|
||||
<Modal.Body
|
||||
style={{
|
||||
border: "2px solid black",
|
||||
borderTop: "none",
|
||||
backgroundColor: primary,
|
||||
}}
|
||||
>
|
||||
{!showScanner && (
|
||||
|
@ -128,6 +136,9 @@ export const BookModal = ({
|
|||
<Button
|
||||
style={{
|
||||
borderRadius: "0px 5px 5px 0px",
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
}}
|
||||
className='mr-2 pt-0'
|
||||
disabled={showScanner}
|
||||
|
@ -226,6 +237,9 @@ export const BookModal = ({
|
|||
<Button
|
||||
style={{
|
||||
borderRadius: "5px",
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
marginLeft: "auto",
|
||||
marginRight: "10px",
|
||||
}}
|
||||
|
@ -246,6 +260,7 @@ export const BookModal = ({
|
|||
className='drawingBuffer w-100 position-absolute'
|
||||
style={{
|
||||
height: "100%",
|
||||
border: "2px solid black",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
|
|
@ -3,7 +3,7 @@ import { Alert, Button, Col, Form, Modal, Row } from "react-bootstrap";
|
|||
import { ImBoxAdd, ImBoxRemove } from "react-icons/im";
|
||||
import { useForm, useWatch } from "react-hook-form";
|
||||
import { Book } from "../../../types/Book";
|
||||
import { primary, secondary } from "../../../colors";
|
||||
import { primary, primaryRGBA, secondary } from "../../../colors";
|
||||
import { ModalHeader } from "./ModalHeader";
|
||||
import { CheckoutBookModalProps } from "./types";
|
||||
import { AiOutlineExclamationCircle } from "react-icons/ai";
|
||||
|
@ -68,7 +68,12 @@ export const CheckoutBookModal = ({
|
|||
);
|
||||
|
||||
return (
|
||||
<Modal show={open} onHide={onClose} centered>
|
||||
<Modal
|
||||
show={open}
|
||||
onHide={onClose}
|
||||
style={{ backgroundColor: primaryRGBA }}
|
||||
centered
|
||||
>
|
||||
<ModalHeader
|
||||
onClose={onClose}
|
||||
title={`${isChechout ? "Checkout" : "Return"} book '${title}'`}
|
||||
|
@ -82,7 +87,9 @@ export const CheckoutBookModal = ({
|
|||
/>
|
||||
<Modal.Body
|
||||
style={{
|
||||
border: "2px solid black",
|
||||
borderTop: "none",
|
||||
backgroundColor: primary,
|
||||
}}
|
||||
>
|
||||
<Alert className='w-80 m-auto my-4' variant='warning'>
|
||||
|
@ -180,6 +187,9 @@ export const CheckoutBookModal = ({
|
|||
<Button
|
||||
style={{
|
||||
borderRadius: "5px",
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
marginLeft: "auto",
|
||||
marginRight: "10px",
|
||||
}}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { Button, Modal } from "react-bootstrap";
|
||||
import { primary, secondary } from "../../../colors";
|
||||
import { primary, primaryRGBA, secondary } from "../../../colors";
|
||||
import { ModalHeader } from "./ModalHeader";
|
||||
import { ImBin } from "react-icons/im";
|
||||
import { useMutation } from "@tanstack/react-query";
|
||||
|
@ -24,7 +24,12 @@ export const DeleteBookModal = ({
|
|||
});
|
||||
|
||||
return (
|
||||
<Modal show={open} onHide={onClose} centered>
|
||||
<Modal
|
||||
show={open}
|
||||
onHide={onClose}
|
||||
style={{ backgroundColor: primaryRGBA }}
|
||||
centered
|
||||
>
|
||||
<ModalHeader
|
||||
onClose={onClose}
|
||||
title={"Move to Shelf"}
|
||||
|
@ -32,13 +37,18 @@ export const DeleteBookModal = ({
|
|||
/>
|
||||
<Modal.Body
|
||||
style={{
|
||||
border: "2px solid black",
|
||||
borderTop: "none",
|
||||
backgroundColor: primary,
|
||||
}}
|
||||
>
|
||||
<div className='d-flex mx-auto mb-auto mt-2 w-100'>
|
||||
<Button
|
||||
style={{
|
||||
borderRadius: "5px",
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
marginLeft: "auto",
|
||||
marginRight: "10px",
|
||||
}}
|
||||
|
@ -49,6 +59,9 @@ export const DeleteBookModal = ({
|
|||
<Button
|
||||
style={{
|
||||
borderRadius: "5px",
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
marginLeft: "auto",
|
||||
marginRight: "10px",
|
||||
}}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import React from "react";
|
||||
import { Button, Modal } from "react-bootstrap";
|
||||
import { AiOutlineClose } from "react-icons/ai";
|
||||
import { primary, secondary } from "../../../colors";
|
||||
|
||||
export const ModalHeader = ({
|
||||
title,
|
||||
|
@ -12,7 +13,13 @@ export const ModalHeader = ({
|
|||
icon?: JSX.Element;
|
||||
}): React.JSX.Element => {
|
||||
return (
|
||||
<Modal.Header>
|
||||
<Modal.Header
|
||||
style={{
|
||||
border: "2px solid black",
|
||||
borderBottom: "none",
|
||||
backgroundColor: primary,
|
||||
}}
|
||||
>
|
||||
<Modal.Title className='w-100 d-flex' style={{ height: "fit-content" }}>
|
||||
{typeof title === "string" ? (
|
||||
<>
|
||||
|
@ -27,6 +34,9 @@ export const ModalHeader = ({
|
|||
<Button
|
||||
className='ml-auto mr-0'
|
||||
style={{
|
||||
backgroundColor: secondary,
|
||||
color: "black",
|
||||
border: "2px solid black",
|
||||
width: "fit-content",
|
||||
height: "fit-content",
|
||||
}}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import React, { useContext } from "react";
|
||||
import React from "react";
|
||||
import { Modal } from "react-bootstrap";
|
||||
import { ImCamera } from "react-icons/im";
|
||||
import { primaryRGBA } from "../../../colors";
|
||||
import { useScanner } from "../../utils/useScanner";
|
||||
import { ModalHeader } from "./ModalHeader";
|
||||
|
||||
|
@ -16,13 +17,18 @@ export const ScannerModal = ({
|
|||
const { scannerError, setScannerRef } = useScanner({ onDetected });
|
||||
|
||||
return (
|
||||
<Modal show={open} onHide={onClose} centered>
|
||||
<Modal
|
||||
show={open}
|
||||
onHide={onClose}
|
||||
style={{ backgroundColor: primaryRGBA }}
|
||||
centered
|
||||
>
|
||||
<ModalHeader
|
||||
onClose={onClose}
|
||||
title={"Scan barcode"}
|
||||
icon={<ImCamera size={50} className='ml-0 mr-auto' />}
|
||||
/>
|
||||
<Modal.Body>
|
||||
<Modal.Body style={{ border: "2px solid black", borderTop: "none" }}>
|
||||
<div
|
||||
className='w-100 overflow-hidden'
|
||||
ref={(ref) => setScannerRef(ref)}
|
||||
|
@ -35,7 +41,7 @@ export const ScannerModal = ({
|
|||
className='drawingBuffer w-100 position-absolute'
|
||||
style={{
|
||||
height: "100%",
|
||||
border: `2px solid black`,
|
||||
border: "2px solid black",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue