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

  1. Create a submit request screen.
  2. Create a request list screen.
  3. Create a request detail screen.
  4. Add status and comment actions for review.
02Decide what must be savedThe database stores the information the app needs to remember.

Steps

  1. Save request title and description.
  2. Save department, priority, status, and created date.
  3. 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

  1. Ask for the form UI first.
  2. Ask for the Supabase table and save function next.
  3. Ask for loading, empty, success, and error states last.
04Test the flowA build is not complete until the main user path works.

Steps

  1. Create a request.
  2. Find it in the list.
  3. Open the detail view.
  4. Change the status or add a comment.