quivr/frontend/lib/hooks/useLogoutModal.ts
Antoine Dewez a540a201e3
feat(frontend): Page Header + Begin of Studio (#2151)
# 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):
2024-02-06 16:05:07 -08:00

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,
};
};