mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import { ReactElement } from "react";
|
|
import useSWR from "swr";
|
|
// layouts
|
|
import { PageHead } from "components/core";
|
|
import { EmailNotificationForm } from "components/profile/preferences";
|
|
import { EmailSettingsLoader } from "components/ui";
|
|
import { ProfilePreferenceSettingsLayout } from "layouts/settings-layout/profile/preferences";
|
|
// ui
|
|
// components
|
|
// services
|
|
import { NextPageWithLayout } from "lib/types";
|
|
import { UserService } from "services/user.service";
|
|
// type
|
|
|
|
// services
|
|
const userService = new UserService();
|
|
|
|
const ProfilePreferencesThemePage: NextPageWithLayout = () => {
|
|
// fetching user email notification settings
|
|
const { data, isLoading } = useSWR("CURRENT_USER_EMAIL_NOTIFICATION_SETTINGS", () =>
|
|
userService.currentUserEmailNotificationSettings()
|
|
);
|
|
|
|
if (!data || isLoading) {
|
|
return <EmailSettingsLoader />;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<PageHead title="Profile - Email Preference" />
|
|
<div className="mx-auto mt-8 h-full w-full px-6 lg:px-20 pb-8">
|
|
<EmailNotificationForm data={data} />
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
ProfilePreferencesThemePage.getLayout = function getLayout(page: ReactElement) {
|
|
return <ProfilePreferenceSettingsLayout>{page}</ProfilePreferenceSettingsLayout>;
|
|
};
|
|
|
|
export default ProfilePreferencesThemePage;
|