accounts-frontend/packages/app/components/auth
2024-08-28 13:07:23 +02:00
..
acceptRules Allow account deletion from the user agreement page 2020-08-01 01:49:30 +03:00
activation Some auth storybooks progress [skip ci] 2020-08-01 01:49:30 +03:00
appInfo The UI is adapted to the RTL layout 2021-03-26 04:19:04 +01:00
authError Change prettier rules 2020-05-24 02:08:24 +03:00
chooseAccount Fix type and lint errors after upgrading corresponding dependencies 2021-07-13 22:40:31 +02:00
finish Rework Button component to pass its label via children content 2020-07-22 14:20:10 +03:00
forgotPassword The UI is adapted to the RTL layout 2021-03-26 04:19:04 +01:00
login Fix labels on auth forms 2020-07-24 19:19:19 +03:00
mfa Fix labels on auth forms 2020-07-24 19:19:19 +03:00
password Fix labels on auth forms 2020-07-24 19:19:19 +03:00
permissions The UI is adapted to the RTL layout 2021-03-26 04:19:04 +01:00
recoverPassword Fix labels on auth forms 2020-07-24 19:19:19 +03:00
register Fix labels on auth forms 2020-07-24 19:19:19 +03:00
resendActivation Fix labels on auth forms 2020-07-24 19:19:19 +03:00
actions.test.ts Change prettier rules 2020-05-24 02:08:24 +03:00
actions.ts Improve typings for AuthFlow and mark some future TODOs 2024-08-28 13:07:23 +02:00
auth.scss Change prettier rules 2020-05-24 02:08:24 +03:00
Auth.story.tsx Some auth storybooks progress [skip ci] 2020-08-01 01:49:30 +03:00
AuthTitle.tsx Change prettier rules 2020-05-24 02:08:24 +03:00
BaseAuthBody.tsx chore(build): enable support for ts declare fields 2020-10-11 21:30:50 +03:00
Context.tsx Split the AccountSwitcher component on 2 independent implementations 2020-10-26 22:09:01 +03:00
factory.tsx Fix labels on auth forms 2020-07-24 19:19:19 +03:00
helpLinks.scss Change prettier rules 2020-05-24 02:08:24 +03:00
index.ts Fix babel warnings about ts types re-export 2019-12-25 12:54:05 +02:00
PanelTransition.tsx Improve typings for AuthFlow and mark some future TODOs 2024-08-28 13:07:23 +02:00
README.md Change prettier rules 2020-05-24 02:08:24 +03:00
reducer.test.ts Change prettier rules 2020-05-24 02:08:24 +03:00
reducer.ts Allow escape from activation step back to login page 2021-03-28 17:50:32 +02:00
RejectionLink.tsx Change prettier rules 2020-05-24 02:08:24 +03:00

How to add new auth panel

To add new panel you need to:

  • create panel component at components/auth/[panelId]
  • add new context in components/auth/PanelTransition
  • connect component to router in pages/auth/AuthPage
  • add new state to services/authFlow and coresponding test to tests/services/authFlow
  • connect state to authFlow. Update services/authFlow/AuthFlow.test and services/authFlow/AuthFlow.functional.test (the last one for some complex flow)
  • add new actions to components/auth/actions and api endpoints to services/api
  • whatever else you need

Commit id with example implementation: f4d315c