Skip to content

Commit 5602cf8

Browse files
committed
commit
1 parent 1f6de06 commit 5602cf8

21 files changed

+921
-19
lines changed

part2/part2-practice/package-lock.json

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

part2/part2-practice/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"@testing-library/react": "^13.2.0",
88
"@testing-library/user-event": "^13.5.0",
99
"axios": "^0.27.2",
10+
"cors": "^2.8.5",
1011
"react": "^18.1.0",
1112
"react-dom": "^18.1.0",
1213
"react-scripts": "^2.1.3",

part2/part2-practice/src/App.js

+3-10
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,9 @@ const App = ({ notesArr }) => {
4646
const [errorMessage, setErrorMessage] = useState(null)
4747
const hook = () => {
4848

49-
const nonExisting = {
50-
id: 10000,
51-
content: 'This not is not saved in the server',
52-
data: '2019-05-30T17:30:31.098Z',
53-
important: true
54-
}
55-
5649
noteService.getAll()
5750
.then(response => {
58-
setNotes(response.data.concat(nonExisting))
51+
setNotes(response.data)
5952
})
6053
}
6154
// Runs after every completed render
@@ -100,7 +93,8 @@ const App = ({ notesArr }) => {
10093
// Create a new object {... note} creates a new object with copies of all the properties from the note object
10194
const changedNote = {...note, important: !note.important}
10295

103-
console.log('importance of ' + id + 'needs to be toggled')
96+
console.log(changedNote)
97+
console.log('importance of ' + id + ' needs to be toggled')
10498

10599
// PUT request to the backend where it will replace the old object
106100
noteService.update(id, changedNote).then(response => {
@@ -110,7 +104,6 @@ const App = ({ notesArr }) => {
110104
}).catch(error => {
111105
// Add a descriptive error message
112106
setErrorMessage(`Note '${note.content}' is already removed from server`)
113-
114107
// After 5second, it will change to NULL
115108
setTimeout(()=>{
116109
setErrorMessage(null)

part2/part2-practice/src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import axios from 'axios'
44

55
import App from './App'
66

7-
axios.get('http://localhost:3001/notes').then(response => {
7+
axios.get('http://localhost:3001/api/notes').then(response => {
88

99
ReactDOM.createRoot(document.getElementById('root')).render(<App />)
1010
})

part2/part2-practice/src/services/notes.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import axios from 'axios'
22

3-
const baseURL = 'http://localhost:3001/notes'
3+
const baseURL = 'http://localhost:3001/api/notes'
44

55
const getAll = () => {
66
return axios.get(baseURL)
@@ -14,5 +14,6 @@ const update = (id, newObject) => {
1414
return axios.put(`${baseURL}/${id}`, newObject)
1515
}
1616

17+
// ${baseURL}/${id}
1718
// Module returns an obejct that has three functions
1819
export default { getAll,create,update }

part3/Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: npm start

part3/index.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@ let notes = [
2323
const express = require('express')
2424
// Creating an express application and store it into app
2525
const app = express()
26+
27+
// Allow request from all origins
28+
const cors = require('cors')
29+
app.use(cors())
30+
2631
// Activate json-parser
2732
app.use(express.json())
2833

29-
// #1 Route: Event handler that is used to handle HTTP GET request
30-
app.get('/', (request, response) => {
31-
response.send('<h1>Hello World!</h1>')
32-
})
3334

3435
// #2 Route: Event handler that is used to handle HTTP GET request
3536
app.get('/api/notes', (request, response) => {
@@ -97,7 +98,7 @@ app.post('/api/notes', (request, response) => {
9798

9899

99100

100-
const PORT = 3001
101+
const PORT = process.env.PORT || 3001
101102
app.listen(PORT, () => {
102103
console.log(`Server is running on port ${PORT}`)
103104
})

part3/node_modules/.gitignore

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

part3/node_modules/.package-lock.json

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

part3/node_modules/cors/CONTRIBUTING.md

+33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

part3/node_modules/cors/HISTORY.md

+58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

part3/node_modules/cors/LICENSE

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)