Authentication
JWT
For React

How to use JWT authentication system ?

Note: The onion template uses the firebase authentication system by default.

  • Step-1 : Open the src/App.jsx file then import the AuthProvider from contexts/jwtContext and wrap the App component with it.

  • Step-2 : Open the src/hooks/useAuth.js file. Thereupon, import the AuthContext from contexts/jwtContext then pass AuthContext as a argument in useContext hook.

  • Step-3 : Call the useAuth hook inside AuthGuard, GuestGuard components, Login, Register page etc.

Step 1


_11
import { AuthProvider } from "contexts/jwtContext";
_11
_11
const App = () => {
_11
return (
_11
<AuthProvider>
_11
<Component />
_11
</AuthProvider>
_11
);
_11
};
_11
_11
export default App;

Step 2


_10
import { AuthContext } from "contexts/jwtContext";
_10
_10
const useAuth = () => useContext(AuthContext);
_10
export default useAuth;

Step 3

login.jsx

_17
import useAuth from "hooks/useAuth";
_17
_17
const Login = () => {
_17
const { login } = useAuth();
_17
_17
const onLogin = () => {
_17
login("example@email.com", "pass123"); // Login crediential
_17
};
_17
_17
return (
_17
<Box>
_17
<Button onClick={onLogin}>Login</Button>
_17
</Box>
_17
);
_17
};
_17
_17
export default Login;

profile.jsx

_18
import useAuth from "hooks/useAuth";
_18
_18
const Profile = () => {
_18
const { user, isAuthenticated, logout } = useAuth();
_18
_18
if (isAuthenticated && user) {
_18
return (
_18
<Box>
_18
<Typography>Email : {user.email}</Typography>
_18
<Button onClick={logout}>logout</Button>
_18
</Box>
_18
);
_18
}
_18
_18
return <Redirect to="/login" />;
_18
};
_18
_18
export default Profile;

How to delete from app ?

  • Delete the jwtContext.jsx file from src/contexts folder
  • In addition, if you use this, remove it from the src/hooks/useAuth.js file.