mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-11 08:24:38 +03:00
a540a201e3
# Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate):
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import { useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { useSupabase } from "@/lib/context/SupabaseProvider";
|
|
import { useToast } from "@/lib/hooks";
|
|
import { useEventTracking } from "@/services/analytics/june/useEventTracking";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
export const useLogoutModal = () => {
|
|
const { supabase } = useSupabase();
|
|
const [isLoggingOut, setIsLoggingOut] = useState(false);
|
|
const [isLogoutModalOpened, setIsLogoutModalOpened] = useState(false);
|
|
const { track } = useEventTracking();
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const { t } = useTranslation(["translation", "logout"]);
|
|
|
|
const { publish } = useToast();
|
|
|
|
const handleLogout = async () => {
|
|
setIsLoggingOut(true);
|
|
const { error } = await supabase.auth.signOut();
|
|
void track("LOGOUT");
|
|
localStorage.clear();
|
|
|
|
if (error) {
|
|
console.error("Error logging out:", error.message);
|
|
publish({
|
|
variant: "danger",
|
|
text: t("error", { errorMessage: error.message, ns: "logout" }),
|
|
});
|
|
} else {
|
|
publish({
|
|
variant: "success",
|
|
text: t("loggedOut", { ns: "logout" }),
|
|
});
|
|
window.location.href = "/";
|
|
}
|
|
setIsLoggingOut(false);
|
|
};
|
|
|
|
return {
|
|
handleLogout,
|
|
isLoggingOut,
|
|
isLogoutModalOpened,
|
|
setIsLogoutModalOpened,
|
|
};
|
|
};
|