Skip to content

Commit baf589a

Browse files
committed
Made finished views a little better and added an updateNote function to the fake database in case we have time for it
1 parent 0b46da7 commit baf589a

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

completed/fakedb.js

+7
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ module.exports = {
1818

1919
getNote: function(id) {
2020
return notes[id];
21+
},
22+
23+
updateNote: function(id, title, content) {
24+
if (notes[id]) {
25+
notes[id].title = title;
26+
notes[id].content = content;
27+
}
2128
}
2229

2330
};

completed/views/index.hbs

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
</head>
55
<body>
66
<h1>Awesome site!</h1>
7+
<h3>Your notes:</h3>
78
<ul>
89
{{#notes}}
910
<li>

completed/views/new.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</head>
55
<body>
66
<h1>Awesome site!</h1>
7-
<h1>Make a new note!</h1>
7+
<h3>Make a new note!</h3>
88
<form action="/create" method="post">
99
Title:
1010
<br>

completed/views/note.hbs

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
<title>Awesome Web Application!</title>
44
</head>
55
<body>
6-
<h1>{{note.title}}</h1>
6+
<h1>Awesome site!</h1>
7+
<h3>{{note.title}}</h3>
78
<p>{{note.content}}</p>
89
<a href="/">Back to Home</a>
910
</body>

start/fakedb.js

+7
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ module.exports = {
1818

1919
getNote: function(id) {
2020
return notes[id];
21+
},
22+
23+
updateNote: function(id, title, content) {
24+
if (notes[id]) {
25+
notes[id].title = title;
26+
notes[id].content = content;
27+
}
2128
}
2229

2330
};

0 commit comments

Comments
 (0)