accounts-frontend/packages/app/components/auth
2020-05-24 02:08:24 +03:00
..
acceptRules Change prettier rules 2020-05-24 02:08:24 +03:00
activation Change prettier rules 2020-05-24 02:08:24 +03:00
appInfo Change prettier rules 2020-05-24 02:08:24 +03:00
authError Change prettier rules 2020-05-24 02:08:24 +03:00
chooseAccount Change prettier rules 2020-05-24 02:08:24 +03:00
finish Change prettier rules 2020-05-24 02:08:24 +03:00
forgotPassword Change prettier rules 2020-05-24 02:08:24 +03:00
login Change prettier rules 2020-05-24 02:08:24 +03:00
mfa Change prettier rules 2020-05-24 02:08:24 +03:00
password Change prettier rules 2020-05-24 02:08:24 +03:00
permissions Change prettier rules 2020-05-24 02:08:24 +03:00
recoverPassword Change prettier rules 2020-05-24 02:08:24 +03:00
register Change prettier rules 2020-05-24 02:08:24 +03:00
resendActivation Change prettier rules 2020-05-24 02:08:24 +03:00
actions.test.ts Change prettier rules 2020-05-24 02:08:24 +03:00
actions.ts Change prettier rules 2020-05-24 02:08:24 +03:00
auth.scss Change prettier rules 2020-05-24 02:08:24 +03:00
AuthTitle.tsx Change prettier rules 2020-05-24 02:08:24 +03:00
BaseAuthBody.tsx Change prettier rules 2020-05-24 02:08:24 +03:00
Context.tsx Change prettier rules 2020-05-24 02:08:24 +03:00
factory.tsx Change prettier rules 2020-05-24 02:08:24 +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 Change prettier rules 2020-05-24 02:08:24 +03: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 Change prettier rules 2020-05-24 02:08:24 +03: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