Skip to content

Commit 2aeaf66

Browse files
author
Jochem Berends
committed
one step further with firestore, update react
1 parent fd5d3e6 commit 2aeaf66

File tree

8 files changed

+2093
-2041
lines changed

8 files changed

+2093
-2041
lines changed

.vscode/launch.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Chrome",
6+
"type": "chrome",
7+
"request": "launch",
8+
"url": "http://localhost:3000",
9+
"webRoot": "${workspaceFolder}/src",
10+
"sourceMapPathOverrides": {
11+
"webpack:///src/*": "${webRoot}/*"
12+
}
13+
}
14+
]
15+
}

package.json

+13-12
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,21 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@fortawesome/fontawesome-svg-core": "^1.2.12",
7-
"@fortawesome/free-regular-svg-icons": "^5.6.3",
8-
"@fortawesome/free-solid-svg-icons": "^5.6.3",
9-
"@fortawesome/react-fontawesome": "^0.1.3",
10-
"@material-ui/core": "^3.7.1",
11-
"@material-ui/icons": "^3.0.1",
6+
"@firebase/app-types": "^0.3.5",
7+
"@fortawesome/fontawesome-svg-core": "^1.2.15",
8+
"@fortawesome/free-regular-svg-icons": "^5.7.2",
9+
"@fortawesome/free-solid-svg-icons": "^5.7.2",
10+
"@fortawesome/react-fontawesome": "^0.1.4",
11+
"@material-ui/core": "^3.9.2",
12+
"@material-ui/icons": "^3.0.2",
1213
"axios": "^0.18.0",
13-
"firebase": "^5.7.3",
14+
"firebase": "^5.8.5",
1415
"i": "^0.3.6",
15-
"npm": "^6.5.0",
16-
"react": "^16.7.0",
17-
"react-contenteditable": "^3.2.4",
18-
"react-dom": "^16.7.0",
19-
"react-scripts": "2.1.2"
16+
"npm": "^6.8.0",
17+
"react": "^16.8.3",
18+
"react-contenteditable": "^3.2.6",
19+
"react-dom": "^16.8.3",
20+
"react-scripts": "2.1.5"
2021
},
2122
"scripts": {
2223
"start": "react-scripts start",

src/components/Ideas/Ideas.js

+15
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import BottomBar from "./BottomBar/BottomBar";
66
import OnBoarding from "./OnBoarding/OnBoarding";
77
import NewIdea from "./NewIdea/NewIdea";
88
import axios from "axios";
9+
import { ideasStore } from "../../firebaseApi";
910

1011
class Ideas extends Component {
1112
constructor(props) {
@@ -37,9 +38,23 @@ class Ideas extends Component {
3738
}
3839

3940
componentDidMount() {
41+
// this.retrieveIdeaFirestoreHandler().then(this.randomIdea())
4042
this.retrieveIdeaHandler().then(this.randomIdea())
4143
}
4244

45+
46+
retrieveIdeaFirestoreHandler = () => {
47+
return ideasStore.get()
48+
.then((snapshot) => {
49+
snapshot.forEach((doc) => {
50+
console.log(doc.id, '=>', doc.data());
51+
})
52+
})
53+
.catch((err) => {
54+
console.log('Error getting documents', err);
55+
})
56+
}
57+
4358
/**
4459
* Retrievs the list of ideas from the server.
4560
* @returns {Promise<AxiosResponse<any> | never>}

src/firebaseApi.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ export default firebase.initializeApp({
66
apiKey: process.env.REACT_APP_API_KEY,
77
authDomain: process.env.REACT_APP_AUTH_DOMAIN,
88
databaseURL: process.env.REACT_APP_DATABASE_URL,
9-
// projectId: process.env.REACT_APP_PROJECT_ID,
9+
projectId: process.env.REACT_APP_PROJECT_ID,
1010
storageBucket: process.env.REACT_APP_STORAGE_BUCKET,
11-
// messagingSenderId: process.env.REACT_APP_MESSAGING_SENDER_ID,
11+
messagingSenderId: process.env.REACT_APP_MESSAGING_SENDER_ID,
1212
});
13+
14+
export const ideasStore = () => {
15+
const db = firebase.firestore()
16+
db.settings({timestampsInSnapshots: true})
17+
return db.collection('ideas')
18+
}

src/src-depr/App.js

-85
This file was deleted.

src/src-depr/button.js

-7
This file was deleted.

src/src-depr/quote.js

-11
This file was deleted.

0 commit comments

Comments
 (0)