first commit
This commit is contained in:
commit
9eff872f86
23
.gitignore
vendored
Normal file
23
.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*
|
68
README.md
Normal file
68
README.md
Normal file
@ -0,0 +1,68 @@
|
||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
|
||||
|
||||
## Available Scripts
|
||||
|
||||
In the project directory, you can run:
|
||||
|
||||
### `yarn start`
|
||||
|
||||
Runs the app in the development mode.<br />
|
||||
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
|
||||
|
||||
The page will reload if you make edits.<br />
|
||||
You will also see any lint errors in the console.
|
||||
|
||||
### `yarn test`
|
||||
|
||||
Launches the test runner in the interactive watch mode.<br />
|
||||
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
|
||||
|
||||
### `yarn build`
|
||||
|
||||
Builds the app for production to the `build` folder.<br />
|
||||
It correctly bundles React in production mode and optimizes the build for the best performance.
|
||||
|
||||
The build is minified and the filenames include the hashes.<br />
|
||||
Your app is ready to be deployed!
|
||||
|
||||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
|
||||
|
||||
### `yarn eject`
|
||||
|
||||
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
|
||||
|
||||
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
|
||||
|
||||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
|
||||
|
||||
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
|
||||
|
||||
## Learn More
|
||||
|
||||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
|
||||
|
||||
To learn React, check out the [React documentation](https://reactjs.org/).
|
||||
|
||||
### Code Splitting
|
||||
|
||||
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
|
||||
|
||||
### Analyzing the Bundle Size
|
||||
|
||||
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
|
||||
|
||||
### Making a Progressive Web App
|
||||
|
||||
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
|
||||
|
||||
### Advanced Configuration
|
||||
|
||||
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
|
||||
|
||||
### Deployment
|
||||
|
||||
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
|
||||
|
||||
### `yarn build` fails to minify
|
||||
|
||||
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
|
4
Yarn-commands.txt
Normal file
4
Yarn-commands.txt
Normal file
@ -0,0 +1,4 @@
|
||||
yarn start einkaufszettel
|
||||
|
||||
|
||||
yarn json-server -p 3001 -wdata.json
|
35
data.json
Normal file
35
data.json
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
"zeile": [
|
||||
{
|
||||
"nummer": 1,
|
||||
"name": "Milch",
|
||||
"menge": 2,
|
||||
"einheit": "Liter",
|
||||
"kommentar": "Vollmilch"
|
||||
},
|
||||
|
||||
{
|
||||
"nummer":2,
|
||||
"name": "Butter",
|
||||
"menge": 200,
|
||||
"einheit": "Gramm",
|
||||
"kommentar": ""
|
||||
},
|
||||
|
||||
{
|
||||
"nummer":3,
|
||||
"name": "Hackfleisch",
|
||||
"menge": 1,
|
||||
"einheit": "Kilogramm",
|
||||
"kommentar": ""
|
||||
},
|
||||
|
||||
{
|
||||
"nummer":4,
|
||||
"name": "Eier",
|
||||
"menge": 10,
|
||||
"einheit": "Stück",
|
||||
"kommentar": "Freiland"
|
||||
}
|
||||
]
|
||||
}
|
17586
package-lock.json
generated
Normal file
17586
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
48
package.json
Normal file
48
package.json
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
"name": "einkaufszettel",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@material-ui/core": "^4.10.0",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
"@testing-library/jest-dom": "^4.2.4",
|
||||
"@testing-library/react": "^9.3.2",
|
||||
"@testing-library/user-event": "^7.1.2",
|
||||
"@types/react-router": "^5.1.7",
|
||||
"@types/react-router-dom": "^5.1.5",
|
||||
"axios": "^0.19.2",
|
||||
"immutability-helper": "^3.0.2",
|
||||
"react": "^16.13.1",
|
||||
"react-dom": "^16.13.1",
|
||||
"react-router": "^5.2.0",
|
||||
"react-router-dom": "^5.2.0",
|
||||
"react-scripts": "3.4.1",
|
||||
"styled-components": "^5.1.1",
|
||||
"typescript": "^3.9.3"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test",
|
||||
"eject": "react-scripts eject"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "react-app"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/styled-components": "^5.1.0",
|
||||
"json-server": "^0.16.1"
|
||||
}
|
||||
}
|
BIN
public/favicon.ico
Normal file
BIN
public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
43
public/index.html
Normal file
43
public/index.html
Normal file
@ -0,0 +1,43 @@
|
||||
<!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="Web site created using create-react-app"
|
||||
/>
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||||
<!--
|
||||
manifest.json provides metadata used when your web app is installed on a
|
||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||
-->
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<!--
|
||||
Notice the use of %PUBLIC_URL% in the tags above.
|
||||
It will be replaced with the URL of the `public` folder during the build.
|
||||
Only files inside the `public` folder can be referenced from the HTML.
|
||||
|
||||
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<title>React App</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
<!--
|
||||
This HTML file is a template.
|
||||
If you open it directly in the browser, you will see an empty page.
|
||||
|
||||
You can add webfonts, meta tags, or analytics to this file.
|
||||
The build step will place the bundled scripts into the <body> tag.
|
||||
|
||||
To begin the development, run `npm start` or `yarn start`.
|
||||
To create a production bundle, use `npm run build` or `yarn build`.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
BIN
public/logo192.png
Normal file
BIN
public/logo192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
BIN
public/logo512.png
Normal file
BIN
public/logo512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.4 KiB |
25
public/manifest.json
Normal file
25
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
public/robots.txt
Normal file
3
public/robots.txt
Normal file
@ -0,0 +1,3 @@
|
||||
# https://www.robotstxt.org/robotstxt.html
|
||||
User-agent: *
|
||||
Disallow:
|
0
src/App.css
Normal file
0
src/App.css
Normal file
45
src/App.jsx
Normal file
45
src/App.jsx
Normal file
@ -0,0 +1,45 @@
|
||||
import React, { Component } from 'react';
|
||||
|
||||
import './App.css';
|
||||
import Zettel from './Zettel';
|
||||
import NotFound from './NotFound'
|
||||
|
||||
import { BrowserRouter as Router, Route, Switch, Redirect, } from 'react-router-dom';
|
||||
|
||||
import Nav from './Nav';
|
||||
|
||||
|
||||
export default class App extends Component {
|
||||
render(){
|
||||
return (
|
||||
|
||||
<Router>
|
||||
<Nav></Nav>
|
||||
<Switch>
|
||||
<Route path="/" exact render={() => {return <Redirect to="/zettel" />;}} />
|
||||
<Route path="/zettel" component={Zettel} />
|
||||
<Route path="/hinzufügen" component={Zettel} />
|
||||
<Route path="/" component={NotFound} />
|
||||
</Switch>
|
||||
</Router>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
// <Route path="/" exact component={Zettel} />
|
||||
// <Route path="/hinzufügen" exact component={Zettel} />
|
||||
/*
|
||||
alter return
|
||||
return (
|
||||
<div>
|
||||
<h1>APP</h1>
|
||||
<Zettel />
|
||||
</div>
|
||||
|
||||
);
|
||||
|
||||
*/
|
19
src/Besorgung.js
Normal file
19
src/Besorgung.js
Normal file
@ -0,0 +1,19 @@
|
||||
export default class Besorgung {
|
||||
|
||||
static properties =
|
||||
{
|
||||
nummer: {label: 'Nummer'},
|
||||
name: {label: 'Artikel'},
|
||||
menge: {label:'Menge'},
|
||||
einheit: {label: 'Einheit'},
|
||||
kommentar: {label: 'Kommentar'},
|
||||
};
|
||||
|
||||
constructor(nummer, name, menge, einheit, kommentar) {
|
||||
this.nummer = nummer;
|
||||
this.name = name;
|
||||
this.menge = menge;
|
||||
this.einheit = einheit;
|
||||
this.kommentar = kommentar;
|
||||
}
|
||||
}
|
8
src/Nav.styles.ts
Normal file
8
src/Nav.styles.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import styled from 'styled-components';
|
||||
import { Toolbar as MatToolbar } from '@material-ui/core';
|
||||
export const Toolbar = styled(MatToolbar)`
|
||||
&&& {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
` as typeof MatToolbar;
|
65
src/Nav.tsx
Normal file
65
src/Nav.tsx
Normal file
@ -0,0 +1,65 @@
|
||||
import React, { useCallback } from 'react';
|
||||
|
||||
import { withRouter, RouteComponentProps } from 'react-router';
|
||||
import { AppBar, IconButton, Typography, Menu, MenuItem } from '@material-ui/core';
|
||||
import MenuIcon from '@material-ui/icons/Menu';
|
||||
import ExitIcon from '@material-ui/icons/ExitToApp';
|
||||
import { Link } from 'react-router-dom';
|
||||
import { Toolbar } from './Nav.styles';
|
||||
|
||||
interface Props {
|
||||
onLogout: () => void;
|
||||
}
|
||||
|
||||
function Nav({ history }: RouteComponentProps & Props) { //{history, onLogout}
|
||||
const [anchorEl, setAnchorEl] = React.useState<null | HTMLElement>(null);
|
||||
/*
|
||||
const handleLogout = useCallback(() => {
|
||||
onLogout();
|
||||
history.push('/');
|
||||
}, [onLogout]);
|
||||
*/
|
||||
const handleMenuOpen = useCallback(
|
||||
(event: React.MouseEvent<HTMLButtonElement>) =>
|
||||
setAnchorEl(event.currentTarget),
|
||||
[setAnchorEl]
|
||||
);
|
||||
|
||||
const handleMenuClose = useCallback(() => setAnchorEl(null), [setAnchorEl]);
|
||||
|
||||
return (
|
||||
<AppBar>
|
||||
<Toolbar>
|
||||
<IconButton
|
||||
edge="start"
|
||||
color="inherit"
|
||||
aria-label="Menu"
|
||||
onClick={handleMenuOpen}
|
||||
>
|
||||
<MenuIcon />
|
||||
</IconButton>
|
||||
<Typography variant="h6">
|
||||
Einkaufszettel
|
||||
</Typography>
|
||||
<Menu
|
||||
id="navigation-menu"
|
||||
anchorEl={anchorEl}
|
||||
keepMounted
|
||||
open={Boolean(anchorEl)}
|
||||
onClose={handleMenuClose}
|
||||
>
|
||||
<MenuItem onClick={handleMenuClose}>
|
||||
<Link to="/zettel">Zettel</Link>
|
||||
</MenuItem>
|
||||
<MenuItem onClick={handleMenuClose}>
|
||||
<Link to="/hinzufügen">Hinzufügen</Link>
|
||||
</MenuItem>
|
||||
|
||||
</Menu>
|
||||
</Toolbar>
|
||||
</AppBar>
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
export default withRouter(Nav);
|
7
src/NotFound.styles.tsx
Normal file
7
src/NotFound.styles.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
import styled from 'styled-components';
|
||||
export const Container = styled.div`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin: 100px;
|
||||
`;
|
12
src/NotFound.tsx
Normal file
12
src/NotFound.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import { Link } from 'react-router-dom';
|
||||
import { Container } from './NotFound.styles';
|
||||
export default function NotFound() {
|
||||
return (
|
||||
<Container>
|
||||
<h1>Ups ... Etwas ist schiefgelaufen</h1>
|
||||
<p>
|
||||
<Link to="/zettel">Weiter zur Startseite</Link>
|
||||
</p>
|
||||
</Container>
|
||||
);}
|
3
src/Zeile.css
Normal file
3
src/Zeile.css
Normal file
@ -0,0 +1,3 @@
|
||||
tr:nth-child(2n).active, .active{
|
||||
background-color: tomato;
|
||||
}
|
31
src/Zeile.jsx
Normal file
31
src/Zeile.jsx
Normal file
@ -0,0 +1,31 @@
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import './Zeile.css';
|
||||
import Besorgung from './Besorgung';
|
||||
|
||||
export default function Zeile({besorgung, onSelect, selectedLine})
|
||||
{
|
||||
return(
|
||||
<tr key = {besorgung.name}
|
||||
className={selectedLine === besorgung.name ? 'active' : ''}
|
||||
onClick={() => {onSelect(besorgung.name)}}
|
||||
>
|
||||
|
||||
{Object.keys(Besorgung.properties).map(property =>{
|
||||
const besorgungsprop = Besorgung.properties[property];
|
||||
return(
|
||||
<td>{besorgung[property]}</td>
|
||||
);
|
||||
|
||||
})}
|
||||
</tr>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Zeile.propTypes = {
|
||||
besorgung: PropTypes.object.isRequired,
|
||||
onSelect: PropTypes.func,
|
||||
selectedLine: PropTypes.string,
|
||||
};
|
37
src/Zettel.css
Normal file
37
src/Zettel.css
Normal file
@ -0,0 +1,37 @@
|
||||
h1{
|
||||
font-size:20px;
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse:collapse;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
td{
|
||||
padding: 5px 5px;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
th{
|
||||
border: 1px solid black;
|
||||
color: white
|
||||
}
|
||||
|
||||
tr:nth-child(2n){
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
thead{
|
||||
background-color: rgb(10, 190, 91);
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
.zettel{
|
||||
border: 1px solid black;
|
||||
border-radius: 10px;
|
||||
margin: 100px;
|
||||
padding: 10px;
|
||||
box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.25);
|
||||
}
|
89
src/Zettel.jsx
Normal file
89
src/Zettel.jsx
Normal file
@ -0,0 +1,89 @@
|
||||
import * as React from 'react';
|
||||
import * as PropTypes from 'prop-types';
|
||||
|
||||
import update from 'immutability-helper';
|
||||
import axios from 'axios';
|
||||
|
||||
|
||||
import './Zettel.css';
|
||||
import Besorgung from './Besorgung';
|
||||
import Zeile from './Zeile';
|
||||
|
||||
export default class Zettel extends React.Component {
|
||||
|
||||
|
||||
|
||||
|
||||
state = {
|
||||
selectedLine: '',
|
||||
liste: [],
|
||||
};
|
||||
|
||||
getSelectHandler()
|
||||
{
|
||||
return line =>
|
||||
this.setState((state) =>
|
||||
update(state, {selectedLine: {$set: line}}),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
||||
async componentDidMount(){
|
||||
|
||||
const {data} = await axios.get('http://localhost:3001/zeile');
|
||||
const liste = [];
|
||||
|
||||
data.forEach(zeile => {
|
||||
const besorgung = new Besorgung(zeile.nummer, zeile.name, zeile.menge, zeile.einheit, zeile.kommentar);
|
||||
liste.push(besorgung);
|
||||
});
|
||||
|
||||
this.setState(state =>
|
||||
update(state,{
|
||||
liste: {$set: liste},
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
||||
render(){
|
||||
return(
|
||||
<div className="zettel">
|
||||
<h1>Einkaufszettel</h1>
|
||||
|
||||
<p>Artikel in der Einkaufsliste = {this.state.liste.length}</p>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
{Object.keys(Besorgung.properties).map(property =>{
|
||||
const besorgungsprop = Besorgung.properties[property];
|
||||
return(
|
||||
<th>{besorgungsprop.label}</th>
|
||||
);
|
||||
|
||||
})}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{
|
||||
this.state.liste.map(zeile => {
|
||||
return(
|
||||
<Zeile
|
||||
besorgung={zeile}
|
||||
selectedLine={this.state.selectedLine}
|
||||
onSelect={this.getSelectHandler()}
|
||||
/>
|
||||
);
|
||||
})
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
}
|
13
src/index.css
Normal file
13
src/index.css
Normal file
@ -0,0 +1,13 @@
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
||||
sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
||||
monospace;
|
||||
}
|
7
src/index.jsx
Normal file
7
src/index.jsx
Normal file
@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
|
||||
import './index.css';
|
||||
import App from './App';
|
||||
|
||||
ReactDOM.render(<App />, document.getElementById('root'));
|
1
src/react-app-env.d.ts
vendored
Normal file
1
src/react-app-env.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
/// <reference types="react-scripts" />
|
141
src/serviceWorker.js
Normal file
141
src/serviceWorker.js
Normal file
@ -0,0 +1,141 @@
|
||||
// This optional code is used to register a service worker.
|
||||
// register() is not called by default.
|
||||
|
||||
// This lets the app load faster on subsequent visits in production, and gives
|
||||
// it offline capabilities. However, it also means that developers (and users)
|
||||
// will only see deployed updates on subsequent visits to a page, after all the
|
||||
// existing tabs open on the page have been closed, since previously cached
|
||||
// resources are updated in the background.
|
||||
|
||||
// To learn more about the benefits of this model and instructions on how to
|
||||
// opt-in, read https://bit.ly/CRA-PWA
|
||||
|
||||
const isLocalhost = Boolean(
|
||||
window.location.hostname === 'localhost' ||
|
||||
// [::1] is the IPv6 localhost address.
|
||||
window.location.hostname === '[::1]' ||
|
||||
// 127.0.0.0/8 are considered localhost for IPv4.
|
||||
window.location.hostname.match(
|
||||
/^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
|
||||
)
|
||||
);
|
||||
|
||||
export function register(config) {
|
||||
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
|
||||
// The URL constructor is available in all browsers that support SW.
|
||||
const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href);
|
||||
if (publicUrl.origin !== window.location.origin) {
|
||||
// Our service worker won't work if PUBLIC_URL is on a different origin
|
||||
// from what our page is served on. This might happen if a CDN is used to
|
||||
// serve assets; see https://github.com/facebook/create-react-app/issues/2374
|
||||
return;
|
||||
}
|
||||
|
||||
window.addEventListener('load', () => {
|
||||
const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;
|
||||
|
||||
if (isLocalhost) {
|
||||
// This is running on localhost. Let's check if a service worker still exists or not.
|
||||
checkValidServiceWorker(swUrl, config);
|
||||
|
||||
// Add some additional logging to localhost, pointing developers to the
|
||||
// service worker/PWA documentation.
|
||||
navigator.serviceWorker.ready.then(() => {
|
||||
console.log(
|
||||
'This web app is being served cache-first by a service ' +
|
||||
'worker. To learn more, visit https://bit.ly/CRA-PWA'
|
||||
);
|
||||
});
|
||||
} else {
|
||||
// Is not localhost. Just register service worker
|
||||
registerValidSW(swUrl, config);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function registerValidSW(swUrl, config) {
|
||||
navigator.serviceWorker
|
||||
.register(swUrl)
|
||||
.then(registration => {
|
||||
registration.onupdatefound = () => {
|
||||
const installingWorker = registration.installing;
|
||||
if (installingWorker == null) {
|
||||
return;
|
||||
}
|
||||
installingWorker.onstatechange = () => {
|
||||
if (installingWorker.state === 'installed') {
|
||||
if (navigator.serviceWorker.controller) {
|
||||
// At this point, the updated precached content has been fetched,
|
||||
// but the previous service worker will still serve the older
|
||||
// content until all client tabs are closed.
|
||||
console.log(
|
||||
'New content is available and will be used when all ' +
|
||||
'tabs for this page are closed. See https://bit.ly/CRA-PWA.'
|
||||
);
|
||||
|
||||
// Execute callback
|
||||
if (config && config.onUpdate) {
|
||||
config.onUpdate(registration);
|
||||
}
|
||||
} else {
|
||||
// At this point, everything has been precached.
|
||||
// It's the perfect time to display a
|
||||
// "Content is cached for offline use." message.
|
||||
console.log('Content is cached for offline use.');
|
||||
|
||||
// Execute callback
|
||||
if (config && config.onSuccess) {
|
||||
config.onSuccess(registration);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
})
|
||||
.catch(error => {
|
||||
console.error('Error during service worker registration:', error);
|
||||
});
|
||||
}
|
||||
|
||||
function checkValidServiceWorker(swUrl, config) {
|
||||
// Check if the service worker can be found. If it can't reload the page.
|
||||
fetch(swUrl, {
|
||||
headers: { 'Service-Worker': 'script' },
|
||||
})
|
||||
.then(response => {
|
||||
// Ensure service worker exists, and that we really are getting a JS file.
|
||||
const contentType = response.headers.get('content-type');
|
||||
if (
|
||||
response.status === 404 ||
|
||||
(contentType != null && contentType.indexOf('javascript') === -1)
|
||||
) {
|
||||
// No service worker found. Probably a different app. Reload the page.
|
||||
navigator.serviceWorker.ready.then(registration => {
|
||||
registration.unregister().then(() => {
|
||||
window.location.reload();
|
||||
});
|
||||
});
|
||||
} else {
|
||||
// Service worker found. Proceed as normal.
|
||||
registerValidSW(swUrl, config);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
console.log(
|
||||
'No internet connection found. App is running in offline mode.'
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
export function unregister() {
|
||||
if ('serviceWorker' in navigator) {
|
||||
navigator.serviceWorker.ready
|
||||
.then(registration => {
|
||||
registration.unregister();
|
||||
})
|
||||
.catch(error => {
|
||||
console.error(error.message);
|
||||
});
|
||||
}
|
||||
}
|
5
src/setupTests.js
Normal file
5
src/setupTests.js
Normal file
@ -0,0 +1,5 @@
|
||||
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
||||
// allows you to do things like:
|
||||
// expect(element).toHaveTextContent(/react/i)
|
||||
// learn more: https://github.com/testing-library/jest-dom
|
||||
import '@testing-library/jest-dom/extend-expect';
|
25
tsconfig.json
Normal file
25
tsconfig.json
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"lib": [
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"esnext"
|
||||
],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
"jsx": "react"
|
||||
},
|
||||
"include": [
|
||||
"src"
|
||||
]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user