mirror of
https://github.com/ANL-CEEESA/UnitCommitment.jl.git
synced 2025-12-06 08:18:51 -06:00
web: Initial version
This commit is contained in:
23
web/.gitignore
vendored
Normal file
23
web/.gitignore
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
/node_modules
|
||||||
|
/.pnp
|
||||||
|
.pnp.js
|
||||||
|
|
||||||
|
# testing
|
||||||
|
/coverage
|
||||||
|
|
||||||
|
# production
|
||||||
|
/build
|
||||||
|
|
||||||
|
# misc
|
||||||
|
.DS_Store
|
||||||
|
.env.local
|
||||||
|
.env.development.local
|
||||||
|
.env.test.local
|
||||||
|
.env.production.local
|
||||||
|
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
17616
web/package-lock.json
generated
Normal file
17616
web/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
48
web/package.json
Normal file
48
web/package.json
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
{
|
||||||
|
"name": "web",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"private": true,
|
||||||
|
"dependencies": {
|
||||||
|
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
||||||
|
"@fortawesome/free-regular-svg-icons": "^6.7.2",
|
||||||
|
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
||||||
|
"@fortawesome/react-fontawesome": "^0.2.2",
|
||||||
|
"@testing-library/dom": "^10.4.0",
|
||||||
|
"@testing-library/jest-dom": "^6.6.3",
|
||||||
|
"@testing-library/react": "^16.3.0",
|
||||||
|
"@testing-library/user-event": "^13.5.0",
|
||||||
|
"@types/jest": "^27.5.2",
|
||||||
|
"@types/node": "^16.18.126",
|
||||||
|
"@types/react": "^19.1.3",
|
||||||
|
"@types/react-dom": "^19.1.3",
|
||||||
|
"react": "^19.1.0",
|
||||||
|
"react-dom": "^19.1.0",
|
||||||
|
"react-scripts": "5.0.1",
|
||||||
|
"typescript": "^4.9.5",
|
||||||
|
"web-vitals": "^2.1.4"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"start": "react-scripts start",
|
||||||
|
"build": "react-scripts build",
|
||||||
|
"test": "react-scripts test",
|
||||||
|
"eject": "react-scripts eject"
|
||||||
|
},
|
||||||
|
"eslintConfig": {
|
||||||
|
"extends": [
|
||||||
|
"react-app",
|
||||||
|
"react-app/jest"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"browserslist": {
|
||||||
|
"production": [
|
||||||
|
">0.2%",
|
||||||
|
"not dead",
|
||||||
|
"not op_mini all"
|
||||||
|
],
|
||||||
|
"development": [
|
||||||
|
"last 1 chrome version",
|
||||||
|
"last 1 firefox version",
|
||||||
|
"last 1 safari version"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
web/public/favicon.ico
Normal file
BIN
web/public/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.8 KiB |
42
web/public/index.html
Normal file
42
web/public/index.html
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<meta name="theme-color" content="#000000" />
|
||||||
|
<meta
|
||||||
|
name="description"
|
||||||
|
content="UnitCommitment.jl Case Builder"
|
||||||
|
/>
|
||||||
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||||||
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||||
|
<title>Case Builder - UnitCommitment.jl</title>
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--site-max-width: 1200px;
|
||||||
|
--site-min-width: 900px;
|
||||||
|
--box-border: 1px solid rgba(0, 0, 0, 0.2);
|
||||||
|
--box-shadow: 0px 2px 4px -3px rgba(0, 0, 0, 0.2);
|
||||||
|
--border-radius: 4px;
|
||||||
|
--primary: #0d6efd;
|
||||||
|
|
||||||
|
--contrast-100: #202020;
|
||||||
|
--contrast-80: #606060;
|
||||||
|
--contrast-60: #909090;
|
||||||
|
--contrast-10: #f6f6f6;
|
||||||
|
--contrast-0: #fefefe;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
background-color: var(--contrast-10)
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||||
|
<div id="root"></div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
BIN
web/public/logo192.png
Normal file
BIN
web/public/logo192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.2 KiB |
BIN
web/public/logo512.png
Normal file
BIN
web/public/logo512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.4 KiB |
25
web/public/manifest.json
Normal file
25
web/public/manifest.json
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"short_name": "React App",
|
||||||
|
"name": "Create React App Sample",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "favicon.ico",
|
||||||
|
"sizes": "64x64 32x32 24x24 16x16",
|
||||||
|
"type": "image/x-icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "logo192.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "192x192"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "logo512.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "512x512"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"start_url": ".",
|
||||||
|
"display": "standalone",
|
||||||
|
"theme_color": "#000000",
|
||||||
|
"background_color": "#ffffff"
|
||||||
|
}
|
||||||
3
web/public/robots.txt
Normal file
3
web/public/robots.txt
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# https://www.robotstxt.org/robotstxt.html
|
||||||
|
User-agent: *
|
||||||
|
Disallow:
|
||||||
11
web/src/components/CaseBuilder/CaseBuilder.tsx
Normal file
11
web/src/components/CaseBuilder/CaseBuilder.tsx
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import Header from "./Header/Header";
|
||||||
|
import Parameters from "./Parameters/Parameters";
|
||||||
|
|
||||||
|
function CaseBuilder() {
|
||||||
|
return <div>
|
||||||
|
<Header/>
|
||||||
|
<Parameters/>
|
||||||
|
</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default CaseBuilder;
|
||||||
36
web/src/components/CaseBuilder/Header/Header.module.css
Normal file
36
web/src/components/CaseBuilder/Header/Header.module.css
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
.HeaderBox {
|
||||||
|
background-color: var(--contrast-0);
|
||||||
|
border-bottom: var(--box-border);
|
||||||
|
box-shadow: var(--box-shadow);
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.HeaderContent {
|
||||||
|
margin: 0 auto;
|
||||||
|
max-width: var(--site-max-width);
|
||||||
|
min-width: var(--site-min-width);
|
||||||
|
}
|
||||||
|
|
||||||
|
.HeaderContent h1, h2 {
|
||||||
|
color: var(--contrast-100);
|
||||||
|
display: inline-block;
|
||||||
|
line-height: 48px;
|
||||||
|
font-size: 28px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.HeaderContent h2 {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 22px;
|
||||||
|
color: var(--contrast-80);
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttonContainer {
|
||||||
|
float: right;
|
||||||
|
padding: 16px 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
21
web/src/components/CaseBuilder/Header/Header.tsx
Normal file
21
web/src/components/CaseBuilder/Header/Header.tsx
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import styles from "./Header.module.css"
|
||||||
|
import Button from "../../Common/Buttons/Button";
|
||||||
|
|
||||||
|
function Header() {
|
||||||
|
return (
|
||||||
|
<div className={styles.HeaderBox}>
|
||||||
|
<div className={styles.HeaderContent}>
|
||||||
|
<h1>UnitCommitment.jl</h1>
|
||||||
|
<h2>Case Builder</h2>
|
||||||
|
<div className={styles.buttonContainer}>
|
||||||
|
<Button title="Clear"/>
|
||||||
|
<Button title="Load"/>
|
||||||
|
<Button title="Save"/>
|
||||||
|
<Button title="Submit"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Header;
|
||||||
36
web/src/components/CaseBuilder/Parameters/Parameters.tsx
Normal file
36
web/src/components/CaseBuilder/Parameters/Parameters.tsx
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
import SectionHeader from "../../Common/SectionHeader/SectionHeader";
|
||||||
|
import Form from "../../Common/Forms/Form";
|
||||||
|
import TextInputRow from "../../Common/Forms/TextInputRow";
|
||||||
|
|
||||||
|
function Parameters() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<SectionHeader title="Parameters" />
|
||||||
|
<Form>
|
||||||
|
<TextInputRow
|
||||||
|
label="Time horizon"
|
||||||
|
unit="h"
|
||||||
|
tooltip="Length of the planning horizon (in hours)."
|
||||||
|
currentValue="48"
|
||||||
|
defaultValue="24"
|
||||||
|
/>
|
||||||
|
<TextInputRow
|
||||||
|
label="Time step"
|
||||||
|
unit="min"
|
||||||
|
tooltip="Length of each time step (in minutes). Must be a divisor of 60 (e.g. 60, 30, 20, 15, etc)."
|
||||||
|
currentValue=""
|
||||||
|
defaultValue="60"
|
||||||
|
/>
|
||||||
|
<TextInputRow
|
||||||
|
label="Power balance penalty"
|
||||||
|
unit="$/MW"
|
||||||
|
tooltip="Penalty for system-wide shortage or surplus in production (in /MW). This is charged per time step. For example, if there is a shortage of 1 MW for three time steps, three times this amount will be charged."
|
||||||
|
currentValue=""
|
||||||
|
defaultValue="1000.0"
|
||||||
|
/>
|
||||||
|
</Form>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Parameters;
|
||||||
22
web/src/components/Common/Buttons/Button.module.css
Normal file
22
web/src/components/Common/Buttons/Button.module.css
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
.Button {
|
||||||
|
padding: 6px 36px;
|
||||||
|
margin: 0 0 0 8px;
|
||||||
|
line-height: 24px;
|
||||||
|
border: var(--box-border);
|
||||||
|
box-shadow: var(--box-shadow);
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
cursor: pointer;
|
||||||
|
color: var(--contrast-80);
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 12px;
|
||||||
|
background: linear-gradient(var(--contrast-0) 25%, var(--contrast-10) 100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.Button:hover {
|
||||||
|
background: rgb(245, 245, 245);
|
||||||
|
}
|
||||||
|
|
||||||
|
.Button:active {
|
||||||
|
background: rgba(220, 220, 220);
|
||||||
|
}
|
||||||
7
web/src/components/Common/Buttons/Button.tsx
Normal file
7
web/src/components/Common/Buttons/Button.tsx
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import styles from "./Button.module.css"
|
||||||
|
|
||||||
|
function Button({title}: {title: string}) {
|
||||||
|
return <button className={styles.Button}>{title}</button>
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Button;
|
||||||
35
web/src/components/Common/Forms/Form.module.css
Normal file
35
web/src/components/Common/Forms/Form.module.css
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
.Form {
|
||||||
|
background-color: var(--contrast-0);
|
||||||
|
border: var(--box-border);
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
box-shadow: var(--box-shadow);
|
||||||
|
min-height: 48px;
|
||||||
|
margin: 0 auto;
|
||||||
|
min-width: var(--site-min-width);
|
||||||
|
max-width: var(--site-max-width);
|
||||||
|
padding: 12px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.FormRow {
|
||||||
|
display: flex;
|
||||||
|
line-height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.FormRow label {
|
||||||
|
width: 350px;
|
||||||
|
padding: 6px 12px;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.FormRow input {
|
||||||
|
flex: 1;
|
||||||
|
font-family: monospace;
|
||||||
|
border: var(--box-border);
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
padding: 4px;
|
||||||
|
margin: 2px 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.FormRow_unit {
|
||||||
|
color: rgba(0, 0, 0, 0.4);
|
||||||
|
}
|
||||||
8
web/src/components/Common/Forms/Form.tsx
Normal file
8
web/src/components/Common/Forms/Form.tsx
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
import { ReactNode } from 'react';
|
||||||
|
import styles from "./Form.module.css"
|
||||||
|
|
||||||
|
function Form({ children }: { children: ReactNode }) {
|
||||||
|
return <div className={styles.Form}>{children}</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Form;
|
||||||
36
web/src/components/Common/Forms/HelpButton.module.css
Normal file
36
web/src/components/Common/Forms/HelpButton.module.css
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
.tooltip {
|
||||||
|
visibility: hidden;
|
||||||
|
background-color: var(--contrast-80);
|
||||||
|
color: var(--contrast-10);
|
||||||
|
opacity: 0;
|
||||||
|
width: 250px;
|
||||||
|
margin-top: 36px;
|
||||||
|
margin-left: -250px;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 100;
|
||||||
|
font-size: 14px;
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
box-shadow: var(--box-shadow);
|
||||||
|
line-height: 20px;
|
||||||
|
transition: opacity 0.5s;
|
||||||
|
font-weight: normal;
|
||||||
|
text-align: left;
|
||||||
|
padding: 6px 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
color: var(--contrast-60);
|
||||||
|
font-size: 16px;
|
||||||
|
padding: 8px 8px 8px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.HelpButton {
|
||||||
|
border: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.HelpButton:hover .tooltip {
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 100%;
|
||||||
|
transition: opacity 0.5s;
|
||||||
|
}
|
||||||
17
web/src/components/Common/Forms/HelpButton.tsx
Normal file
17
web/src/components/Common/Forms/HelpButton.tsx
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
import styles from "./HelpButton.module.css"
|
||||||
|
import {FontAwesomeIcon} from '@fortawesome/react-fontawesome'
|
||||||
|
import {faCircleQuestion} from '@fortawesome/free-regular-svg-icons'
|
||||||
|
|
||||||
|
|
||||||
|
function HelpButton({text}: { text: String }) {
|
||||||
|
return (
|
||||||
|
<button className={styles.HelpButton}>
|
||||||
|
<span className={styles.tooltip}>{text}</span>
|
||||||
|
<span className={styles.icon}>
|
||||||
|
<FontAwesomeIcon icon={faCircleQuestion}/>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default HelpButton;
|
||||||
27
web/src/components/Common/Forms/TextInputRow.tsx
Normal file
27
web/src/components/Common/Forms/TextInputRow.tsx
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
import formStyles from "./Form.module.css";
|
||||||
|
import HelpButton from "./HelpButton";
|
||||||
|
|
||||||
|
function TextInputRow({label, unit, tooltip, currentValue, defaultValue}: {
|
||||||
|
label: string,
|
||||||
|
unit: string,
|
||||||
|
tooltip: string,
|
||||||
|
currentValue: string,
|
||||||
|
defaultValue: string,
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<div className={formStyles.FormRow}>
|
||||||
|
<label>
|
||||||
|
{label}
|
||||||
|
<span className={formStyles.FormRow_unit}> ({unit})</span>
|
||||||
|
</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
placeholder={defaultValue}
|
||||||
|
value={currentValue}
|
||||||
|
/>
|
||||||
|
<HelpButton text={tooltip} />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default TextInputRow;
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
.SectionHeader {
|
||||||
|
max-width: var(--site-max-width);
|
||||||
|
min-width: var(--site-min-width);
|
||||||
|
margin: 0 auto;
|
||||||
|
color: var(--contrast-100);
|
||||||
|
}
|
||||||
|
|
||||||
|
.SectionHeader h1 {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0 12px;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 64px;
|
||||||
|
}
|
||||||
11
web/src/components/Common/SectionHeader/SectionHeader.tsx
Normal file
11
web/src/components/Common/SectionHeader/SectionHeader.tsx
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import styles from "./SectionHeader.module.css"
|
||||||
|
|
||||||
|
function SectionHeader({title}: {title: string}) {
|
||||||
|
return (
|
||||||
|
<div className={styles.SectionHeader}>
|
||||||
|
<h1>{title}</h1>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default SectionHeader;
|
||||||
16
web/src/index.tsx
Normal file
16
web/src/index.tsx
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import ReactDOM from 'react-dom/client';
|
||||||
|
import reportWebVitals from './reportWebVitals';
|
||||||
|
import CaseBuilder from "./components/CaseBuilder/CaseBuilder";
|
||||||
|
|
||||||
|
const root = ReactDOM.createRoot(
|
||||||
|
document.getElementById('root') as HTMLElement
|
||||||
|
);
|
||||||
|
|
||||||
|
root.render(
|
||||||
|
<React.StrictMode>
|
||||||
|
<CaseBuilder/>
|
||||||
|
</React.StrictMode>
|
||||||
|
);
|
||||||
|
|
||||||
|
reportWebVitals();
|
||||||
1
web/src/logo.svg
Normal file
1
web/src/logo.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
1
web/src/react-app-env.d.ts
vendored
Normal file
1
web/src/react-app-env.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
/// <reference types="react-scripts" />
|
||||||
15
web/src/reportWebVitals.ts
Normal file
15
web/src/reportWebVitals.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
import { ReportHandler } from 'web-vitals';
|
||||||
|
|
||||||
|
const reportWebVitals = (onPerfEntry?: ReportHandler) => {
|
||||||
|
if (onPerfEntry && onPerfEntry instanceof Function) {
|
||||||
|
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
|
||||||
|
getCLS(onPerfEntry);
|
||||||
|
getFID(onPerfEntry);
|
||||||
|
getFCP(onPerfEntry);
|
||||||
|
getLCP(onPerfEntry);
|
||||||
|
getTTFB(onPerfEntry);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export default reportWebVitals;
|
||||||
1
web/src/setupTests.ts
Normal file
1
web/src/setupTests.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
import '@testing-library/jest-dom';
|
||||||
41
web/tsconfig.json
Normal file
41
web/tsconfig.json
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "es5",
|
||||||
|
"lib": [
|
||||||
|
"dom",
|
||||||
|
"dom.iterable",
|
||||||
|
"esnext"
|
||||||
|
],
|
||||||
|
"allowJs": false,
|
||||||
|
"allowSyntheticDefaultImports": true,
|
||||||
|
"alwaysStrict": true,
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"forceConsistentCasingInFileNames": true,
|
||||||
|
"isolatedModules": true,
|
||||||
|
"jsx": "react-jsx",
|
||||||
|
"module": "esnext",
|
||||||
|
"moduleResolution": "node",
|
||||||
|
"noEmit": true,
|
||||||
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
"noImplicitAny": true,
|
||||||
|
"noImplicitOverride": true,
|
||||||
|
"noImplicitReturns": true,
|
||||||
|
"noImplicitThis": true,
|
||||||
|
"resolveJsonModule": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
|
"strict": true,
|
||||||
|
"strictFunctionTypes": true,
|
||||||
|
"strictNullChecks": true,
|
||||||
|
"strictPropertyInitialization": true,
|
||||||
|
"allowUnusedLabels": false,
|
||||||
|
"allowUnreachableCode": false,
|
||||||
|
"exactOptionalPropertyTypes": true,
|
||||||
|
"noUncheckedIndexedAccess": true,
|
||||||
|
"noUnusedLocals": true,
|
||||||
|
"noUnusedParameters": true,
|
||||||
|
"checkJs": true
|
||||||
|
},
|
||||||
|
"include": [
|
||||||
|
"src"
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user