[WEB-3194]fix: stickies modal close while redirection#6440
[WEB-3194]fix: stickies modal close while redirection#6440sriramveeraghanta merged 2 commits intopreviewfrom
Conversation
WalkthroughThe pull request introduces a new type definition Changes
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms (2)
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 using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
web/core/components/stickies/layout/stickies-truncated.tsx (1)
41-41: Consider adding error boundary for handleClose.While the implementation is correct, consider adding a null check before calling
handleCloseto prevent potential runtime errors if the prop is undefined.- onClick={handleClose} + onClick={() => handleClose?.()}
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
web/core/components/stickies/layout/stickies-truncated.tsx(2 hunks)web/core/components/stickies/modal/stickies.tsx(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (2)
- GitHub Check: Analyze (javascript)
- GitHub Check: Analyze (python)
🔇 Additional comments (3)
web/core/components/stickies/layout/stickies-truncated.tsx (2)
13-15: LGTM! Well-structured type definition.The
StickiesTruncatedPropstype is properly defined with an optionalhandleClosemethod.
17-18: LGTM! Clean props implementation.The component correctly implements the observer pattern and properly destructures the props.
web/core/components/stickies/modal/stickies.tsx (1)
70-70: LGTM! Proper prop passing.The
handleCloseprop is correctly passed to theStickiesTruncatedcomponent, which implements the fix for modal closing during redirection.
| className={cn( | ||
| "gap-1 w-full text-custom-primary-100 text-sm font-medium transition-opacity duration-300 bg-custom-background-90/20" | ||
| )} | ||
| onClick={handleClose} |
There was a problem hiding this comment.
handleClose is optional here so can you render it conditionally?
Description
This update fixes the modal close issue in stickies while redirecting.
Type of Change
References
WEB-3194
Summary by CodeRabbit
New Features
StickiesTruncatedcomponent with a newhandleCloseprop.StickiesandStickiesTruncatedcomponents, allowing for better handling of close actions.Improvements
StickiesTruncatedcomponent.