Day 2 / 05 / exercise
Internal Request Tracker Build
Turn the shared request tracker design into a working application flow.
Build brief
01Build the main screensCreate enough interface for a request to move through the app.
Steps
- Create a submit request screen.
- Create a request list screen.
- Create a request detail screen.
- Add status and comment actions for review.
02Decide what must be savedThe database stores the information the app needs to remember.
Steps
- Save request title and description.
- Save department, priority, status, and created date.
- Save reviewer comments if they are part of the workflow.
03Prompt frontend and backend separatelyClear prompts make it easier to review what AI changed.
Steps
- Ask for the form UI first.
- Ask for the Supabase table and save function next.
- Ask for loading, empty, success, and error states last.
04Test the flowA build is not complete until the main user path works.
Steps
- Create a request.
- Find it in the list.
- Open the detail view.
- Change the status or add a comment.