-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.jsx
90 lines (82 loc) · 2.23 KB
/
App.jsx
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
87
88
89
90
import React, { useState, useEffect } from "react"
import Layout from "./layout/Layout"
import Sidebar from "./components/Sidebar"
import Editor from "./components/Editor"
import Split from "react-split"
import { nanoid } from "nanoid"
function App() {
const [notes, setNotes] = useState(
() => JSON.parse(localStorage.getItem("notes")) || []
)
const [currentNoteId, setCurrentNoteId] = useState(
(notes[0] && notes[0].id) || ""
)
const currentNote =
notes.find((note) => note.id === currentNoteId) || notes[0]
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({ ...oldNote, body: text })
} else {
newArray.push(oldNote)
}
}
return newArray
})
}
function deleteNote(e, noteId) {
e.stopPropagation()
setNotes((oldNotes) => oldNotes.filter((note) => note.id !== noteId))
}
return (
<Layout>
{notes.length > 0 ? (
<Split
sizes={[30, 70]}
direction="horizontal"
className="split"
>
<Sidebar
notes={notes}
currentNote={currentNote}
setCurrentNoteId={setCurrentNoteId}
newNote={createNewNote}
deleteNote={deleteNote}
/>
{currentNoteId && notes.length > 0 && (
<Editor
currentNote={currentNote}
updateNote={updateNote}
/>
)}
</Split>
) : (
<div className="no-notes">
<h2>You have no notes</h2>
<button
className="first-note"
onClick={createNewNote}
>
Create one now
</button>
</div>
)}
</Layout>
)
}
export default App