Each team member will have an ID so we could have a route like /team/member/:teamMemberId that shows that team member's schedule for the week
We need a route + component for scheduling your own Setblocks, and maybe even one for editing a specific Setblock. Each setblock will have it's own ID on the backend as well so something like /schedule/edit/:setblockId
Preliminary list of routes for #4:
/ - LandingPage
/team - TeamPage
/team/:teamMemberId - TeamMemberPage
/schedule - SchedulePage, with today's day selected by default
/schedule/:dayOfWeek - SchedulePage, with correct day selected. dayOfWeek will be an integer from 0 to 6 (0 = Monday, 6 = Sunday)
Use the UIUX Flowchart as a basis
/team/member/:teamMemberId
that shows that team member's schedule for the week/schedule/edit/:setblockId
Preliminary list of routes for #4:
/
- LandingPage/team
- TeamPage/team/:teamMemberId
- TeamMemberPage/schedule
- SchedulePage, with today's day selected by default/schedule/:dayOfWeek
- SchedulePage, with correct day selected.dayOfWeek
will be an integer from 0 to 6 (0 = Monday, 6 = Sunday)/schedule/edit/:setblockId
- SetblockDetailPage