-
Notifications
You must be signed in to change notification settings - Fork 49
fix(web): prevent long text overflow #1632
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
Conversation
WalkthroughThe recent updates introduce several styling and functional enhancements across various components, especially in managing text layout and responsive design. The changes help ensure text elements wrap and truncate correctly, provide better handling of long content, and make the overall UI more consistent and user-friendly. Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
✅ Deploy Preview for kleros-v2-university ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for kleros-v2 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for kleros-v2-neo ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 6
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (7)
- web/src/components/DisputePreview/Alias.tsx (1 hunks)
- web/src/components/DisputePreview/DisputeContext.tsx (2 hunks)
- web/src/components/DisputeView/DisputeInfo/DisputeInfoCard.tsx (2 hunks)
- web/src/components/DisputeView/DisputeInfo/DisputeInfoList.tsx (2 hunks)
- web/src/components/Field.tsx (1 hunks)
- web/src/pages/Cases/CaseDetails/Appeal/OptionCard.tsx (2 hunks)
- web/src/pages/Cases/CaseDetails/Voting/VotingHistory.tsx (2 hunks)
Files skipped from review due to trivial changes (2)
- web/src/components/DisputePreview/Alias.tsx
- web/src/components/Field.tsx
Additional context used
Biome
web/src/pages/Cases/CaseDetails/Appeal/OptionCard.tsx
[error] 87-91: This else clause can be omitted because previous branches break early.
(lint/style/noUselessElse)
[error] 92-93: This else clause can be omitted because previous branches break early.
Unsafe fix: Omit the else clause.
(lint/style/noUselessElse)
[error] 93-93: This else clause can be omitted because previous branches break early.
(lint/style/noUselessElse)
[error] 100-100: Unnecessary use of boolean literals in conditional expression.
Simplify your code by directly assigning the result without using a ternary operator.
If your goal is negation, you may use the logical NOT (!) or double NOT (!!) operator for clearer and concise code.
Check for more details about NOT operator.
Unsafe fix: Remove the conditional expression with(lint/complexity/noUselessTernary)
Additional comments not posted (7)
web/src/pages/Cases/CaseDetails/Appeal/OptionCard.tsx (2)
50-56
: Improved text overflow handling inBlockLabel
.The addition of
text-overflow: ellipsis
and related properties improve the handling of text overflow. This is a good practice for UI elements where text length can vary.
41-48
: Styling adjustments inTextContainer
.The changes to
TextContainer
introduce a more flexible and responsive layout. Ensure that these changes are tested across different screen sizes for consistency.web/src/components/DisputePreview/DisputeContext.tsx (3)
19-19
: Improved text handling inStyledH1
.The addition of
word-wrap: break-word
inStyledH1
is a good practice to prevent text overflow issues in titles.
25-25
: Improved text handling inQuestionAndDescription
.The addition of
word-wrap: break-word
inQuestionAndDescription
helps in managing long text segments effectively.
52-54
: Ensure consistent styling inAnswer
.The addition of
max-width: 100%
in thelabel
withinAnswer
helps prevent text overflow. Ensure this style is consistently applied across similar components.web/src/pages/Cases/CaseDetails/Voting/VotingHistory.tsx (2)
48-51
: Improved text handling inStyledReactMarkDown
.The addition of
word-wrap: break-word
inStyledReactMarkDown
is a good practice to manage long markdown content effectively.
87-89
: Handle error states elegantly inStyledReactMarkDown
.The logic to display error messages using
StyledReactMarkDown
is a good practice, ensuring that error states are handled gracefully.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (2)
- web/src/components/DisputeView/DisputeInfo/DisputeInfoCard.tsx (2 hunks)
- web/src/components/DisputeView/DisputeInfo/DisputeInfoList.tsx (2 hunks)
Additional comments not posted (3)
web/src/components/DisputeView/DisputeInfo/DisputeInfoList.tsx (2)
1-1
: Ensure proper use of added imports.The import of
useMemo
is appropriate given its usage in the file to optimize the rendering ofFieldItems
.
46-54
: UseuseMemo
effectively to optimize component rendering.The use of
useMemo
here is correct and should help in preventing unnecessary re-renders ofFieldItems
. However, ensure that the dependencies are correct and minimal to avoid excessive memoization.web/src/components/DisputeView/DisputeInfo/DisputeInfoCard.tsx (1)
55-64
: Ensure consistent styling and functionality inStyledField
.The introduction of
StyledField
withmax-width: 100%
and ellipsis overflow is aligned with the PR's objectives to improve text responsiveness and prevent overflow. Ensure that these styles do not conflict with existing styles.
Code Climate has analyzed commit 3a41d0b and detected 1 issue on this pull request. Here's the issue category breakdown:
View more on Code Climate. |
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- web/src/components/Field.tsx (1 hunks)
Files skipped from review as they are similar to previous changes (1)
- web/src/components/Field.tsx
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Before and After
Folding Phones (samsung Z fold 5 front)
PR-Codex overview
The focus of this PR is to enhance text wrapping and styling in various components for better readability and user experience.
Detailed summary
flex-shrink: 0
andmax-width: 100%
to improve layout inField.tsx
andDisputePreview/Alias.tsx
DisputeContext.tsx
andOptionCard.tsx
max-width: 100%
and improved text truncation inVotingHistory.tsx
andDisputeInfoCard.tsx
DisputeInfoList.tsx
for better text truncation and display as a listSummary by CodeRabbit