React Sanctum
React Sanctum package provides an easy way to authenticate your React application with Laravel Sanctum.
- Easily hook up your React app to Laravel Sanctum
- Works with both hooks and class components
- Built in support for two factor authentication with Laravel Fortify
- Just one dependency: axios
Usage
Install from NPM
npm i react-sanctum
Wrap your application in an <Sanctum>
component
Example
You can then use the useSanctum()
hook to get authentication status, user data and sanctum related
methods in any component.
Or use the withSanctum()
higher-order component to get these same values.
You can also directly consume the Sanctum context by importing SanctumContext
.
The useSanctum
hook and the withSanctum
HOC give you access to the SanctumContext
, which contains the following
data and methods:
Description | |
---|---|
user |
Object your API returns with user data |
authenticated |
Boolean, or null if authentication has not yet been checked |
signIn() |
Accepts (email, password, remember?) , returns a promise, resolves with the user data. |
signIn() |
Accepts (email, password, remember?) , returns a promise, resolves with {twoFactor: boolean, signedIn: boolean, user: {}} . |
signOut() |
Returns a promise |
setUser() |
Accepts (user, authenticated?) , allows you to manually set the user object and optionally its authentication status (boolean). |
twoFactorChallenge() |
Accepts (code, recovery?) , returns a promise, resolves with the user object. |
checkAuthentication() |
Returns the authentication status. If it's null, it will ask the server and update authenticated . |
Setup
All URLS in the config are required. These need to be created in your Laravel app.
react-sanctum automatically checks if the user is signed in when the the <Sanctum>
component gets mounted. If you don't want this, and want to manually use the
checkAuthentication
function later, set checkOnInit
to false
like so:
Handling registration
Methods for signIn and signOut are provided by this library. Registration is not included as there seem to be many ways
people handle registration flows.
If you want to sign in your user after registration, there's an easy way to do this. First, make sure the endpoint you
post the registration data to signs in the user (Auth::guard()->login(...)
) and have it return the user object to the
front-end.
In your front-end you can then pass this user object into the setUser()
function, et voilĂ , your new user has been
signed in.
For example:
Two factor authentication
This package supports two factor authentication using Laravel Fortify out of the box.
-
Install Laravel Fortify using the following instructions
https://laravel.com/docs/8.x/fortify#installation -
Add the
TwoFactorAuthenticable
trait to the User modal
https://laravel.com/docs/8.x/fortify#two-factor-authentication -
Make sure the
two-factor-challenge
route is included in theconfig/cors.php
file.
Example for implementation:
Axios
Quick tip for people using axios: react-sanctum uses Axios for making requests to your server. If your project is also
using axios, make sure to set
axios.defaults.withCredentials = true;
. That way axios will authenticate your requests to the server properly.