@hoangmnsd/gatsby-theme-amplify-cognito
v1.1.5
Published
A wrapper theme to use Cognito (Amplify AWS) with your Gatsby website.
Downloads
3
Maintainers
Readme
Gatsby Theme Cognito with Amplify
A wrapper theme to use Cognito (Amplify AWS) with your Gatsby website.
Installation
To use this theme in your Gatsby sites, follow these instructions:
Install the theme
npm install --save @hoangmnsd/gatsby-theme-amplify-cognito
Set up a Cognito User Pool in AWS and create an App Client. Ensure that the App client secret setting is set to no secret key.
NOTE: When using AWS Console, uncheck Generate secret client on App client settings.
Add the theme to your
gatsby-config.js
. See example below:module.exports = { plugins: [ { resolve: `@hoangmnsd/gatsby-theme-amplify-cognito`, options: { region: "us-east-1", // replace with region of user pool userPoolId: 'us-east-1_OZIxeIDqs', // replace with user pool id identityPoolId: "23ab3gt81t2sanvfg84mh7xnpp", // replace with identity pool associated with user pool userPoolWebClientId: "us-east-1:bc89f200-299e-4269-8fd2-7caf9e8b0547", // replace with app client id // optional, array of paths that won't be authenticated. Don't use `doNotAuthenticate` and `doAuthenticate` at the same time doNotAuthenticate: ["/", "/page-2/"], // optional, array of paths that will be authenticated. Don't use `doNotAuthenticate` and `doAuthenticate` at the same time // doAuthenticate: ["/page-3", "/page-4/"], }, }, ], }
Populate the
userPoolId
with the Pool Id found under General settings in User Pools, anduserPoolWebClientId
with the App client ID found under App client settings.Populate the
identityPoolId
with the id of the identity pool associated with your user pool.NOTE: IF you want to use AWS Service Objects, you will need to setup an identity pool and configure this setting. See Federated Identities.
(Optional)
Configure any paths that don't require authentication by populating
doNotAuthenticate
with an array of paths. Make sure to append/
at the end as paths in Gatsby are always trailed with slashes. Don't usedoNotAuthenticate
anddoAuthenticate
at the same timeConfigure any paths that do require authentication by populating
doAuthenticate
with an array of paths. Make sure to append/
at the end as paths in Gatsby are always trailed with slashes. Don't usedoNotAuthenticate
anddoAuthenticate
at the same time
Each page is passed a prop of
authState
andauthData
which contain the details of the user session.Use the components to create your page. Example:
import { SignIn, SignOut } from "@hoangmnsd/gatsby-theme-amplify-cognito"; const Homepage = ({ authState, authData }) => { return ( <section> {authState !== "signedIn" ? ( <SignIn authState={authState} /> ) : ( <> <h1>Hello {authData.username}</h1> <SignOut /> </> )} </section> ); };
Start your site
gatsby develop
Credits
Forked from the awesome and original work of https://github.com/webriq/gatsby-theme-amplify-cognito.