Mantis MUI React
v3.2.0
v3.2.0
  • Documentation
  • Pre-requisites
  • Quick Start
  • Folder Structure
  • State Management
  • Internationalization
  • Authentication
    • Switch to Auth0
    • Switch to Firebase
    • Switch to AWS Cognito
  • Axios API Calls
  • Routing
  • Project Configuration
  • Color Presets
  • Theme/Style Configuration
  • How to
    • Login as First Page
    • Remove menu render from Backend
    • Remove Authentication
      • Vite
      • NextJS
  • Figma
  • Integration
    • Seed
    • To Existing Project
    • Comparison
  • Components
    • Avatar
    • BreadCrumb
    • Button
    • Dot
    • Main Card
    • Progress
    • SnackBar
    • Tooltip
    • Transitions
  • Dependencies
    • Vite js
    • Next js
  • Roadmap
  • Support
  • Changelog
  • Mantis Eco System
  • FAQ
Powered by GitBook
On this page
  1. Authentication

Switch to AWS Cognito

PreviousSwitch to FirebaseNextAxios API Calls

Last updated 11 months ago

JWT to AWS Cognito

Set AWS Config

At present, AWS uses a dummy config, so we don't need to change anything, but in actual implementation, you need to set poolId and appClientId in the following file. For more detail refer to AWS here:

.env
...

## AWS

REACT_APP_AWS_POOL_ID=
REACT_APP_AWS_APP_CLIENT_ID=

...

Change AuthProvider

..\src\App.jsx
import { AWSCognitoProvider as AuthProvider } from 'contexts/AWSCognitoContext';

Change auth Hooks

Comment another context in the following file and uncomment Auth0 one.

..\src\hooks\useAuth.js
import AuthContext from 'contexts/AWSCognitoContext';

Copy login code

It's also super simple. We have provided a code that just needs to be replaced.

  • From: src\sections\auth\login\AWSCognitoLogin

  • To: src\sections\auth\auth-forms\AuthLogin.jsx

Copy register code

We have provided a code that just needs to be replaced.

  • From: src\sections\auth\register\AWSCognitoRegister

  • To: src\sections\auth\auth-forms\AuthRegister.jsx

For nextJS, refer next-auth site:

For nextJS, refer next-auth site:

https://aws.amazon.com/cognito/
https://next-auth.js.org/providers/cognito
https://next-auth.js.org/providers/cognito