CRA skeleton

This commit is contained in:
Nicholas Zuber 2018-10-26 18:48:00 -04:00
parent 1f39dd8c03
commit d8b2c6a841
17 changed files with 14862 additions and 47 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

22
.gitignore vendored
View File

@ -1,3 +1,21 @@
node_modules
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
# testing
/coverage
# production
/build
# misc
.DS_Store
npm-debug.log
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*

14589
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,27 +1,26 @@
{
"name": "meteorite",
"version": "1.0.0",
"description": "Smarter GitHub notifications.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:nickzuber/meteorite.git"
},
"keywords": [
"github",
"notifications"
],
"author": "Nick Zuber <zuber.nicholas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nickzuber/meteorite/issues"
},
"homepage": "https://github.com/nickzuber/meteorite#readme",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"graphql": "^14.0.2"
}
"@reach/router": "^1.2.1",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-scripts": "2.0.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

17
public/index.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<title>React App</title>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
</body>
</html>

15
public/manifest.json Normal file
View File

@ -0,0 +1,15 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}

24
src/App.js Normal file
View File

@ -0,0 +1,24 @@
import React, { Component } from 'react';
import { Router } from "@reach/router";
import { Routes } from './constants';
import {
Home,
Login,
Inbox,
} from './pages';
const Dash = () => <div>Dash</div>
class App extends Component {
render() {
return (
<Router>
<Home path={Routes.HOME} />
<Login path={Routes.LOGIN} />
<Inbox path={Routes.INBOX} />
</Router>
);
}
}
export default App;

1
src/constants/index.js Normal file
View File

@ -0,0 +1 @@
export {default as Routes} from './routes';

5
src/constants/routes.js Normal file
View File

@ -0,0 +1,5 @@
export default {
HOME: '/',
INBOX: 'inbox',
LOGIN: 'login'
};

12
src/index.js Normal file
View File

@ -0,0 +1,12 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './styles/index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
ReactDOM.render(<App />, document.getElementById('root'));
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: http://bit.ly/CRA-PWA
serviceWorker.unregister();

11
src/pages/Home.js Normal file
View File

@ -0,0 +1,11 @@
import React from 'react';
import { Link } from "@reach/router";
import { Routes } from '../constants';
export default props => (
<div>
Home!
<Link to={Routes.LOGIN}>login</Link>
<Link to={Routes.INBOX}>inbox</Link>
</div>
);

10
src/pages/Inbox.js Normal file
View File

@ -0,0 +1,10 @@
import React from 'react';
import { Link } from "@reach/router";
import { Routes } from '../constants';
export default props => (
<div>
Inbox
<Link to={Routes.HOME}>home</Link>
</div>
);

10
src/pages/Login.js Normal file
View File

@ -0,0 +1,10 @@
import React from 'react';
import { Link } from "@reach/router";
import { Routes } from '../constants';
export default props => (
<div>
Login
<Link to={Routes.HOME}>home</Link>
</div>
);

3
src/pages/index.js Normal file
View File

@ -0,0 +1,3 @@
export {default as Home} from './Home';
export {default as Inbox} from './Inbox';
export {default as Login} from './Login';

131
src/serviceWorker.js Normal file
View File

@ -0,0 +1,131 @@
// 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 http://bit.ly/CRA-PWA.
const isLocalhost = Boolean(
window.location.hostname === 'localhost' ||
// [::1] is the IPv6 localhost address.
window.location.hostname === '[::1]' ||
// 127.0.0.1/8 is 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);
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 http://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;
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 http://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)
.then(response => {
// Ensure service worker exists, and that we really are getting a JS file.
if (
response.status === 404 ||
response.headers.get('content-type').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();
});
}
}

14
src/styles/index.css Normal file
View File

@ -0,0 +1,14 @@
body {
margin: 0;
padding: 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;
}