-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
86 lines (79 loc) · 2.47 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import React from "react";
import Sidebar from "./components/Sidebar";
import Editor from "./components/Editor";
import { data } from "./data";
import Split from "react-split";
import { nanoid } from "nanoid";
export default function App() {
const [notes, setNotes] = React.useState(
() => JSON.parse(localStorage.getItem("notes")) || []
);
const [currentNoteId, setCurrentNoteId] = React.useState(
(notes[0] && notes[0].id) || ""
);
React.useEffect(() => {
localStorage.setItem("notes", JSON.stringify(notes));
}, [notes]);
function createNewNote() {
const newNote = {
id: nanoid(),
body: "# Type your markdown note's title here",
};
setNotes((prevNotes) => [newNote, ...prevNotes]);
setCurrentNoteId(newNote.id);
}
function updateNote(text) {
// Put the most recently-modified note at the top
setNotes((oldNotes) => {
const newArray = [];
for (let i = 0; i < oldNotes.length; i++) {
const oldNote = oldNotes[i];
if (oldNote.id === currentNoteId) {
newArray.unshift(Object.assign({}, oldNote, { body: text }));
} else {
newArray.push(oldNote);
}
}
return newArray;
});
}
function deleteNote(event, noteId) {
event.stopPropagation();
setNotes((oldNotes) => oldNotes.filter((note) => note.id !== noteId));
}
function findCurrentNote() {
return (
notes.find((note) => {
return note.id === currentNoteId;
}) || notes[0]
);
}
return (
<main>
{notes.length > 0 ? (
<Split sizes={[30, 70]} direction="horizontal" className="split">
<Sidebar
notes={notes}
currentNote={findCurrentNote()}
setCurrentNoteId={setCurrentNoteId}
newNote={createNewNote}
deleteNote={deleteNote}
/>
{currentNoteId && notes.length > 0 && (
<Editor
currentNote={findCurrentNote()}
updateNote={updateNote}
/>
)}
</Split>
) : (
<div className="no-notes">
<h1>You have no notes</h1>
<button className="first-note" onClick={createNewNote}>
Create one now
</button>
</div>
)}
</main>
);
}