Merge branch 'auth_stuff' into dev_environment
This commit is contained in:
commit
1b36170a91
3 changed files with 47 additions and 26 deletions
|
|
@ -26,15 +26,13 @@ export default function Login(props: Props) {
|
||||||
const options: RedirectLoginOptions = {
|
const options: RedirectLoginOptions = {
|
||||||
authorizationParams: {} // Initialize here
|
authorizationParams: {} // Initialize here
|
||||||
};
|
};
|
||||||
console.log(location)
|
|
||||||
if (location && location.search) {
|
if (location && location.search) {
|
||||||
let parsed = queryString.parse(location.search);
|
let parsed = queryString.parse(location.search);
|
||||||
|
|
||||||
console.log(parsed.signup)
|
|
||||||
if (parsed.signup === "true") {
|
if (parsed.signup === "true") {
|
||||||
// if (options.authorizationParams) options.authorizationParams.screen_hint = "signup"; // 'signup' tells Auth0 to show the signup tab
|
// if (options.authorizationParams) options.authorizationParams.screen_hint = "signup"; // 'signup' tells Auth0 to show the signup tab
|
||||||
options.authorizationParams!.screen_hint = "signup"; // 'signup' tells Auth0 to show the signup tab
|
options.authorizationParams!.screen_hint = "signup"; // 'signup' tells Auth0 to show the signup tab
|
||||||
console.log(options)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parsed.email && parsed.email !== "") {
|
if (parsed.email && parsed.email !== "") {
|
||||||
|
|
|
||||||
|
|
@ -1,31 +1,55 @@
|
||||||
import { useAuth0 } from "@auth0/auth0-react";
|
import { RedirectLoginOptions, useAuth0 } from "@auth0/auth0-react";
|
||||||
|
import queryString from "query-string";
|
||||||
import { PropsWithChildren, useEffect } from "react";
|
import { PropsWithChildren, useEffect } from "react";
|
||||||
|
|
||||||
interface Props extends PropsWithChildren<any>{
|
interface Props extends PropsWithChildren<any>{
|
||||||
setToken: React.Dispatch<React.SetStateAction<string | undefined>>
|
setToken: React.Dispatch<React.SetStateAction<string | undefined>>
|
||||||
|
prevPath?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function AuthWrapper(props: Props) {
|
export default function AuthWrapper(props: Props) {
|
||||||
const { children, setToken } = props;
|
const { children, setToken } = props;
|
||||||
const { isLoading, loginWithRedirect, isAuthenticated, getAccessTokenSilently } = useAuth0();
|
const { isLoading, loginWithRedirect, isAuthenticated, getAccessTokenSilently } = useAuth0();
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!isAuthenticated && !isLoading) {
|
|
||||||
loginWithRedirect();
|
|
||||||
}
|
|
||||||
}, [isAuthenticated, loginWithRedirect, isLoading]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (isAuthenticated) getAccessTokenSilently().then(t => {
|
|
||||||
if (t.length < 1) {
|
|
||||||
loginWithRedirect()
|
|
||||||
}
|
|
||||||
setToken(t)
|
|
||||||
}).catch(() => {
|
|
||||||
// No token, go back to login
|
|
||||||
loginWithRedirect()
|
|
||||||
})
|
|
||||||
}, [setToken, isAuthenticated])
|
|
||||||
|
|
||||||
return children;
|
useEffect(() => {
|
||||||
|
const url = new URL(window.location.href);
|
||||||
|
|
||||||
|
const isManualLoginPage = url.pathname === "/login";
|
||||||
|
console.log(isManualLoginPage)
|
||||||
|
|
||||||
|
if (isManualLoginPage) {
|
||||||
|
const options: RedirectLoginOptions = {
|
||||||
|
authorizationParams: {} // Initialize here
|
||||||
|
};
|
||||||
|
|
||||||
|
let parsed = queryString.parse(url.search);
|
||||||
|
if (parsed.signup === "true") {
|
||||||
|
options.authorizationParams!.screen_hint = "signup";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (parsed.email && parsed.email !== "") {
|
||||||
|
options.authorizationParams!.login_hint = parsed.email.toString(); // prefill email
|
||||||
|
}
|
||||||
|
console.log(options)
|
||||||
|
loginWithRedirect(options)
|
||||||
|
|
||||||
|
} else if (!isAuthenticated && !isLoading) {
|
||||||
|
loginWithRedirect();
|
||||||
|
}
|
||||||
|
}, [isAuthenticated, loginWithRedirect, isLoading]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isAuthenticated) getAccessTokenSilently().then(t => {
|
||||||
|
if (t.length < 1) {
|
||||||
|
loginWithRedirect()
|
||||||
|
}
|
||||||
|
setToken(t)
|
||||||
|
}).catch(() => {
|
||||||
|
// No token, go back to login
|
||||||
|
loginWithRedirect()
|
||||||
|
})
|
||||||
|
}, [setToken, isAuthenticated])
|
||||||
|
|
||||||
|
return children;
|
||||||
}
|
}
|
||||||
|
|
@ -1,11 +1,10 @@
|
||||||
import { Avatar, Box, Button, Checkbox, Divider, IconButton, ListItemIcon, ListItemText, Menu, MenuItem, PaletteColor, Theme, Tooltip, useTheme } from "@mui/material";
|
import { Avatar, Box, Button, Checkbox, Divider, ListItemIcon, ListItemText, Menu, MenuItem, PaletteColor, Theme, Tooltip, useTheme } from "@mui/material";
|
||||||
import { useGlobalState } from "../providers/StateContainer";
|
import { useGlobalState } from "../providers/StateContainer";
|
||||||
import { getSecondaryColour, getSignatureAccentColour } from "../services/whiteLabel";
|
import { getSecondaryColour, getSignatureAccentColour } from "../services/whiteLabel";
|
||||||
import { makeStyles } from "@mui/styles";
|
import { makeStyles } from "@mui/styles";
|
||||||
import { LockOpen, Person, Lock, Settings, SupervisedUserCircle as TeamIcon, ExitToApp, PersonAdd } from "@mui/icons-material";
|
import { LockOpen, Person, Lock, Settings, SupervisedUserCircle as TeamIcon, ExitToApp, PersonAdd } from "@mui/icons-material";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import UserTeamName from "./UserTeamName";
|
import UserTeamName from "./UserTeamName";
|
||||||
import ThemeIcon from "../common/ThemeIcon";
|
|
||||||
import { useAuth0 } from "@auth0/auth0-react";
|
import { useAuth0 } from "@auth0/auth0-react";
|
||||||
import UserSettings from "./UserSettings";
|
import UserSettings from "./UserSettings";
|
||||||
import UserAvatar from "./UserAvatar";
|
import UserAvatar from "./UserAvatar";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue