Compare commits
7 commits
8cc2662092
...
2016a8619d
Author | SHA1 | Date | |
---|---|---|---|
2016a8619d | |||
04d9b86419 | |||
6940fab53a | |||
6d0a62ec21 | |||
f35c4c473d | |||
af569cbde6 | |||
dfb8ffb94b |
16 changed files with 326 additions and 183 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
.env
|
||||||
|
n39env
|
||||||
|
.vscode
|
55
createMR.py
Normal file
55
createMR.py
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
import os
|
||||||
|
import json
|
||||||
|
import argparse
|
||||||
|
from git import Repo
|
||||||
|
from pyforgejo import AuthenticatedClient
|
||||||
|
from dotenv import load_dotenv
|
||||||
|
from pyforgejo.api.issue import issue_list_issues
|
||||||
|
from pyforgejo.api.repository import repo_create_branch, repo_create_pull_request
|
||||||
|
from pyforgejo.models import CreateBranchRepoOption, CreatePullRequestOption
|
||||||
|
|
||||||
|
load_dotenv()
|
||||||
|
|
||||||
|
parser = argparse.ArgumentParser(description="")
|
||||||
|
parser.add_argument("-i", "--issue")
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
FORJEGO_ACCESS_TOKEN = os.getenv("FORJEGO_ACCESS_TOKEN")
|
||||||
|
OWNER = os.getenv("OWNER")
|
||||||
|
USER = os.getenv("USER")
|
||||||
|
REPO = os.getenv("REPO")
|
||||||
|
|
||||||
|
client = AuthenticatedClient(
|
||||||
|
base_url="https://git.n39.eu/api/v1/", token=FORJEGO_ACCESS_TOKEN
|
||||||
|
)
|
||||||
|
|
||||||
|
issues = json.loads(issue_list_issues.sync_detailed(OWNER, REPO, client=client).content)
|
||||||
|
|
||||||
|
|
||||||
|
def filterIssues(issue):
|
||||||
|
return args.issue in issue["title"]
|
||||||
|
|
||||||
|
|
||||||
|
issues = list(filter(filterIssues, issues))
|
||||||
|
|
||||||
|
branchName = issues[0]["title"].replace(" ", "-")
|
||||||
|
|
||||||
|
if len(issues) > 1:
|
||||||
|
raise ValueError("found more than one ticket")
|
||||||
|
if len(issues) == 0:
|
||||||
|
raise ValueError("found more than one ticket")
|
||||||
|
else:
|
||||||
|
repo_create_branch.sync_detailed(
|
||||||
|
OWNER, REPO, body=CreateBranchRepoOption(branchName, "main"), client=client
|
||||||
|
)
|
||||||
|
res = json.loads(
|
||||||
|
repo_create_pull_request.sync_detailed(
|
||||||
|
OWNER,
|
||||||
|
REPO,
|
||||||
|
body=CreatePullRequestOption(
|
||||||
|
base="main", head=branchName, title="merge-" + branchName
|
||||||
|
),
|
||||||
|
client=client,
|
||||||
|
).content
|
||||||
|
)
|
||||||
|
print(res)
|
1
frontend/.gitignore
vendored
Normal file
1
frontend/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
node_modules
|
|
@ -6,7 +6,7 @@ import "./App.css";
|
||||||
import { Main } from "./pages";
|
import { Main } from "./pages";
|
||||||
import { Library } from "./pages/Library";
|
import { Library } from "./pages/Library";
|
||||||
import { Book } from "./pages/Book";
|
import { Book } from "./pages/Book";
|
||||||
import { primary } from "./colors";
|
import * as colors from "./colors";
|
||||||
import { ActiveModalProps } from "./shared/components/modals/types";
|
import { ActiveModalProps } from "./shared/components/modals/types";
|
||||||
|
|
||||||
export const AuthContext = createContext<{
|
export const AuthContext = createContext<{
|
||||||
|
@ -50,7 +50,6 @@ function App() {
|
||||||
style={{
|
style={{
|
||||||
height: "100vh",
|
height: "100vh",
|
||||||
width: "100vw",
|
width: "100vw",
|
||||||
backgroundColor: primary,
|
|
||||||
fontFamily: "New Amsterdam",
|
fontFamily: "New Amsterdam",
|
||||||
overflow: "scroll",
|
overflow: "scroll",
|
||||||
}}
|
}}
|
||||||
|
|
5
frontend/src/darkmodeColors.ts
Normal file
5
frontend/src/darkmodeColors.ts
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
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,49 +12,208 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#bootstrap-overrides .form-select .form-control {
|
#bootstrap-overrides {
|
||||||
background-color: #f2f2e8 !important;
|
background-color: #f2f3f4;
|
||||||
border-color: #f2f2e8 !important;
|
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 {
|
||||||
|
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: #f2f2e8 !important;
|
||||||
|
color: #5e6268 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
letter-spacing: 0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-primary {
|
||||||
|
background-color: #f2f3f4 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content {
|
||||||
|
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 {
|
||||||
|
background-color: #f9a9ab !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-link {
|
||||||
|
color: #5e6268 !important;
|
||||||
|
border: 2px solid #5e6268 !important;
|
||||||
|
background-color: transparent !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.active > .page-link {
|
||||||
|
background-color: #5e6268 !important;
|
||||||
|
color: #f2f3f4 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pagination {
|
||||||
|
margin-top: 10px !important;
|
||||||
|
|
||||||
|
li {
|
||||||
|
min-width: 40px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#bootstrap-overrides .dropdown-toggle::after {
|
@media (prefers-color-scheme: dark) {
|
||||||
display: none;
|
#bootstrap-overrides {
|
||||||
}
|
background-color: #5e6268;
|
||||||
|
color: #f2f3f4;
|
||||||
|
|
||||||
#bootstrap-overrides .form-label {
|
.btn-primary {
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
background-color: #f2f3f4;
|
||||||
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
color: #5e6268;
|
||||||
sans-serif !important;
|
border: 2px solid #5e6268;
|
||||||
-webkit-font-smoothing: antialiased;
|
}
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
letter-spacing: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
#bootstrap-overrides table {
|
.form-control {
|
||||||
letter-spacing: 0.25em;
|
background-color: #f2f2e8 !important;
|
||||||
}
|
border-color: #5e6268 !important;
|
||||||
|
border-right: none;
|
||||||
|
}
|
||||||
|
|
||||||
#bootstrap-overrides .bg-primary {
|
.form-select .form-control {
|
||||||
background-color: #f2f3f4 !important;
|
background-color: #f2f2e8 !important;
|
||||||
}
|
border-color: #f2f2e8 !important;
|
||||||
|
}
|
||||||
|
|
||||||
#bootstrap-overrides .modal-body {
|
.dropdown-toggle::after {
|
||||||
background-color: #f2f3f4 !important;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#bootstrap-overrides .danger {
|
.form-label {
|
||||||
background-color: #f9a9ab !important;
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
#bootstrap-overrides .page-link {
|
.table > :not(caption) > * > * {
|
||||||
color: black !important;
|
background-color: #5e6268 !important;
|
||||||
border: 2px solid black !important;
|
color: #f2f2e8 !important;
|
||||||
background-color: transparent !important;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#bootstrap-overrides .active > .page-link {
|
table {
|
||||||
background-color: black !important;
|
letter-spacing: 0.25em;
|
||||||
color: #f2f3f4 !important;
|
}
|
||||||
|
|
||||||
|
.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 {
|
code {
|
||||||
|
|
|
@ -2,7 +2,8 @@ import { Badge, Dropdown } from "react-bootstrap";
|
||||||
import { Book } from "../../../types/Book";
|
import { Book } from "../../../types/Book";
|
||||||
import { ImBin, ImBook, ImBoxAdd, ImBoxRemove, ImMenu } from "react-icons/im";
|
import { ImBin, ImBook, ImBoxAdd, ImBoxRemove, ImMenu } from "react-icons/im";
|
||||||
import { useMutation } from "@tanstack/react-query";
|
import { useMutation } from "@tanstack/react-query";
|
||||||
import { secondary } from "../../../colors";
|
import * as colors from "../../../colors";
|
||||||
|
import * as dark from "../../../darkmodeColors";
|
||||||
import { ModalContextType } from "../../../App";
|
import { ModalContextType } from "../../../App";
|
||||||
import { modalTypes } from "../../../shared/components/modals/types";
|
import { modalTypes } from "../../../shared/components/modals/types";
|
||||||
import { useCallback } from "react";
|
import { useCallback } from "react";
|
||||||
|
@ -44,11 +45,7 @@ export const Actions = ({
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Dropdown>
|
<Dropdown>
|
||||||
<Dropdown.Toggle
|
<Dropdown.Toggle variant='success' id='dropdown-basic'>
|
||||||
variant='success'
|
|
||||||
id='dropdown-basic'
|
|
||||||
style={{ backgroundColor: secondary, border: "2px solid black" }}
|
|
||||||
>
|
|
||||||
<ImMenu size={25} color='black' />
|
<ImMenu size={25} color='black' />
|
||||||
</Dropdown.Toggle>
|
</Dropdown.Toggle>
|
||||||
|
|
||||||
|
@ -59,14 +56,7 @@ export const Actions = ({
|
||||||
className='d-flex'
|
className='d-flex'
|
||||||
onClick={() => setActiveModal({ type: bookModal, book, onClose })}
|
onClick={() => setActiveModal({ type: bookModal, book, onClose })}
|
||||||
>
|
>
|
||||||
<Badge
|
<Badge pill className='ml-2 d-flex mr-2'>
|
||||||
pill
|
|
||||||
className='ml-2 d-flex mr-2'
|
|
||||||
style={{
|
|
||||||
border: "2px solid black",
|
|
||||||
backgroundColor: "transparent",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<ImBook size={25} color='black' className='m-auto' />
|
<ImBook size={25} color='black' className='m-auto' />
|
||||||
</Badge>
|
</Badge>
|
||||||
<p className='m-auto' style={{ paddingLeft: "10px" }}>
|
<p className='m-auto' style={{ paddingLeft: "10px" }}>
|
||||||
|
@ -87,13 +77,7 @@ export const Actions = ({
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Badge
|
<Badge pill className='ml-2 d-flex mr-2'>
|
||||||
pill
|
|
||||||
className='ml-2 d-flex mr-2'
|
|
||||||
style={{
|
|
||||||
border: "2px solid black",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<ImBoxRemove size={25} color='black' className='m-auto' />
|
<ImBoxRemove size={25} color='black' className='m-auto' />
|
||||||
</Badge>{" "}
|
</Badge>{" "}
|
||||||
<p className='m-auto' style={{ paddingLeft: "10px" }}>
|
<p className='m-auto' style={{ paddingLeft: "10px" }}>
|
||||||
|
@ -130,13 +114,7 @@ export const Actions = ({
|
||||||
setActiveModal({ type: del, uuid: book.uuid, onClose })
|
setActiveModal({ type: del, uuid: book.uuid, onClose })
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Badge
|
<Badge pill className='ml-2 d-flex danger mr-2'>
|
||||||
pill
|
|
||||||
className='ml-2 d-flex danger mr-2'
|
|
||||||
style={{
|
|
||||||
border: "2px solid black",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<ImBin size={25} color='black' className='m-auto' />
|
<ImBin size={25} color='black' className='m-auto' />
|
||||||
</Badge>{" "}
|
</Badge>{" "}
|
||||||
<p className='m-auto' style={{ paddingLeft: "10px" }}>
|
<p className='m-auto' style={{ paddingLeft: "10px" }}>
|
||||||
|
|
|
@ -13,7 +13,6 @@ import { TfiKey } from "react-icons/tfi";
|
||||||
|
|
||||||
import { Link, useNavigate } from "react-router-dom";
|
import { Link, useNavigate } from "react-router-dom";
|
||||||
import { Book } from "../../types/Book";
|
import { Book } from "../../types/Book";
|
||||||
import { secondary } from "../../colors";
|
|
||||||
import { useAuth } from "../../shared/utils/useAuthentication";
|
import { useAuth } from "../../shared/utils/useAuthentication";
|
||||||
import { ModalContext } from "../../App";
|
import { ModalContext } from "../../App";
|
||||||
import { modalTypes } from "../../shared/components/modals/types";
|
import { modalTypes } from "../../shared/components/modals/types";
|
||||||
|
@ -95,16 +94,12 @@ export const Main = (): React.JSX.Element => {
|
||||||
onChange={(ev) => setTitle(ev.target.value)}
|
onChange={(ev) => setTitle(ev.target.value)}
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "20px 0px 0px 20px",
|
borderRadius: "20px 0px 0px 20px",
|
||||||
border: "2px solid black",
|
|
||||||
borderRight: "none",
|
borderRight: "none",
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "0px 5px 5px 0px",
|
borderRadius: "0px 5px 5px 0px",
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
}}
|
}}
|
||||||
className='mr-2'
|
className='mr-2'
|
||||||
disabled={activeModal?.type === scanner || isFetching}
|
disabled={activeModal?.type === scanner || isFetching}
|
||||||
|
@ -135,9 +130,6 @@ export const Main = (): React.JSX.Element => {
|
||||||
<Button
|
<Button
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "5px",
|
borderRadius: "5px",
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
marginLeft: "auto",
|
marginLeft: "auto",
|
||||||
marginRight: "10px",
|
marginRight: "10px",
|
||||||
}}
|
}}
|
||||||
|
@ -151,9 +143,6 @@ export const Main = (): React.JSX.Element => {
|
||||||
<Button
|
<Button
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "5px",
|
borderRadius: "5px",
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
marginLeft: "auto",
|
marginLeft: "auto",
|
||||||
marginRight: "10px",
|
marginRight: "10px",
|
||||||
}}
|
}}
|
||||||
|
@ -174,9 +163,6 @@ export const Main = (): React.JSX.Element => {
|
||||||
<Button
|
<Button
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "5px",
|
borderRadius: "5px",
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<ImBooks /> Browse library{" "}
|
<ImBooks /> Browse library{" "}
|
||||||
|
@ -186,9 +172,6 @@ export const Main = (): React.JSX.Element => {
|
||||||
<Button
|
<Button
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "5px",
|
borderRadius: "5px",
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
marginRight: "auto",
|
marginRight: "auto",
|
||||||
marginLeft: "10px",
|
marginLeft: "10px",
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -2,7 +2,6 @@ import { useCallback, useContext } from "react";
|
||||||
import { Button, Col, Form, Modal, Row } from "react-bootstrap";
|
import { Button, Col, Form, Modal, Row } from "react-bootstrap";
|
||||||
import { useForm, useWatch } from "react-hook-form";
|
import { useForm, useWatch } from "react-hook-form";
|
||||||
import { TfiKey } from "react-icons/tfi";
|
import { TfiKey } from "react-icons/tfi";
|
||||||
import { primaryRGBA, primary, secondary } from "../../../colors";
|
|
||||||
import { ModalHeader } from "./ModalHeader";
|
import { ModalHeader } from "./ModalHeader";
|
||||||
import { AuthContext } from "../../../App";
|
import { AuthContext } from "../../../App";
|
||||||
import { AuthModalProps } from "./types";
|
import { AuthModalProps } from "./types";
|
||||||
|
@ -71,12 +70,7 @@ export const AuthenticationModal = ({
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal show={open} onHide={onClose} centered>
|
||||||
show={open}
|
|
||||||
onHide={onClose}
|
|
||||||
style={{ backgroundColor: primaryRGBA }}
|
|
||||||
centered
|
|
||||||
>
|
|
||||||
<ModalHeader
|
<ModalHeader
|
||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
title={isUpdate ? "Set new Admin key" : "Admin Login"}
|
title={isUpdate ? "Set new Admin key" : "Admin Login"}
|
||||||
|
@ -84,9 +78,7 @@ export const AuthenticationModal = ({
|
||||||
/>
|
/>
|
||||||
<Modal.Body
|
<Modal.Body
|
||||||
style={{
|
style={{
|
||||||
border: "2px solid black",
|
|
||||||
borderTop: "none",
|
borderTop: "none",
|
||||||
backgroundColor: primary,
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Form
|
<Form
|
||||||
|
@ -141,9 +133,6 @@ export const AuthenticationModal = ({
|
||||||
|
|
||||||
{!isUpdate && (
|
{!isUpdate && (
|
||||||
<Form.Group as={Row} className='mb-2'>
|
<Form.Group as={Row} className='mb-2'>
|
||||||
<Col sm='4'>
|
|
||||||
<Form.Label>Password</Form.Label>
|
|
||||||
</Col>
|
|
||||||
<Col>
|
<Col>
|
||||||
<Form.Control
|
<Form.Control
|
||||||
{...register("password", {
|
{...register("password", {
|
||||||
|
@ -166,9 +155,6 @@ export const AuthenticationModal = ({
|
||||||
<Button
|
<Button
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "5px",
|
borderRadius: "5px",
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
marginLeft: "auto",
|
marginLeft: "auto",
|
||||||
marginRight: "10px",
|
marginRight: "10px",
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -5,7 +5,6 @@ import { ModalHeader } from "./ModalHeader";
|
||||||
import { useForm, useWatch } from "react-hook-form";
|
import { useForm, useWatch } from "react-hook-form";
|
||||||
import { Book, bookShelfs } from "../../../types/Book";
|
import { Book, bookShelfs } from "../../../types/Book";
|
||||||
import { useScanner } from "../../utils/useScanner";
|
import { useScanner } from "../../utils/useScanner";
|
||||||
import { primary, primaryRGBA, secondary } from "../../../colors";
|
|
||||||
import { BookModalProps } from "./types";
|
import { BookModalProps } from "./types";
|
||||||
|
|
||||||
type BookForm = Pick<Book, "isbn" | "title" | "shelf" | "published">;
|
type BookForm = Pick<Book, "isbn" | "title" | "shelf" | "published">;
|
||||||
|
@ -29,7 +28,20 @@ export const BookModal = ({
|
||||||
}, [book, reset]);
|
}, [book, reset]);
|
||||||
|
|
||||||
const { scannerError, setScannerRef } = useScanner({
|
const { scannerError, setScannerRef } = useScanner({
|
||||||
onDetected: (result) => {
|
onDetected: async (result) => {
|
||||||
|
const googleBooks = await (
|
||||||
|
await fetch(
|
||||||
|
"https://www.googleapis.com/books/v1/volumes?q=isbn:" + result
|
||||||
|
)
|
||||||
|
).json();
|
||||||
|
if ("items" in googleBooks) {
|
||||||
|
console.log(googleBooks);
|
||||||
|
setValue(
|
||||||
|
"published",
|
||||||
|
googleBooks.items[0].volumeInfo.publishedDate.substring(0, 4)
|
||||||
|
);
|
||||||
|
setValue("title", googleBooks.items[0].volumeInfo.title);
|
||||||
|
}
|
||||||
setValue("isbn", result);
|
setValue("isbn", result);
|
||||||
setShowScanner(false);
|
setShowScanner(false);
|
||||||
},
|
},
|
||||||
|
@ -38,6 +50,7 @@ export const BookModal = ({
|
||||||
const values = useWatch({ control });
|
const values = useWatch({ control });
|
||||||
|
|
||||||
const [submitError, setSubmitError] = useState<string | undefined>();
|
const [submitError, setSubmitError] = useState<string | undefined>();
|
||||||
|
|
||||||
const onSubmit = useCallback(
|
const onSubmit = useCallback(
|
||||||
async (data: Partial<BookForm>) => {
|
async (data: Partial<BookForm>) => {
|
||||||
setSubmitError(undefined);
|
setSubmitError(undefined);
|
||||||
|
@ -80,38 +93,31 @@ export const BookModal = ({
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal show={open} onHide={onClose} centered>
|
||||||
show={open}
|
|
||||||
onHide={onClose}
|
|
||||||
style={{ backgroundColor: primaryRGBA }}
|
|
||||||
centered
|
|
||||||
>
|
|
||||||
<ModalHeader
|
<ModalHeader
|
||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
title={`${!!book ? "Edit" : "Add new"} Book`}
|
title={`${!!book ? "Edit" : "Add new"} Book`}
|
||||||
icon={<ImBook size={50} className="ml-0 mr-auto" />}
|
icon={<ImBook size={50} className='ml-0 mr-auto' />}
|
||||||
/>
|
/>
|
||||||
<Modal.Body
|
<Modal.Body
|
||||||
style={{
|
style={{
|
||||||
border: "2px solid black",
|
|
||||||
borderTop: "none",
|
borderTop: "none",
|
||||||
backgroundColor: primary,
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{!showScanner && (
|
{!showScanner && (
|
||||||
<Form
|
<Form
|
||||||
className="mb-2"
|
className='mb-2'
|
||||||
onSubmit={(ev) => {
|
onSubmit={(ev) => {
|
||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
onSubmit(values);
|
onSubmit(values);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Form.Group as={Row} className="mb-2">
|
<Form.Group as={Row} className='mb-2'>
|
||||||
<Col sm="2">
|
<Col sm='2'>
|
||||||
<Form.Label>ISBN</Form.Label>
|
<Form.Label>ISBN</Form.Label>
|
||||||
</Col>
|
</Col>
|
||||||
<Col className="d-flex flex-column">
|
<Col className='d-flex flex-column'>
|
||||||
<div className="d-flex">
|
<div className='d-flex'>
|
||||||
<Form.Control
|
<Form.Control
|
||||||
{...register("isbn", { required: true, maxLength: 360 })}
|
{...register("isbn", { required: true, maxLength: 360 })}
|
||||||
isInvalid={!!formState.errors.isbn}
|
isInvalid={!!formState.errors.isbn}
|
||||||
|
@ -122,11 +128,8 @@ export const BookModal = ({
|
||||||
<Button
|
<Button
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "0px 5px 5px 0px",
|
borderRadius: "0px 5px 5px 0px",
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
}}
|
}}
|
||||||
className="mr-2 pt-0"
|
className='mr-2 pt-0'
|
||||||
disabled={showScanner}
|
disabled={showScanner}
|
||||||
onClick={() => setShowScanner(true)}
|
onClick={() => setShowScanner(true)}
|
||||||
>
|
>
|
||||||
|
@ -135,7 +138,7 @@ export const BookModal = ({
|
||||||
</div>
|
</div>
|
||||||
<Form.Control.Feedback
|
<Form.Control.Feedback
|
||||||
style={{ display: !formState.errors.isbn ? "none" : "block" }}
|
style={{ display: !formState.errors.isbn ? "none" : "block" }}
|
||||||
type="invalid"
|
type='invalid'
|
||||||
>
|
>
|
||||||
{!formState.errors.isbn
|
{!formState.errors.isbn
|
||||||
? "ISBN is required"
|
? "ISBN is required"
|
||||||
|
@ -143,8 +146,8 @@ export const BookModal = ({
|
||||||
</Form.Control.Feedback>
|
</Form.Control.Feedback>
|
||||||
</Col>
|
</Col>
|
||||||
</Form.Group>
|
</Form.Group>
|
||||||
<Form.Group as={Row} className="mb-2">
|
<Form.Group as={Row} className='mb-2'>
|
||||||
<Col sm="2">
|
<Col sm='2'>
|
||||||
<Form.Label>Title</Form.Label>
|
<Form.Label>Title</Form.Label>
|
||||||
</Col>
|
</Col>
|
||||||
<Col>
|
<Col>
|
||||||
|
@ -153,15 +156,15 @@ export const BookModal = ({
|
||||||
isInvalid={!!formState.errors.title}
|
isInvalid={!!formState.errors.title}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Form.Control.Feedback type="invalid">
|
<Form.Control.Feedback type='invalid'>
|
||||||
{!values.title
|
{!values.title
|
||||||
? "Title is required"
|
? "Title is required"
|
||||||
: formState.errors.title?.message}
|
: formState.errors.title?.message}
|
||||||
</Form.Control.Feedback>
|
</Form.Control.Feedback>
|
||||||
</Col>
|
</Col>
|
||||||
</Form.Group>
|
</Form.Group>
|
||||||
<Form.Group as={Row} className="mb-2">
|
<Form.Group as={Row} className='mb-2'>
|
||||||
<Col sm="2">
|
<Col sm='2'>
|
||||||
<Form.Label>Year published</Form.Label>
|
<Form.Label>Year published</Form.Label>
|
||||||
</Col>
|
</Col>
|
||||||
<Col>
|
<Col>
|
||||||
|
@ -187,15 +190,15 @@ export const BookModal = ({
|
||||||
isInvalid={!!formState.errors.published}
|
isInvalid={!!formState.errors.published}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Form.Control.Feedback type="invalid">
|
<Form.Control.Feedback type='invalid'>
|
||||||
{!values.published
|
{!values.published
|
||||||
? "Year published is required"
|
? "Year published is required"
|
||||||
: formState.errors.published?.message}
|
: formState.errors.published?.message}
|
||||||
</Form.Control.Feedback>
|
</Form.Control.Feedback>
|
||||||
</Col>
|
</Col>
|
||||||
</Form.Group>
|
</Form.Group>
|
||||||
<Form.Group as={Row} className="mb-2">
|
<Form.Group as={Row} className='mb-2'>
|
||||||
<Col sm="2">
|
<Col sm='2'>
|
||||||
<Form.Label>Shelf</Form.Label>
|
<Form.Label>Shelf</Form.Label>
|
||||||
</Col>
|
</Col>
|
||||||
<Col>
|
<Col>
|
||||||
|
@ -205,27 +208,24 @@ export const BookModal = ({
|
||||||
>
|
>
|
||||||
{Object.keys(bookShelfs).map((key) => (
|
{Object.keys(bookShelfs).map((key) => (
|
||||||
<option
|
<option
|
||||||
key="key"
|
key='key'
|
||||||
value={bookShelfs[key as keyof typeof bookShelfs]}
|
value={bookShelfs[key as keyof typeof bookShelfs]}
|
||||||
>
|
>
|
||||||
{key}
|
{key}
|
||||||
</option>
|
</option>
|
||||||
))}
|
))}
|
||||||
</Form.Select>
|
</Form.Select>
|
||||||
<Form.Control.Feedback type="invalid">
|
<Form.Control.Feedback type='invalid'>
|
||||||
{!values.shelf
|
{!values.shelf
|
||||||
? "Shelf is required"
|
? "Shelf is required"
|
||||||
: formState.errors.shelf?.message}
|
: formState.errors.shelf?.message}
|
||||||
</Form.Control.Feedback>
|
</Form.Control.Feedback>
|
||||||
</Col>
|
</Col>
|
||||||
</Form.Group>
|
</Form.Group>
|
||||||
<div className="d-flex mx-auto mb-auto mt-2 w-100">
|
<div className='d-flex mx-auto mb-auto mt-2 w-100'>
|
||||||
<Button
|
<Button
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "5px",
|
borderRadius: "5px",
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
marginLeft: "auto",
|
marginLeft: "auto",
|
||||||
marginRight: "10px",
|
marginRight: "10px",
|
||||||
}}
|
}}
|
||||||
|
@ -238,15 +238,14 @@ export const BookModal = ({
|
||||||
)}
|
)}
|
||||||
{showScanner && (
|
{showScanner && (
|
||||||
<div
|
<div
|
||||||
className="w-100 overflow-hidden"
|
className='w-100 overflow-hidden'
|
||||||
ref={(ref) => setScannerRef(ref)}
|
ref={(ref) => setScannerRef(ref)}
|
||||||
style={{ position: "relative", height: "25vh" }}
|
style={{ position: "relative", height: "25vh" }}
|
||||||
>
|
>
|
||||||
<canvas
|
<canvas
|
||||||
className="drawingBuffer w-100 position-absolute"
|
className='drawingBuffer w-100 position-absolute'
|
||||||
style={{
|
style={{
|
||||||
height: "100%",
|
height: "100%",
|
||||||
border: "2px solid black",
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -258,7 +257,7 @@ export const BookModal = ({
|
||||||
</p>
|
</p>
|
||||||
) : null}
|
) : null}
|
||||||
{!!submitError && (
|
{!!submitError && (
|
||||||
<Form.Control.Feedback style={{ display: "block" }} type="invalid">
|
<Form.Control.Feedback style={{ display: "block" }} type='invalid'>
|
||||||
{submitError}
|
{submitError}
|
||||||
</Form.Control.Feedback>
|
</Form.Control.Feedback>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { Alert, Button, Col, Form, Modal, Row } from "react-bootstrap";
|
||||||
import { ImBoxAdd, ImBoxRemove } from "react-icons/im";
|
import { ImBoxAdd, ImBoxRemove } from "react-icons/im";
|
||||||
import { useForm, useWatch } from "react-hook-form";
|
import { useForm, useWatch } from "react-hook-form";
|
||||||
import { Book } from "../../../types/Book";
|
import { Book } from "../../../types/Book";
|
||||||
import { primary, primaryRGBA, secondary } from "../../../colors";
|
import { primary, secondary } from "../../../colors";
|
||||||
import { ModalHeader } from "./ModalHeader";
|
import { ModalHeader } from "./ModalHeader";
|
||||||
import { CheckoutBookModalProps } from "./types";
|
import { CheckoutBookModalProps } from "./types";
|
||||||
import { AiOutlineExclamationCircle } from "react-icons/ai";
|
import { AiOutlineExclamationCircle } from "react-icons/ai";
|
||||||
|
@ -30,6 +30,9 @@ export const CheckoutBookModal = ({
|
||||||
|
|
||||||
const onSubmit = useCallback(
|
const onSubmit = useCallback(
|
||||||
async (data: Partial<BookCheckoutForm>) => {
|
async (data: Partial<BookCheckoutForm>) => {
|
||||||
|
if (!formState.isValid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (!data.checkoutBy) {
|
if (!data.checkoutBy) {
|
||||||
setError("checkoutBy", {
|
setError("checkoutBy", {
|
||||||
message: `please enter ${
|
message: `please enter ${
|
||||||
|
@ -61,16 +64,11 @@ export const CheckoutBookModal = ({
|
||||||
setFailed(await res.text());
|
setFailed(await res.text());
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[uuid, onClose, setError, isChechout]
|
[formState.isValid, isChechout, uuid, setError, onClose]
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal show={open} onHide={onClose} centered>
|
||||||
show={open}
|
|
||||||
onHide={onClose}
|
|
||||||
style={{ backgroundColor: primaryRGBA }}
|
|
||||||
centered
|
|
||||||
>
|
|
||||||
<ModalHeader
|
<ModalHeader
|
||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
title={`${isChechout ? "Checkout" : "Return"} book '${title}'`}
|
title={`${isChechout ? "Checkout" : "Return"} book '${title}'`}
|
||||||
|
@ -84,9 +82,7 @@ export const CheckoutBookModal = ({
|
||||||
/>
|
/>
|
||||||
<Modal.Body
|
<Modal.Body
|
||||||
style={{
|
style={{
|
||||||
border: "2px solid black",
|
|
||||||
borderTop: "none",
|
borderTop: "none",
|
||||||
backgroundColor: primary,
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Alert className='w-80 m-auto my-4' variant='warning'>
|
<Alert className='w-80 m-auto my-4' variant='warning'>
|
||||||
|
@ -116,6 +112,12 @@ export const CheckoutBookModal = ({
|
||||||
"'null' is not a valid nickname"
|
"'null' is not a valid nickname"
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
notUndefinedString: (value) => {
|
||||||
|
return (
|
||||||
|
value?.toLocaleLowerCase() !== "undefined" ||
|
||||||
|
"'undefined' is not a valid nickname"
|
||||||
|
);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
})}
|
})}
|
||||||
isInvalid={!!formState.errors.checkoutBy}
|
isInvalid={!!formState.errors.checkoutBy}
|
||||||
|
@ -178,12 +180,10 @@ export const CheckoutBookModal = ({
|
||||||
<Button
|
<Button
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "5px",
|
borderRadius: "5px",
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
marginLeft: "auto",
|
marginLeft: "auto",
|
||||||
marginRight: "10px",
|
marginRight: "10px",
|
||||||
}}
|
}}
|
||||||
|
disabled={!formState.isValid}
|
||||||
onClick={() => onSubmit(values)}
|
onClick={() => onSubmit(values)}
|
||||||
>
|
>
|
||||||
{`${isChechout ? "Checkout" : "Return"} book`}
|
{`${isChechout ? "Checkout" : "Return"} book`}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Button, Modal } from "react-bootstrap";
|
import { Button, Modal } from "react-bootstrap";
|
||||||
import { primary, primaryRGBA, secondary } from "../../../colors";
|
import { primary, secondary } from "../../../colors";
|
||||||
import { ModalHeader } from "./ModalHeader";
|
import { ModalHeader } from "./ModalHeader";
|
||||||
import { ImBin } from "react-icons/im";
|
import { ImBin } from "react-icons/im";
|
||||||
import { useMutation } from "@tanstack/react-query";
|
import { useMutation } from "@tanstack/react-query";
|
||||||
|
@ -24,12 +24,7 @@ export const DeleteBookModal = ({
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal show={open} onHide={onClose} centered>
|
||||||
show={open}
|
|
||||||
onHide={onClose}
|
|
||||||
style={{ backgroundColor: primaryRGBA }}
|
|
||||||
centered
|
|
||||||
>
|
|
||||||
<ModalHeader
|
<ModalHeader
|
||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
title={"Move to Shelf"}
|
title={"Move to Shelf"}
|
||||||
|
@ -37,18 +32,13 @@ export const DeleteBookModal = ({
|
||||||
/>
|
/>
|
||||||
<Modal.Body
|
<Modal.Body
|
||||||
style={{
|
style={{
|
||||||
border: "2px solid black",
|
|
||||||
borderTop: "none",
|
borderTop: "none",
|
||||||
backgroundColor: primary,
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div className='d-flex mx-auto mb-auto mt-2 w-100'>
|
<div className='d-flex mx-auto mb-auto mt-2 w-100'>
|
||||||
<Button
|
<Button
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "5px",
|
borderRadius: "5px",
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
marginLeft: "auto",
|
marginLeft: "auto",
|
||||||
marginRight: "10px",
|
marginRight: "10px",
|
||||||
}}
|
}}
|
||||||
|
@ -59,9 +49,6 @@ export const DeleteBookModal = ({
|
||||||
<Button
|
<Button
|
||||||
style={{
|
style={{
|
||||||
borderRadius: "5px",
|
borderRadius: "5px",
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
marginLeft: "auto",
|
marginLeft: "auto",
|
||||||
marginRight: "10px",
|
marginRight: "10px",
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -13,13 +13,7 @@ export const ModalHeader = ({
|
||||||
icon?: JSX.Element;
|
icon?: JSX.Element;
|
||||||
}): React.JSX.Element => {
|
}): React.JSX.Element => {
|
||||||
return (
|
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" }}>
|
<Modal.Title className='w-100 d-flex' style={{ height: "fit-content" }}>
|
||||||
{typeof title === "string" ? (
|
{typeof title === "string" ? (
|
||||||
<>
|
<>
|
||||||
|
@ -34,9 +28,6 @@ export const ModalHeader = ({
|
||||||
<Button
|
<Button
|
||||||
className='ml-auto mr-0'
|
className='ml-auto mr-0'
|
||||||
style={{
|
style={{
|
||||||
backgroundColor: secondary,
|
|
||||||
color: "black",
|
|
||||||
border: "2px solid black",
|
|
||||||
width: "fit-content",
|
width: "fit-content",
|
||||||
height: "fit-content",
|
height: "fit-content",
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
import React from "react";
|
import React, { useContext } from "react";
|
||||||
import { Modal } from "react-bootstrap";
|
import { Modal } from "react-bootstrap";
|
||||||
import { ImCamera } from "react-icons/im";
|
import { ImCamera } from "react-icons/im";
|
||||||
import { primaryRGBA } from "../../../colors";
|
|
||||||
import { useScanner } from "../../utils/useScanner";
|
import { useScanner } from "../../utils/useScanner";
|
||||||
import { ModalHeader } from "./ModalHeader";
|
import { ModalHeader } from "./ModalHeader";
|
||||||
|
|
||||||
|
@ -17,18 +16,13 @@ export const ScannerModal = ({
|
||||||
const { scannerError, setScannerRef } = useScanner({ onDetected });
|
const { scannerError, setScannerRef } = useScanner({ onDetected });
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal show={open} onHide={onClose} centered>
|
||||||
show={open}
|
|
||||||
onHide={onClose}
|
|
||||||
style={{ backgroundColor: primaryRGBA }}
|
|
||||||
centered
|
|
||||||
>
|
|
||||||
<ModalHeader
|
<ModalHeader
|
||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
title={"Scan barcode"}
|
title={"Scan barcode"}
|
||||||
icon={<ImCamera size={50} className='ml-0 mr-auto' />}
|
icon={<ImCamera size={50} className='ml-0 mr-auto' />}
|
||||||
/>
|
/>
|
||||||
<Modal.Body style={{ border: "2px solid black", borderTop: "none" }}>
|
<Modal.Body>
|
||||||
<div
|
<div
|
||||||
className='w-100 overflow-hidden'
|
className='w-100 overflow-hidden'
|
||||||
ref={(ref) => setScannerRef(ref)}
|
ref={(ref) => setScannerRef(ref)}
|
||||||
|
@ -41,7 +35,7 @@ export const ScannerModal = ({
|
||||||
className='drawingBuffer w-100 position-absolute'
|
className='drawingBuffer w-100 position-absolute'
|
||||||
style={{
|
style={{
|
||||||
height: "100%",
|
height: "100%",
|
||||||
border: "2px solid black",
|
border: `2px solid black`,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
1
issues
Normal file
1
issues
Normal file
File diff suppressed because one or more lines are too long
2
middleware/.gitignore
vendored
Normal file
2
middleware/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
dist
|
||||||
|
node_modules
|
Loading…
Reference in a new issue