Explorer
project
components
App.jsx
firebase.js
index.html
index.jsx
style.css
Dependencies
firebase@9.20.0
nanoid@3.1.28
react-dom@17.0.2
react-mde@11.5.0
react-split@2.0.13
react@17.0.2
showdown@1.9.1
Bootcamp
Study group
Collaborate with peers in your dedicated #study-group channel.
Code reviews
Submit projects for review using the /review
command in your #code-reviews channel
import React from "react"
import Sidebar from "./components/Sidebar"
import Editor from "./components/Editor"
import Split from "react-split"
import { nanoid } from "nanoid"
import { onSnapshot } from "firebase/firestore"
import { notesCollection } from "./firebase"
export default function App() {
const [notes, setNotes] = React.useState([])
const [currentNoteId, setCurrentNoteId] = React.useState(
(notes[0]?.id) || ""
)
const currentNote =
notes.find(note => note.id === currentNoteId)
|| notes[0]
React.useEffect(() => {
const unsubscribe = onSnapshot(notesCollection, function(snapshot) {
// Sync up our local notes array with the snapshot data
const notesArr = snapshot.docs.map(doc => ({
...doc.data(),
id: doc.id
}))
setNotes(notesArr)
})
return unsubscribe
}, [])
function createNewNote() {
const newNote = {
id: nanoid(),
body: "# Type your markdown note's title here"
}
setNotes(prevNotes => [newNote, ...prevNotes])
setCurrentNoteId(newNote.id)
}
function updateNote(text) {
setNotes(oldNotes => {
const newArray = []
for (let i = 0; i < oldNotes.length; i++) {
const oldNote = oldNotes[i]
if (oldNote.id === currentNoteId) {
// Put the most recently-modified note at the top
newArray.unshift({ ...oldNote, body: text })
} else {
newArray.push(oldNote)
}
}
return newArray
})
}
function deleteNote(event, noteId) {
event.stopPropagation()
setNotes(oldNotes => oldNotes.filter(note => note.id !== noteId))
}
return (
<main>
{
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">
<h1>You have no notes</h1>
<button
className="first-note"
onClick={createNewNote}
>
Create one now
</button>
</div>
}
</main>
)
}