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

fix(react-spa-bff): Enhance broadcaster with subpath handling #17212

Merged
merged 8 commits into from
Dec 12, 2024

Conversation

snaerth
Copy link
Member

@snaerth snaerth commented Dec 11, 2024

Enhance broadcaster with bffBasePath handling

What

Add subpath to NewSessionEvent and LogoutEvent types. Update BffProvider to include applicationBasePath in postMessage dependencies. Modify event handling to only act on events matching the current subpath,
ensuring proper session management across multiple tabs/windows/iframes.

Checklist:

  • I have performed a self-review of my own code
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • Formatting passes locally with my changes
  • I have rebased against main before asking for a review

Summary by CodeRabbit

  • New Features
    • Enhanced event handling for session management with additional context for subpaths in session and logout events.
    • Improved message broadcasting to include base path information when a new session starts.
  • Bug Fixes
    • Improved responsiveness of the component to changes in application base path, ensuring accurate session management across different contexts.

@snaerth snaerth requested a review from a team as a code owner December 11, 2024 16:01
Copy link
Contributor

coderabbitai bot commented Dec 11, 2024

Warning

Rate limit exceeded

@snaerth has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 22 minutes and 43 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between 281d376 and 0565f06.

📒 Files selected for processing (3)
  • libs/react-spa/bff/src/lib/BffPoller.tsx (2 hunks)
  • libs/react-spa/bff/src/lib/BffProvider.tsx (3 hunks)
  • libs/react-spa/bff/src/lib/bff.hooks.ts (1 hunks)

Walkthrough

The changes in this pull request involve modifications to the BffProvider, bff.hooks.ts, and BffPoller components. The BffProvider now includes a condition to check if the bffBasePath matches the generated BFF URL before executing session-related logic. Additionally, the postMessage function has been updated to include the bffBasePath. In bff.hooks.ts, the NewSessionEvent and LogoutEvent types have been enhanced to include a bffBasePath property. The BffPoller component also includes the bffBasePath in its message handling.

Changes

File Path Change Summary
libs/react-spa/bff/src/lib/BffProvider.tsx Enhanced event handling logic for session management by checking bffBasePath. Updated postMessage to include bffBasePath. Modified useEffect dependency array to include bffUrlGenerator.
libs/react-spa/bff/src/lib/bff.hooks.ts Added bffBasePath property to NewSessionEvent and LogoutEvent types. Updated BffBroadcastEvent type to include the new event types.
libs/react-spa/bff/src/lib/BffPoller.tsx Included bffBasePath in the postMessage call for new user sessions. Modified useEffect dependency array to include bffUrlGenerator.

Possibly related PRs

Suggested labels

automerge, high priority

Suggested reviewers

  • eirikurn
  • magnearun
  • robertaandersen

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?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Experiment)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a 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

🧹 Outside diff range and nitpick comments (1)
libs/react-spa/bff/src/lib/BffProvider.tsx (1)

Line range hint 48-81: Consider documenting the subpath-based event filtering pattern

The implementation introduces a pattern for handling cross-window/tab communication with subpath filtering. Consider documenting this pattern in the component's documentation or README to help other developers understand and consistently implement similar functionality across the application.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 5c8c1b9 and f2df371.

📒 Files selected for processing (2)
  • libs/react-spa/bff/src/lib/BffProvider.tsx (2 hunks)
  • libs/react-spa/bff/src/lib/bff.hooks.ts (1 hunks)
🧰 Additional context used
📓 Path-based instructions (2)
libs/react-spa/bff/src/lib/bff.hooks.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/react-spa/bff/src/lib/BffProvider.tsx (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
🔇 Additional comments (3)
libs/react-spa/bff/src/lib/bff.hooks.ts (1)

67-67: LGTM! Type definitions properly enhanced for subpath handling

The addition of the subpath: string property to both NewSessionEvent and LogoutEvent types aligns well with the PR objectives. This change enables proper subpath-based event filtering across different application contexts.

Also applies to: 72-72

libs/react-spa/bff/src/lib/BffProvider.tsx (2)

48-68: LGTM! Well-documented subpath filtering implementation

The implementation correctly handles subpath-based event filtering with clear comments explaining the cross-origin broadcasting behavior. The timeout for logout handling is properly justified.


78-78: LGTM! Proper effect dependency management

The addition of subpath to the broadcast message and applicationBasePath to the effect dependencies ensures consistent subpath-based event handling across the application.

Also applies to: 81-81

Copy link

codecov bot commented Dec 11, 2024

Codecov Report

Attention: Patch coverage is 8.33333% with 11 lines in your changes missing coverage. Please review.

Project coverage is 35.77%. Comparing base (65b79cc) to head (0565f06).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
libs/react-spa/bff/src/lib/BffProvider.tsx 9.09% 10 Missing ⚠️
libs/react-spa/bff/src/lib/BffPoller.tsx 0.00% 1 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main   #17212   +/-   ##
=======================================
  Coverage   35.76%   35.77%           
=======================================
  Files        6931     6931           
  Lines      147959   147962    +3     
  Branches    42168    42169    +1     
=======================================
+ Hits        52924    52927    +3     
  Misses      95035    95035           
Flag Coverage Δ
air-discount-scheme-backend 48.20% <ø> (ø)
air-discount-scheme-web 0.00% <ø> (ø)
api 3.33% <ø> (ø)
api-catalogue-services 75.81% <ø> (ø)
api-domains-air-discount-scheme 37.90% <ø> (ø)
api-domains-assets 26.71% <ø> (ø)
api-domains-auth-admin 48.49% <ø> (ø)
api-domains-communications 39.42% <ø> (ø)
api-domains-criminal-record 47.92% <ø> (ø)
api-domains-driving-license 44.81% <ø> (ø)
api-domains-education 31.22% <ø> (ø)
api-domains-health-insurance 35.33% <ø> (ø)
api-domains-mortgage-certificate 35.16% <ø> (ø)
api-domains-payment-schedule 42.04% <ø> (ø)
application-api-files 61.73% <ø> (ø)
application-core 76.01% <ø> (ø)
application-system-api 38.75% <ø> (-0.01%) ⬇️
application-template-api-modules 27.80% <ø> (ø)
application-templates-accident-notification 28.93% <ø> (ø)
application-templates-car-recycling 3.12% <ø> (ø)
application-templates-criminal-record 25.78% <ø> (ø)
application-templates-driving-license 18.12% <ø> (ø)
application-templates-estate 13.79% <0.00%> (-0.01%) ⬇️
application-templates-example-payment 24.71% <ø> (ø)
application-templates-financial-aid 14.42% <ø> (ø)
application-templates-general-petition 23.13% <ø> (ø)
application-templates-inheritance-report 6.54% <ø> (ø)
application-templates-marriage-conditions 15.11% <ø> (ø)
application-templates-mortgage-certificate 43.56% <ø> (ø)
application-templates-parental-leave 29.95% <ø> (ø)
application-types 6.57% <ø> (ø)
application-ui-components 1.24% <ø> (ø)
application-ui-shell 22.47% <8.33%> (+0.04%) ⬆️
auth-admin-web 2.43% <ø> (ø)
auth-nest-tools 31.52% <ø> (ø)
auth-shared 75.00% <ø> (ø)
clients-charge-fjs-v2 28.35% <ø> (ø)
clients-driving-license 40.79% <ø> (ø)
clients-driving-license-book 43.83% <ø> (ø)
clients-financial-statements-inao 49.59% <ø> (ø)
clients-license-client 1.26% <ø> (ø)
clients-middlewares 72.89% <ø> (-0.33%) ⬇️
clients-regulations 42.87% <ø> (ø)
clients-rsk-company-registry 31.04% <ø> (ø)
clients-rsk-personal-tax-return 38.32% <ø> (ø)
clients-smartsolutions 12.77% <ø> (ø)
clients-syslumenn 49.41% <ø> (ø)
clients-zendesk 50.46% <ø> (ø)
cms 0.40% <ø> (ø)
cms-translations 38.75% <ø> (ø)
content-search-index-manager 95.65% <ø> (ø)
content-search-toolkit 8.20% <ø> (ø)
contentful-apps 4.72% <ø> (ø)
dokobit-signing 62.10% <ø> (ø)
email-service 60.07% <ø> (ø)
feature-flags 90.76% <ø> (ø)
file-storage 45.86% <ø> (ø)
financial-aid-backend 51.40% <ø> (ø)
financial-aid-shared 17.88% <ø> (ø)
icelandic-names-registry-backend 54.33% <ø> (ø)
infra-nest-server 48.06% <ø> (ø)
infra-tracing 69.63% <ø> (ø)
island-ui-core 30.92% <ø> (ø)
judicial-system-api 20.16% <ø> (ø)
judicial-system-audit-trail 68.94% <ø> (ø)
judicial-system-backend 55.88% <ø> (ø)
judicial-system-formatters 78.28% <ø> (ø)
judicial-system-message 66.47% <ø> (ø)
judicial-system-message-handler 48.23% <ø> (ø)
judicial-system-scheduler 70.97% <ø> (ø)
judicial-system-types 42.22% <ø> (ø)
judicial-system-web 27.89% <ø> (ø)
license-api 42.91% <ø> (-0.06%) ⬇️
localization 10.15% <ø> (ø)
logging 58.02% <ø> (ø)
message-queue 67.76% <ø> (ø)
nest-audit 65.78% <ø> (ø)
nest-aws 51.93% <ø> (ø)
nest-config 76.38% <ø> (ø)
nest-core 53.16% <ø> (ø)
nest-feature-flags 50.37% <ø> (-0.63%) ⬇️
nest-problem 45.64% <ø> (ø)
nest-sequelize 94.44% <ø> (ø)
nest-swagger 51.13% <ø> (ø)
nova-sms 61.42% <ø> (ø)
portals-admin-regulations-admin 1.80% <ø> (ø)
portals-core 19.83% <8.33%> (+0.07%) ⬆️
regulations 16.78% <ø> (ø)
residence-history 85.00% <ø> (ø)
services-auth-admin-api 52.55% <ø> (ø)
services-auth-delegation-api 58.53% <ø> (ø)
services-auth-ids-api 52.52% <ø> (-0.02%) ⬇️
services-auth-public-api 49.40% <ø> (ø)
services-sessions 65.35% <ø> (+0.04%) ⬆️
services-university-gateway 49.42% <ø> (+0.02%) ⬆️
services-user-notification 46.58% <ø> (ø)
services-user-profile 56.98% <ø> (ø)
shared-components 30.06% <0.00%> (-0.03%) ⬇️
shared-form-fields 33.88% <ø> (ø)
shared-mocking 58.64% <ø> (ø)
shared-pii 92.85% <ø> (ø)
shared-problem 87.50% <ø> (ø)
shared-utils 27.69% <ø> (ø)
skilavottord-ws 24.31% <ø> (ø)
web 2.43% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
libs/react-spa/bff/src/lib/bff.hooks.ts 68.42% <ø> (ø)
libs/react-spa/bff/src/lib/BffPoller.tsx 4.16% <0.00%> (-0.19%) ⬇️
libs/react-spa/bff/src/lib/BffProvider.tsx 37.14% <9.09%> (+0.24%) ⬆️

... and 3 files with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 65b79cc...0565f06. Read the comment docs.

@datadog-island-is
Copy link

datadog-island-is bot commented Dec 11, 2024

Datadog Report

All test runs 9890718 🔗

98 Total Test Services: 0 Failed, 90 Passed
🔻 Test Sessions change in coverage: 4 decreased, 1 increased (+0.12%), 195 no change

Test Services
This report shows up to 10 services
Service Name Failed Known Flaky New Flaky Passed Skipped Total Time Code Coverage Change Test Service View
air-discount-scheme-backend 0 0 0 63 0 25.31s N/A Link
air-discount-scheme-web 0 0 0 2 0 8.64s N/A Link
api 0 0 0 4 0 3s N/A Link
api-catalogue-services 0 0 0 23 0 11.65s N/A Link
api-domains-air-discount-scheme 0 0 0 6 0 18.36s N/A Link
api-domains-assets 0 0 0 3 0 11.46s N/A Link
api-domains-auth-admin 0 0 0 18 0 12.18s 1 no change Link
api-domains-communications 0 0 0 5 0 32.86s N/A Link
api-domains-criminal-record 0 0 0 5 0 9.65s N/A Link
api-domains-driving-license 0 0 0 23 0 32.67s N/A Link

🔻 Code Coverage Decreases vs Default Branch (4)

  • nest-feature-flags - jest 56.24% (-0.45%) - Details
  • clients-middlewares - jest 75.6% (-0.19%) - Details
  • shared-components - jest 37.61% (-0.04%) - Details
  • application-templates-estate - jest 20.66% (-0.02%) - Details

Copy link
Contributor

@coderabbitai coderabbitai bot left a 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

🧹 Outside diff range and nitpick comments (1)
libs/react-spa/bff/src/lib/BffPoller.tsx (1)

Line range hint 13-15: Document the subpath handling behavior.

Consider enhancing the component's documentation to explain the subpath handling behavior and its impact on session management across different application paths.

Add to the JSDoc comment:

 * Features:
 * - Polls the backend at a specified interval to fetch user session data.
 * - If the user's session expires or the backend returns an error, it
 *   automatically triggers a sign-in process.
 * - If a change in user session (e.g., a new session ID) is detected, it
 *   broadcasts a message to all open tabs/windows and triggers the provided
 *   `newSessionCb` callback to handle the current tab/window.
+* - Includes application base path in session events to support multiple
+*   applications running on different paths.
 *
 * @param newSessionCb - Callback function to be called when a new session is detected.
 * @param pollIntervalMS - Polling interval in milliseconds. Default is 10000ms.
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between f2df371 and 281d376.

📒 Files selected for processing (3)
  • libs/react-spa/bff/src/lib/BffPoller.tsx (1 hunks)
  • libs/react-spa/bff/src/lib/BffProvider.tsx (3 hunks)
  • libs/react-spa/bff/src/lib/bff.hooks.ts (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
  • libs/react-spa/bff/src/lib/bff.hooks.ts
  • libs/react-spa/bff/src/lib/BffProvider.tsx
🧰 Additional context used
📓 Path-based instructions (1)
libs/react-spa/bff/src/lib/BffPoller.tsx (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
🔇 Additional comments (2)
libs/react-spa/bff/src/lib/BffPoller.tsx (2)

95-103: LGTM! Proper dependency tracking for React hooks.

The addition of bffUrlGenerator to the dependency array is correct as it's used within the effect and ensures proper reactivity when the URL generator changes.


89-89: LGTM! Verify path consistency across different environments.

The addition of bffBasePath aligns with the PR objectives and enables proper subpath handling for session events.

Let's verify the path generation consistency:

@snaerth snaerth added the automerge Merge this PR as soon as all checks pass label Dec 12, 2024
Add subpath to NewSessionEvent and LogoutEvent types. 
Update BffProvider to include applicationBasePath in 
postMessage dependencies. Modify event handling to 
only act on events matching the current subpath, 
ensuring proper session management across multiple 
tabs/windows/iframes.
Add bffBasePath to broadcast messages for logout and new session events. 
Update event handling to match against bffBasePath instead of 
applicationBasePath. This ensures consistent behavior across 
different components and improves clarity in the event 
broadcasting mechanism.
Update BffProvider to use a consistent BFF base path variable. 
This change improves clarity and ensures that broadcast events are 
filtered correctly by matching the BFF base path, preventing 
unintended interactions with other applications on the same 
domain. Adjust dependencies in useEffect hooks to reflect 
the new variable.
Update the BffPoller component to use bffBasePath directly in the 
dependency array of the useEffect hook. This change improves 
readability and ensures that the effect correctly responds to 
changes in theffBasePath variable
Update variable names from `bffBasePath` to `bffBaseUrl` to enhance 
clarity and consistency across the codebase. This change improves 
the understanding of the code explicitly indicating that the 
variable represents a base URL rather than a path. Adjust related 
comments and event types to reflect this change.
@snaerth snaerth force-pushed the fix-bff-broadcaster-subpath branch from 92702c0 to 0565f06 Compare December 12, 2024 09:17
@snaerth snaerth merged commit c561cf8 into main Dec 12, 2024
266 checks passed
@snaerth snaerth deleted the fix-bff-broadcaster-subpath branch December 12, 2024 11:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Merge this PR as soon as all checks pass
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants