-
Notifications
You must be signed in to change notification settings - Fork 7.6k
fix: fix LoginExpiredModal
in some cases, message
may be obscured
#6086
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
|
WalkthroughA filtering mechanism has been added to the login expired modal component to exclude elements with specific CSS classes ('ant-message' and 'loading') when calculating the maximum z-index on the page. This is achieved by introducing a helper function that checks for these classes and updating the z-index calculation function to skip such elements, ensuring they do not affect the modal's stacking context. Changes
Suggested reviewers
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
packages/effects/common-ui/src/ui/authentication/login-expired-modal.vue (1)
38-46
: Use English for code comments for consistencyThe added comment is in Chinese while the rest of the codebase appears to be in English. Consider translating it to maintain consistency across the codebase.
-/** - * 排除ant-message和loading:9999的z-index - */ +/** + * Exclude ant-message and loading elements (with z-index:9999) from z-index calculation + */The implementation of the exclusion list and helper function looks good and will effectively prevent these specific elements from influencing the modal's z-index.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
packages/effects/common-ui/src/ui/authentication/login-expired-modal.vue
(2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (8)
- GitHub Check: Lint (ubuntu-latest)
- GitHub Check: Analyze (javascript-typescript)
- GitHub Check: Test (windows-latest)
- GitHub Check: Check (ubuntu-latest)
- GitHub Check: Lint (windows-latest)
- GitHub Check: Check (windows-latest)
- GitHub Check: post-update (ubuntu-latest)
- GitHub Check: post-update (windows-latest)
🔇 Additional comments (1)
packages/effects/common-ui/src/ui/authentication/login-expired-modal.vue (1)
57-61
: Good fix that prevents the modal from being obscuredThe additional condition to exclude specific elements when calculating the maximum z-index will resolve the issue where the login expired modal message was being obscured. This is a focused fix that addresses the specific problem described in the PR.
A minor readability improvement could be to extract the condition into a single expression:
if ( zIndex && !Number.isNaN(Number.parseInt(zIndex)) && - !isZIndexExcludeClass(element) + !isZIndexExcludeClass(element) ) {The solution correctly filters out elements that should not influence the modal's z-index calculation.
Trigger condition
Summary by CodeRabbit