Skip to content

Front-End Feature: Confirm Appointment Layout #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: feature-be-passport-refresh
Choose a base branch
from

Conversation

singhmi4
Copy link
Collaborator

What it Does:

  • when user clicks an available timeslot from the scheduler page, it redirects them to the confirm appointment page
    image
  • selected timeslot is displayed

What to Look For:

  • URL correctly displays timeslot time (currently in UTC format)
  • DRY code

What to Avoid:

  • form layout for small viewport not centered
  • back-end functionality to store appointment

@singhmi4 singhmi4 requested a review from bonnieli December 24, 2020 01:15
@singhmi4 singhmi4 linked an issue Jan 3, 2021 that may be closed by this pull request
</Grid>
<Divider orientation={matches ? "horizontal" : "vertical"} flexItem={matches ? false : true} fullWidth />
<Grid container item md={9} xs={12} spacing={1} >
<Grid item md={12} xs={12}>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<Grid item md={12} xs={12}>
<Grid item xs={12}>

since these are the same, you just need to explicitly determine the smallest scale (xs)

@@ -35,7 +36,8 @@ function App ({ location }) {
<Route path="/login" component={LogIn} />
<Route path="/googleSignUp" component={SignUpGoogle} email={email} />
<Route exact path="/" component={SignUpEmail} handleEmailEntry={handleEmailEntry} />
<Route path="/scheduler/:user/:event_type" component={Scheduler} />
<Route exact path="/scheduler/:user/:event_type" component={Scheduler} />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

event_type seems to have been part of another branch but i also recommend turning this into eventType for consistency

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

FE: Confirm Appointment
2 participants