mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-21 22:58:43 +00:00
In so doing, extract auth0- and anonymous- -authenticationModule implementations from index.tsx and App.tsx, moving each to it own useXyz hook.
82 lines
3.0 KiB
TypeScript
82 lines
3.0 KiB
TypeScript
/*
|
|
* QQQ - Low-code Application Framework for Engineers.
|
|
* Copyright (C) 2021-2025. Kingsrook, LLC
|
|
* 651 N Broad St Ste 205 # 6917 | Middletown DE 19709 | United States
|
|
* contact@kingsrook.com
|
|
* https://github.com/Kingsrook/
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import {QAuthenticationMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QAuthenticationMetaData";
|
|
import {SESSION_UUID_COOKIE_NAME} from "App";
|
|
import Client from "qqq/utils/qqq/Client";
|
|
import {useCookies} from "react-cookie";
|
|
import {Md5} from "ts-md5/dist/md5";
|
|
|
|
const qController = Client.getInstance();
|
|
|
|
interface Props
|
|
{
|
|
setIsFullyAuthenticated?: (is: boolean) => void;
|
|
setLoggedInUser?: (user: any) => void;
|
|
setEarlyReturnForAuth?: (element: JSX.Element | null) => void;
|
|
}
|
|
|
|
/***************************************************************************
|
|
** hook for working with the anonymous authentication module
|
|
***************************************************************************/
|
|
export default function useAnonymousAuthenticationModule({setIsFullyAuthenticated, setLoggedInUser, setEarlyReturnForAuth}: Props)
|
|
{
|
|
const [cookies, setCookie, removeCookie] = useCookies([SESSION_UUID_COOKIE_NAME]);
|
|
|
|
/***************************************************************************
|
|
**
|
|
***************************************************************************/
|
|
const setupSession = async () =>
|
|
{
|
|
console.log("Generating random token...");
|
|
setIsFullyAuthenticated(true);
|
|
qController.setGotAuthentication();
|
|
setCookie(SESSION_UUID_COOKIE_NAME, Md5.hashStr(`${new Date()}`), {path: "/"});
|
|
console.log("Token generation complete.");
|
|
};
|
|
|
|
|
|
/***************************************************************************
|
|
**
|
|
***************************************************************************/
|
|
const logout = () =>
|
|
{
|
|
qController.clearAuthenticationMetaDataLocalStorage();
|
|
removeCookie(SESSION_UUID_COOKIE_NAME, {path: "/"});
|
|
};
|
|
|
|
|
|
/***************************************************************************
|
|
**
|
|
***************************************************************************/
|
|
const renderAppWrapper = (authenticationMetaData: QAuthenticationMetaData, children: JSX.Element): JSX.Element =>
|
|
{
|
|
return children;
|
|
};
|
|
|
|
|
|
return {
|
|
setupSession,
|
|
logout,
|
|
renderAppWrapper
|
|
};
|
|
|
|
} |