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

Replace the HOCs #3811

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft

Replace the HOCs #3811

wants to merge 2 commits into from

Conversation

alaa-yahia
Copy link
Member

@alaa-yahia alaa-yahia commented Sep 24, 2024

Material UI withStyles to styled-jsx (Not finished)

This PR replaces Material UI's withStyles HOC with styled-jsx for component styling, creating a theme file instead of accessing theme via props while also adopting kebab-case for CSS class names throughout the codebase.

Key Changes

  • Removed withStyles HOC wrappers and replaced with styled-jsx
  • Replaced camelCase CSS class names with kebab-case (e.g., buttonContainer → button-container)
  • Directly imported theme files instead of accessing via props

Challenges Encountered

Flow Type Errors: Migrating away from withStyles revealed previously masked Flow type issues, particularly with nullable properties. This required updating type definitions to be more explicit about nullable values.
Component Styling Scope: styled-jsx only applies styles to the component where they're defined, which presented challenges with conditionally rendered content. Solved by either:

  • Creating smaller styled components
  • Using styled-jsx's :global() selector when necessary
  • Wrapping dynamic content in properly styled containers

@alaa-yahia alaa-yahia force-pushed the DHIS2-16603-replace-the-hocs branch from f2e592b to b20937f Compare March 2, 2025 14:57
Copy link

sonarqubecloud bot commented Mar 2, 2025

Quality Gate Failed Quality Gate failed

Failed conditions
36 New issues
C Reliability Rating on New Code (required ≥ A)
35 New Code Smells (required ≤ 0)
1 New Bugs (required ≤ 0)

See analysis details on SonarQube Cloud

Catch issues before they fail your Quality Gate with our IDE extension SonarQube for IDE

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.

1 participant