ucsb-cs156-f24 / proj-rec-f24-05

0 stars 0 forks source link

FEATURE: Explanation of fields on Create Recommendation Request Page #12

Open github-actions[bot] opened 1 day ago

github-actions[bot] commented 1 day ago

User Story

Discussion

This feature can only be completed AFTER epic #1. Or at least after the Form component for creating Recommendation Requests is complete.

There is a way to set "tooltips" on HTML elements, i.e. little pop ups to provide help text. They provide more context about the field being input for the request.

Here is an example from proj-gauchoride:

Screenshot 2024-11-13 at 1 35 34 PM

And here is a link to the code that produces this: https://github.com/ucsb-cs156/proj-gauchoride/blob/main/frontend/src/main/components/Ride/RideForm.js

Pay special attention to sections of code such as this:

<OverlayTrigger
                    placement="top"
                    overlay={<Tooltip>This is when you would like to picked up.</Tooltip>}
                    delay='100'
                >

Acceptance Criteria

Implementation Todos

Frontend:

Testing: