hexabot/widget/src/providers/CookieProvider.tsx
2024-12-03 15:24:31 +01:00

45 lines
1.4 KiB
TypeScript

/*
* Copyright © 2024 Hexastack. All rights reserved.
*
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
*/
import React, { createContext, ReactNode, useEffect, useState } from "react";
import { useConfig } from "./ConfigProvider";
const CookieContext = createContext({});
export const CookieProvider: React.FC<{ children: ReactNode }> = ({
children,
}) => {
const config = useConfig();
const [initialized, setInitialized] = useState(false);
const getCookie = async () => {
try {
await fetch(`${config.apiUrl}/__getcookie`, {
credentials: "include",
});
setInitialized(true);
} catch (e) {
// eslint-disable-next-line no-console
console.warn("Unable to get cookies ...");
}
};
useEffect(() => {
if (!initialized) {
getCookie();
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
if (!initialized) {
return null;
}
return <CookieContext.Provider value={{}}>{children}</CookieContext.Provider>;
};