Skip to content
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

Update HTML components to MUI: ./src/pages/Home.js #1717

Open
4 tasks
Tracked by #1617
JackHaeg opened this issue Jul 30, 2024 · 0 comments
Open
4 tasks
Tracked by #1617

Update HTML components to MUI: ./src/pages/Home.js #1717

JackHaeg opened this issue Jul 30, 2024 · 0 comments

Comments

@JackHaeg
Copy link
Member

JackHaeg commented Jul 30, 2024

Overview

Review all components in./src/pages/Home.js and replace all standard HTML components with applicable MUI components.

Action Items

  • Review components in:./src/pages/Home.js and search for any standard HTML components.
    • IF standard HTML components are found in the file:
      • Replace these standard HTML components with applicable MUI components.
        • Ensure select field integrates changes from the Selection Field details below
      • Make a PR for this file

Selection Field

This component contains a selection field with selection options. Please reveiw MUI's Selection Component to ensure that "Select One" is displayed by default on page load.

As it currently stands, the old select style is adding a "-- Select One --" option, this behavior doesn't need to be transferred into the new componenet.

Code Snippet
<Box className="form-input-select">
  <label htmlFor={'meeting-checkin'}>
    Select a meeting to check-in:
  </label>
  <Box className="radio-buttons">
    <select
      name={'meeting-checkin'}
      className="select-meeting-dropdown"
      onChange={handleEventChange}
      required
      defaultValue="--SELECT ONE--"
    >
      <option value="--SELECT ONE--" disabled hidden>
        --SELECT ONE--
      </option>
      {events.map((event) => {
        return (
          <option key={event._id || 0} value={event._id}>
            {event?.project?.name + ' - ' + event.name}
          </option>
        );
      })}
    </select>
  </Box>
</Box>

Resources

@JackHaeg JackHaeg changed the title ./src/pages/Home.js Update HTML components to MUI: ./src/pages/Home.js Jul 30, 2024
@JackHaeg JackHaeg added this to the Y - Excellent Level milestone Jul 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Prioritized Backlog
Development

No branches or pull requests

1 participant