Open
Description
Material UI library recently has released new version 5. It includes many breaking changes and rebranding.
This issue describes what is the plan for the migration and used as tracking progress of the migration as well.
Upgrade Plan
The new version of MUI has many breaking changes. In order to not block the current version it is better to migrate to MUI gradually.
Here is list that we should follow while upgrading:
- We use separate branch for migration under mui5. Please create PRs targeting this branch.
- Each component should be upgraded individually and we should preserve old component as well in order to compare changes.
- Every components for MUI v5 should be located under
v5
folder. Just copy component from/src
folder and paste undersrc/v5
folder. - Tests each new and old components both with unit tests and regression tests (regression tests are not implemented yet)
- MUI uses emotion as a main style engine. Our current implementation uses JSS and styled-components together. As we have used styled-components heavily on projects, we will use styled-components as a main engine. Migration from styled-components to Emotion should be easier as they use same API under the hood and it will be as a separate issue.
- Follow MUI guidelines for migration mui.com/guides/migration-v4
- Document breaking changes needed to be done on product level. (Add needed codemods as well)
Todos
- Setup visual regression tests test: Visual regression tests for components. #280
- Setup integration regression tests refactor(ui): [Theme] Migrate to MUI. #278
- MUI introduces pickers as well. Decided which pickers we should use?
- Migration from JSS to Styled-components?
- Create playroom components for MUI5
- Migrate Lab components to MUI5
- Migrate Date components to MUI5
- Migrate Phone components to MUI5
- Migrate Form components to MUI5
Module List
- Adaptive-toolbar @doniyor2109
- App-bar
- Autocomplete @doniyor2109 feat: Migrate Autocomplete to MUI5. #321
- Avatar
- Avatar-button
- Button @doniyor2109
- Card @doniyor2109
- Card-button
- Checkbox
- Chip
- Columns
- Description-list
- Dialog
- Drawer
- Grid
- Icon-button
- Info-card
- Inline
- Link
- List
- Menu
- Overflow-text
- Pagination
- Paper
- Props
- Radio
- Responsive
- Snackbar
- Stack
- Svg-icon
- Switch
- Tabs
- Tag
- Text-field
- Theme refactor(ui): [Theme] Migrate to MUI. #278
- Tiles
- Toolbar
- Tooltip
- Typography feat(ui): [Typography] Migrate to MUI. #283
Breaking Changes
Most of the components will work. However some components need to be updated.