Skip to content

Commit

Permalink
update firebase setup
Browse files Browse the repository at this point in the history
Co-authored-by: Hannah Gooding <[email protected]>
  • Loading branch information
Chloeh24 and hannahgooding committed Jun 22, 2020
1 parent 55b79cd commit 498b86b
Show file tree
Hide file tree
Showing 10 changed files with 637 additions and 132 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

# production
/build
.env

# misc
.DS_Store
Expand Down
531 changes: 531 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"firebase": "^7.15.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1"
},
"scripts": {
Expand Down
136 changes: 31 additions & 105 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,114 +1,40 @@
<!DOCTYPE html>
<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" />
<title>Welcome to Firebase Hosting</title>

<!-- update the version number as needed -->
<script defer src="/__/firebase/7.15.3/firebase-app.js"></script>
<!-- include only the Firebase features as you need -->
<script defer src="/__/firebase/7.15.3/firebase-auth.js"></script>
<script defer src="/__/firebase/7.15.3/firebase-database.js"></script>
<script defer src="/__/firebase/7.15.3/firebase-messaging.js"></script>
<script defer src="/__/firebase/7.15.3/firebase-storage.js"></script>
<!-- initialize the SDK after all desired features are loaded -->
<script defer src="/__/firebase/init.js"></script>

<style media="screen">
body {
background: #eceff1;
color: rgba(0, 0, 0, 0.87);
font-family: Roboto, Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
}
#message {
background: white;
max-width: 360px;
margin: 100px auto 16px;
padding: 32px 24px;
border-radius: 3px;
}
#message h2 {
color: #ffa100;
font-weight: bold;
font-size: 16px;
margin: 0 0 8px;
}
#message h1 {
font-size: 22px;
font-weight: 300;
color: rgba(0, 0, 0, 0.6);
margin: 0 0 16px;
}
#message p {
line-height: 140%;
margin: 16px 0 24px;
font-size: 14px;
}
#message a {
display: block;
text-align: center;
background: #039be5;
text-transform: uppercase;
text-decoration: none;
color: white;
padding: 16px;
border-radius: 4px;
}
#message,
#message a {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
#load {
color: rgba(0, 0, 0, 0.4);
text-align: center;
font-size: 13px;
}
@media (max-width: 600px) {
body,
#message {
margin-top: 0;
background: white;
box-shadow: none;
}
body {
border-top: 16px solid #ffa100;
}
}
</style>
<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>
<p id="load">Firebase SDK Loading&hellip;</p>

<script>
document.addEventListener("DOMContentLoaded", function () {
// // 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥
// // The Firebase SDK is initialized and available here!
//
// firebase.auth().onAuthStateChanged(user => { });
// firebase.database().ref('/path/to/ref').on('value', snapshot => { });
// firebase.messaging().requestPermission().then(() => { });
// firebase.storage().ref('/path/to/ref').getDownloadURL().then(() => { });
//
// // 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥

try {
let app = firebase.app();
let features = ["auth", "database", "messaging", "storage"].filter(
(feature) => typeof app[feature] === "function"
);
document.getElementById(
"load"
).innerHTML = `Firebase SDK loaded with ${features.join(", ")}`;
} catch (e) {
console.error(e);
document.getElementById("load").innerHTML =
"Error loading the Firebase SDK, check the console.";
}
});
</script>
<!--
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>
38 changes: 19 additions & 19 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
import React from 'react';
import logo from './logo.svg';
import './App.css';
import React from "react";
import { BrowserRouter as Router, Switch, Route } from "react-router-dom";
import "./App.css";
import Home from "./pages/Home";
import LoginForm from "./pages/LoginForm";
import SignUpForm from "./pages/SignUpForm";

function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
<Router>
<Switch>
<Route exact path="/">
<Home />
</Route>
<Route path="/login">
<LoginForm />
</Route>
<Route path="/signup">
<SignUpForm />
</Route>
</Switch>
</Router>
);
}

Expand Down
23 changes: 23 additions & 0 deletions src/components/firebase/Firebase.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import * as firebase from "firebase";
import React from "react";

const config = {
apiKey: process.env.REACT_APP_apiKey,
authDomain: process.env.REACT_APP_authDomain,
databaseURL: process.env.REACT_APP_databaseURL,
projectId: process.env.REACT_APP_projectId,
storageBucket: process.env.REACT_APP_storageBucket,
messagingSenderId: process.env.REACT_APP_messagingSenderId,
appId: process.env.REACT_APP_appId,
measurementId: process.env.REACT_APP_measurementId,
};

const Firebase = () => {
firebase.initializeApp(config);
};

const FirebaseContext = React.createContext(null);

export default Firebase;

export { FirebaseContext };
17 changes: 9 additions & 8 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
import React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import App from "./App";
import * as serviceWorker from "./serviceWorker";
import Firebase, { FirebaseContext } from "./components/firebase/Firebase";

ReactDOM.render(
<React.StrictMode>
<FirebaseContext.Provider value={Firebase}>
<App />
</React.StrictMode>,
document.getElementById('root')
</FirebaseContext.Provider>,
document.getElementById("root")
);

// If you want your app to work offline and load faster, you can change
Expand Down
7 changes: 7 additions & 0 deletions src/pages/Home.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

const Home = () => {
return <h1>Home</h1>;
};

export default Home;
7 changes: 7 additions & 0 deletions src/pages/LoginForm.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

const LoginForm = () => {
return <h1>Log In</h1>;
};

export default LoginForm;
7 changes: 7 additions & 0 deletions src/pages/SignUpForm.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

const SignUpForm = () => {
return <h1>Sign Up</h1>;
};

export default SignUpForm;

0 comments on commit 498b86b

Please sign in to comment.