forked from github/plane
9f1fd2327a
* fix: auth redirection issues * fix: redirect flickering fix * chore: sign in page ui improvement and redirection fix (#2501) * style: sign in page ui improvement * chore: sign up redirection added and ui improvement * chore: redirection validation and create workspace form fix (#2504) * chore: sign in redirection validation * fix: create workspace form input fix * chore: code refactor --------- Co-authored-by: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com>
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import { useCallback, useEffect } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
|
|
declare global {
|
|
interface Window {
|
|
$crisp: any;
|
|
CRISP_WEBSITE_ID: any;
|
|
}
|
|
}
|
|
|
|
const Crisp = observer(() => {
|
|
const { user: userStore } = useMobxStore();
|
|
const { currentUser } = userStore;
|
|
|
|
const validateCurrentUser = useCallback(() => {
|
|
if (currentUser) return currentUser.email;
|
|
return null;
|
|
}, [currentUser]);
|
|
|
|
useEffect(() => {
|
|
if (typeof window && validateCurrentUser()) {
|
|
window.$crisp = [];
|
|
window.CRISP_WEBSITE_ID = process.env.NEXT_PUBLIC_CRISP_ID;
|
|
(function () {
|
|
var d = document;
|
|
var s = d.createElement("script");
|
|
s.src = "https://client.crisp.chat/l.js";
|
|
s.async = true;
|
|
d.getElementsByTagName("head")[0].appendChild(s);
|
|
// defining email when logged in
|
|
if (validateCurrentUser()) {
|
|
window.$crisp.push(["set", "user:email", [validateCurrentUser()]]);
|
|
window.$crisp.push(["do", "chat:hide"]);
|
|
window.$crisp.push(["do", "chat:close"]);
|
|
}
|
|
})();
|
|
}
|
|
}, [validateCurrentUser]);
|
|
|
|
return <></>;
|
|
});
|
|
export default Crisp;
|