mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 17:43:03 +03:00
61bb7b2e02
# 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):
162 lines
4.9 KiB
TypeScript
162 lines
4.9 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { useUserApi } from "@/lib/api/user/useUserApi";
|
|
import { PageHeader } from "@/lib/components/PageHeader/PageHeader";
|
|
import { Modal } from "@/lib/components/ui/Modal/Modal";
|
|
import { QuivrButton } from "@/lib/components/ui/QuivrButton/QuivrButton";
|
|
import { Tabs } from "@/lib/components/ui/Tabs/Tabs";
|
|
import { useSupabase } from "@/lib/context/SupabaseProvider";
|
|
import { useUserSettingsContext } from "@/lib/context/UserSettingsProvider/hooks/useUserSettingsContext";
|
|
import { useUserData } from "@/lib/hooks/useUserData";
|
|
import { redirectToLogin } from "@/lib/router/redirectToLogin";
|
|
import { ButtonType } from "@/lib/types/QuivrButton";
|
|
import { Tab } from "@/lib/types/Tab";
|
|
|
|
import { Connections } from "./components/Connections/Connections";
|
|
import { Settings } from "./components/Settings/Settings";
|
|
import styles from "./page.module.scss";
|
|
|
|
import { useLogoutModal } from "../../lib/hooks/useLogoutModal";
|
|
|
|
const UserPage = (): JSX.Element => {
|
|
const { session } = useSupabase();
|
|
const { userData, userIdentityData } = useUserData();
|
|
const { deleteUserData, getUserCredits } = useUserApi();
|
|
const { t } = useTranslation(["translation", "logout"]);
|
|
const [deleteAccountModalOpened, setDeleteAccountModalOpened] =
|
|
useState(false);
|
|
const {
|
|
handleLogout,
|
|
isLoggingOut,
|
|
isLogoutModalOpened,
|
|
setIsLogoutModalOpened,
|
|
} = useLogoutModal();
|
|
const [selectedTab, setSelectedTab] = useState("General");
|
|
const { remainingCredits, setRemainingCredits } = useUserSettingsContext();
|
|
|
|
useEffect(() => {
|
|
void (async () => {
|
|
const res = await getUserCredits();
|
|
setRemainingCredits(res);
|
|
})();
|
|
}, []);
|
|
|
|
const buttons: ButtonType[] = [
|
|
{
|
|
label: "Logout",
|
|
color: "dangerous",
|
|
onClick: () => {
|
|
setIsLogoutModalOpened(true);
|
|
},
|
|
iconName: "logout",
|
|
},
|
|
{
|
|
label: "Delete Account",
|
|
color: "dangerous",
|
|
onClick: () => {
|
|
setDeleteAccountModalOpened(true);
|
|
},
|
|
iconName: "delete",
|
|
},
|
|
];
|
|
|
|
const studioTabs: Tab[] = [
|
|
{
|
|
label: "General",
|
|
isSelected: selectedTab === "General",
|
|
onClick: () => setSelectedTab("General"),
|
|
iconName: "user",
|
|
},
|
|
{
|
|
label: "Connections",
|
|
isSelected: selectedTab === "Connections",
|
|
onClick: () => setSelectedTab("Connections"),
|
|
iconName: "sync",
|
|
},
|
|
];
|
|
|
|
if (!session || !userData) {
|
|
redirectToLogin();
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div className={styles.page_header}>
|
|
<PageHeader iconName="user" label="Profile" buttons={buttons} />
|
|
</div>
|
|
<div className={styles.user_page_container}>
|
|
<Tabs tabList={studioTabs} />
|
|
<div className={styles.user_page_menu}></div>
|
|
<div className={styles.content_wrapper}>
|
|
{selectedTab === "General" && (
|
|
<Settings
|
|
email={userData.email}
|
|
username={userIdentityData?.username ?? ""}
|
|
remainingCredits={remainingCredits ?? 0}
|
|
/>
|
|
)}
|
|
{selectedTab === "Connections" && <Connections />}
|
|
</div>
|
|
</div>
|
|
<Modal
|
|
isOpen={isLogoutModalOpened}
|
|
setOpen={setIsLogoutModalOpened}
|
|
size="auto"
|
|
CloseTrigger={<div />}
|
|
>
|
|
<div className={styles.modal_wrapper}>
|
|
<h2>{t("areYouSure", { ns: "logout" })}</h2>
|
|
<div className={styles.buttons}>
|
|
<QuivrButton
|
|
onClick={() => setIsLogoutModalOpened(false)}
|
|
color="primary"
|
|
label={t("cancel", { ns: "logout" })}
|
|
iconName="close"
|
|
></QuivrButton>
|
|
<QuivrButton
|
|
isLoading={isLoggingOut}
|
|
color="dangerous"
|
|
onClick={() => void handleLogout()}
|
|
label={t("logoutButton")}
|
|
iconName="logout"
|
|
></QuivrButton>
|
|
</div>
|
|
</div>
|
|
</Modal>
|
|
<Modal
|
|
isOpen={deleteAccountModalOpened}
|
|
setOpen={setDeleteAccountModalOpened}
|
|
size="auto"
|
|
CloseTrigger={<div />}
|
|
>
|
|
<div className={styles.modal_wrapper}>
|
|
<h2>Are you sure you want to delete your account ?</h2>
|
|
<div className={styles.buttons}>
|
|
<QuivrButton
|
|
onClick={() => setDeleteAccountModalOpened(false)}
|
|
color="primary"
|
|
label={t("cancel", { ns: "logout" })}
|
|
iconName="close"
|
|
></QuivrButton>
|
|
<QuivrButton
|
|
isLoading={isLoggingOut}
|
|
color="dangerous"
|
|
onClick={() => {
|
|
void deleteUserData();
|
|
void handleLogout();
|
|
}}
|
|
label="Delete Account"
|
|
iconName="logout"
|
|
></QuivrButton>
|
|
</div>
|
|
</div>
|
|
</Modal>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default UserPage;
|