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(auth-react): Remove auth-react library in favour of bff #17102

Merged
merged 2 commits into from
Dec 10, 2024

Conversation

snaerth
Copy link
Member

@snaerth snaerth commented Dec 2, 2024

Remove auth-react library in favour of bff

What

Remove auth-react library

Why

Bff auth system is replacing auth

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

  • Chores

    • Removed various configuration files related to Babel, ESLint, Jest, and TypeScript from the authentication library.
    • Deleted the README.md documentation for the authentication library, which provided usage and setup instructions.
    • Removed the alias for the @island.is/auth/react module from the Storybook configuration.
    • Eliminated path mapping for @island.is/auth/react in the TypeScript base configuration.
  • Bug Fixes

    • The removal of outdated configurations may improve clarity and prevent potential issues in builds and tests.

@snaerth snaerth requested review from a team as code owners December 2, 2024 13:22
@snaerth snaerth requested a review from disaerna December 2, 2024 13:22
Copy link
Contributor

coderabbitai bot commented Dec 2, 2024

Walkthrough

The changes in this pull request involve the deletion of several configuration and implementation files related to the @island.is/auth/react library. This includes Babel and ESLint configuration files, TypeScript configuration files, and various components and utilities that were part of the authentication system. The removal of these files indicates a significant restructuring or deprecation of the authentication module within the project.

Changes

File Path Change Summary
libs/auth/react/.babelrc Configuration file removed.
libs/auth/react/.eslintrc.json Configuration file removed.
libs/auth/react/README.md Documentation file removed.
libs/auth/react/babel-jest.config.json Configuration file removed.
libs/auth/react/jest.config.ts Configuration file removed.
libs/auth/react/project.json Configuration file removed.
libs/auth/react/src/index.ts Entry point file removed, including all exports for authentication components and utilities.
libs/auth/react/src/lib/AuthSettings.spec.ts Unit tests for mergeAuthSettings function removed.
libs/auth/react/src/lib/AuthSettings.ts Interface and function related to authentication settings removed.
libs/auth/react/src/lib/auth/Auth.css.ts CSS style constant removed.
libs/auth/react/src/lib/auth/Auth.state.ts Authentication state management types and logic removed.
libs/auth/react/src/lib/auth/AuthContext.tsx Authentication context implementation removed.
libs/auth/react/src/lib/auth/AuthErrorScreen.tsx Error screen component for authentication removed.
libs/auth/react/src/lib/auth/AuthProvider.mocked.spec.tsx Unit tests for AuthProvider removed.
libs/auth/react/src/lib/auth/AuthProvider.spec.tsx Unit tests for AuthProvider removed.
libs/auth/react/src/lib/auth/AuthProvider.tsx Authentication provider component removed.
libs/auth/react/src/lib/auth/CheckIdpSession.tsx Session monitoring component removed.
libs/auth/react/src/lib/auth/MockedAuthProvider.spec.tsx Unit tests for MockedAuthProvider removed.
libs/auth/react/src/lib/auth/MockedAuthProvider.tsx Mocked authentication provider component removed.
libs/auth/react/src/lib/authLink.ts Apollo Client link for setting authorization header removed.
libs/auth/react/src/lib/createMockUser.ts Functionality for creating mock user objects removed.
libs/auth/react/src/lib/getAccessToken.spec.ts Unit tests for getAccessToken function removed.
libs/auth/react/src/lib/getAccessToken.ts Functionality for managing access tokens removed.
libs/auth/react/src/lib/userManager.ts User authentication management functionality removed.
libs/auth/react/src/lib/utils/tinyMemoize.spec.ts Unit tests for tinyMemoize function removed.
libs/auth/react/src/lib/utils/tinyMemoize.ts Utility function for memoizing async calls removed.
libs/auth/react/src/lib/utils/toStringScope.spec.ts Unit tests for toStringScope function removed.
libs/auth/react/src/lib/utils/toStringScope.ts Utility function for converting scope arrays to strings removed.
libs/auth/react/test/setup.ts Import statement for disabling runtime styles removed.
libs/auth/react/tsconfig.json TypeScript configuration file removed.
libs/auth/react/tsconfig.lib.json TypeScript library configuration file removed.
libs/auth/react/tsconfig.spec.json TypeScript testing configuration file removed.
libs/island-ui/storybook/config/main.ts Webpack alias for @island.is/auth/react removed.
tsconfig.base.json Path mapping for @island.is/auth/react removed.

Suggested labels

automerge, high priority

Suggested reviewers

  • snaerseljan
  • magnearun

📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 4137b1f and ce753c3.

📒 Files selected for processing (34)
  • libs/auth/react/.babelrc (0 hunks)
  • libs/auth/react/.eslintrc.json (0 hunks)
  • libs/auth/react/README.md (0 hunks)
  • libs/auth/react/babel-jest.config.json (0 hunks)
  • libs/auth/react/jest.config.ts (0 hunks)
  • libs/auth/react/project.json (0 hunks)
  • libs/auth/react/src/index.ts (0 hunks)
  • libs/auth/react/src/lib/AuthSettings.spec.ts (0 hunks)
  • libs/auth/react/src/lib/AuthSettings.ts (0 hunks)
  • libs/auth/react/src/lib/auth/Auth.css.ts (0 hunks)
  • libs/auth/react/src/lib/auth/Auth.state.ts (0 hunks)
  • libs/auth/react/src/lib/auth/AuthContext.tsx (0 hunks)
  • libs/auth/react/src/lib/auth/AuthErrorScreen.tsx (0 hunks)
  • libs/auth/react/src/lib/auth/AuthProvider.mocked.spec.tsx (0 hunks)
  • libs/auth/react/src/lib/auth/AuthProvider.spec.tsx (0 hunks)
  • libs/auth/react/src/lib/auth/AuthProvider.tsx (0 hunks)
  • libs/auth/react/src/lib/auth/CheckIdpSession.tsx (0 hunks)
  • libs/auth/react/src/lib/auth/MockedAuthProvider.spec.tsx (0 hunks)
  • libs/auth/react/src/lib/auth/MockedAuthProvider.tsx (0 hunks)
  • libs/auth/react/src/lib/authLink.ts (0 hunks)
  • libs/auth/react/src/lib/createMockUser.ts (0 hunks)
  • libs/auth/react/src/lib/getAccessToken.spec.ts (0 hunks)
  • libs/auth/react/src/lib/getAccessToken.ts (0 hunks)
  • libs/auth/react/src/lib/userManager.ts (0 hunks)
  • libs/auth/react/src/lib/utils/tinyMemoize.spec.ts (0 hunks)
  • libs/auth/react/src/lib/utils/tinyMemoize.ts (0 hunks)
  • libs/auth/react/src/lib/utils/toStringScope.spec.ts (0 hunks)
  • libs/auth/react/src/lib/utils/toStringScope.ts (0 hunks)
  • libs/auth/react/test/setup.ts (0 hunks)
  • libs/auth/react/tsconfig.json (0 hunks)
  • libs/auth/react/tsconfig.lib.json (0 hunks)
  • libs/auth/react/tsconfig.spec.json (0 hunks)
  • libs/island-ui/storybook/config/main.ts (0 hunks)
  • tsconfig.base.json (0 hunks)
💤 Files with no reviewable changes (34)
  • libs/auth/react/test/setup.ts
  • libs/auth/react/src/lib/auth/Auth.css.ts
  • libs/auth/react/project.json
  • libs/auth/react/src/lib/utils/toStringScope.ts
  • libs/auth/react/tsconfig.lib.json
  • libs/auth/react/jest.config.ts
  • libs/auth/react/src/lib/utils/tinyMemoize.spec.ts
  • libs/auth/react/src/lib/authLink.ts
  • libs/auth/react/.babelrc
  • libs/auth/react/src/lib/AuthSettings.spec.ts
  • libs/auth/react/.eslintrc.json
  • libs/auth/react/tsconfig.json
  • libs/auth/react/babel-jest.config.json
  • libs/auth/react/src/lib/utils/toStringScope.spec.ts
  • libs/auth/react/tsconfig.spec.json
  • libs/auth/react/src/lib/auth/AuthErrorScreen.tsx
  • libs/auth/react/src/lib/auth/MockedAuthProvider.tsx
  • libs/auth/react/src/lib/createMockUser.ts
  • libs/auth/react/README.md
  • libs/auth/react/src/lib/auth/MockedAuthProvider.spec.tsx
  • libs/island-ui/storybook/config/main.ts
  • libs/auth/react/src/lib/utils/tinyMemoize.ts
  • libs/auth/react/src/lib/auth/AuthProvider.mocked.spec.tsx
  • libs/auth/react/src/index.ts
  • libs/auth/react/src/lib/auth/CheckIdpSession.tsx
  • libs/auth/react/src/lib/userManager.ts
  • libs/auth/react/src/lib/auth/AuthProvider.tsx
  • libs/auth/react/src/lib/getAccessToken.ts
  • libs/auth/react/src/lib/auth/AuthProvider.spec.tsx
  • tsconfig.base.json
  • libs/auth/react/src/lib/AuthSettings.ts
  • libs/auth/react/src/lib/auth/AuthContext.tsx
  • libs/auth/react/src/lib/getAccessToken.spec.ts
  • libs/auth/react/src/lib/auth/Auth.state.ts

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 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.

@snaerth snaerth changed the title remove(auth-react): Remove auth-react library in favour of bff fix(auth-react): Remove auth-react library in favour of bff Dec 2, 2024
Copy link

codecov bot commented Dec 2, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 35.72%. Comparing base (83ba8fa) to head (eb3c244).
Report is 1 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main   #17102      +/-   ##
==========================================
- Coverage   35.76%   35.72%   -0.04%     
==========================================
  Files        6931     6931              
  Lines      147949   148388     +439     
  Branches    42167    42392     +225     
==========================================
+ Hits        52917    53019     +102     
- Misses      95032    95369     +337     
Flag Coverage Δ
air-discount-scheme-backend 48.17% <ø> (ø)
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% <ø> (-0.01%) ⬇️
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% <ø> (ø)
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.43% <ø> (ø)
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.99% <ø> (ø)
localization 10.15% <ø> (ø)
logging 58.02% <ø> (ø)
message-queue 67.05% <ø> (-0.71%) ⬇️
nest-audit 65.78% <ø> (ø)
nest-aws 51.93% <ø> (ø)
nest-config 76.38% <ø> (ø)
nest-core 53.16% <ø> (ø)
nest-feature-flags 51.00% <ø> (+0.62%) ⬆️
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.76% <ø> (ø)
regulations 16.78% <ø> (ø)
residence-history 85.00% <ø> (ø)
services-auth-admin-api 52.55% <ø> (ø)
services-auth-delegation-api 58.44% <ø> (ø)
services-auth-ids-api 52.55% <ø> (+0.01%) ⬆️
services-auth-public-api 49.40% <ø> (ø)
services-sessions 65.35% <ø> (ø)
services-university-gateway 49.42% <ø> (ø)
services-user-notification 46.55% <ø> (-0.03%) ⬇️
services-user-profile 56.89% <ø> (-0.09%) ⬇️
shared-components 30.08% <ø> (ø)
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.

see 23 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 83ba8fa...eb3c244. Read the comment docs.

@datadog-island-is
Copy link

Datadog Report

All test runs 11afc2e 🔗

98 Total Test Services: 0 Failed, 90 Passed
🔻 Test Sessions change in coverage: 1 decreased (-0.46%), 2 increased, 197 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 21.6s N/A Link
air-discount-scheme-web 0 0 0 2 0 6.95s N/A Link
api 0 0 0 4 0 2.49s N/A Link
api-catalogue-services 0 0 0 23 0 8.94s N/A Link
api-domains-air-discount-scheme 0 0 0 6 0 16.13s N/A Link
api-domains-assets 0 0 0 3 0 9.49s N/A Link
api-domains-auth-admin 0 0 0 18 0 10.19s N/A Link
api-domains-communications 0 0 0 5 0 29.47s N/A Link
api-domains-criminal-record 0 0 0 5 0 8.23s N/A Link
api-domains-driving-license 0 0 0 23 0 27.68s N/A Link

🔻 Code Coverage Decreases vs Default Branch (1)

  • nest-feature-flags - jest 56.48% (-0.46%) - Details

@disaerna disaerna removed their request for review December 5, 2024 10:33
@snaerth snaerth added the automerge Merge this PR as soon as all checks pass label Dec 10, 2024
@kodiakhq kodiakhq bot merged commit 1093822 into main Dec 10, 2024
266 checks passed
@kodiakhq kodiakhq bot deleted the remove-project-auth-react branch December 10, 2024 15:55
thorhildurt pushed a commit that referenced this pull request Dec 11, 2024
Co-authored-by: snaerseljan <[email protected]>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
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.

4 participants