-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Hannah Gooding <[email protected]>
- Loading branch information
1 parent
55b79cd
commit 498b86b
Showing
10 changed files
with
637 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
|
||
# production | ||
/build | ||
.env | ||
|
||
# misc | ||
.DS_Store | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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…</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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |