-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.jsx
61 lines (48 loc) · 1.37 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
import React, { useEffect, useState } from "react";
import "./index.css";
import "./App.css";
import NoteContainer from "./ProjectComp/ProjectNotesApp/notecontainer/NoteContainer";
import Sidebar from "./ProjectComp/ProjectNotesApp/sidebar/Sidebar";
import "./App.css";
function App() {
const [notes, setNotes] = useState(
JSON.parse(localStorage.getItem("notes-app")) || []
);
const addNote = (color) => {
const tempNotes = [...notes];
tempNotes.push({
id: Date.now() + "" + Math.floor(Math.random() * 78),
text: "",
time: Date.now(),
color,
});
setNotes(tempNotes);
};
const deleteNote = (id) => {
const tempNotes = [...notes];
const index = tempNotes.findIndex((item) => item.id === id);
if (index < 0) return;
tempNotes.splice(index, 1);
setNotes(tempNotes);
};
const updateText = (text, id) => {
const tempNotes = [...notes];
const index = tempNotes.findIndex((item) => item.id === id);
if (index < 0) return;
tempNotes[index].text = text;
setNotes(tempNotes);
};
useEffect(() => {
localStorage.setItem("notes-app", JSON.stringify(notes));
}, [notes]);
return (
<div className="App">
<Sidebar addNote={addNote} />
<NoteContainer
notes={notes}
deleteNote={deleteNote}
updateText={updateText}
/>
</div>
);
}export default App;