-
Notifications
You must be signed in to change notification settings - Fork 0
Frontend Routes
Colin Eckert edited this page Feb 5, 2021
·
8 revisions
-
/
Splash
-
/login
- login existing userSessionForm
-
/signup
- create new accountSessionForm
-
/demo
- login as demo userDemoLoginForm
-
/notebooks
- render user's notebooksNotebookIndexContainer
-
/notebooks/:notebookId
- show selected notebook and notes-
NotebookShowContainer
NotebookShow
-
NotesSidebarContainer
-
NoteIndex
NotesList
-
-
-
/notes
- show all user's notes-
NotesSidebarContainer
-
NoteIndex
NotesList
-
-
EditorContainer
Editor
-
-
/notebook/:notebookId/:noteId
- render selected note to edit-
NotesSidebarContainer
-
NoteIndex
-
NotesList
-
NotesListItem
- highlight selected note
-
-
-
-
EditorContainer
-
Editor
- show selected note title and body
-
-
-
/notes?tag=:tag_id
- show all notes filtered by tag-
NotesSidebarContainer
-
NoteIndex
- filtered bytagId
-
-
-
/notebooks/:notebook_id/notes?tag=:tag_id
- shows notes in notebook filtered by tag-
NotesSidebarContainer
-
NoteIndex
- filtered bynotebookId
andtagId
-
-
Note that a NavContainer
and Nav
component will be visible at all front-end routes.