72 lines
2.3 KiB
TypeScript
72 lines
2.3 KiB
TypeScript
|
import { useForm } from "react-hook-form";
|
||
|
|
||
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
||
|
import { trpc } from "@calcom/trpc/react";
|
||
|
import { Label, showToast } from "@calcom/ui/v2";
|
||
|
import { Switch, Skeleton, Form, Button } from "@calcom/ui/v2/core";
|
||
|
import Meta from "@calcom/ui/v2/core/Meta";
|
||
|
import { getLayout } from "@calcom/ui/v2/core/layouts/SettingsLayout";
|
||
|
|
||
|
const ProfileImpersonationView = () => {
|
||
|
const { t } = useLocale();
|
||
|
const utils = trpc.useContext();
|
||
|
const { data: user } = trpc.useQuery(["viewer.me"]);
|
||
|
const mutation = trpc.useMutation("viewer.updateProfile", {
|
||
|
onSuccess: () => {
|
||
|
showToast(t("profile_updated_successfully"), "success");
|
||
|
},
|
||
|
onError: (error) => {
|
||
|
showToast(`${t("error")}, ${error.message}`, "error");
|
||
|
},
|
||
|
});
|
||
|
|
||
|
const formMethods = useForm<{ disableImpersonation: boolean }>({
|
||
|
defaultValues: {
|
||
|
disableImpersonation: user?.disableImpersonation,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
const {
|
||
|
formState: { isSubmitting },
|
||
|
setValue,
|
||
|
} = formMethods;
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<Meta title="Impersonation Settings" description="" />
|
||
|
<Form
|
||
|
form={formMethods}
|
||
|
handleSubmit={({ disableImpersonation }) => {
|
||
|
mutation.mutate({ disableImpersonation });
|
||
|
utils.invalidateQueries(["viewer.me"]);
|
||
|
}}>
|
||
|
<div className="flex space-x-3">
|
||
|
<Switch
|
||
|
{...formMethods.register("disableImpersonation")}
|
||
|
defaultChecked={!user?.disableImpersonation}
|
||
|
onCheckedChange={(e) => {
|
||
|
setValue("disableImpersonation", !e);
|
||
|
}}
|
||
|
fitToHeight={true}
|
||
|
/>
|
||
|
<div className="flex flex-col">
|
||
|
<Skeleton as={Label} className="text-sm font-semibold leading-none text-black">
|
||
|
{t("user_impersonation_heading")}
|
||
|
</Skeleton>
|
||
|
<Skeleton as="p" className="-mt-2 text-sm leading-normal text-gray-600">
|
||
|
{t("user_impersonation_description")}
|
||
|
</Skeleton>
|
||
|
</div>
|
||
|
</div>
|
||
|
<Button color="primary" className="mt-8" type="submit" disabled={isSubmitting || mutation.isLoading}>
|
||
|
{t("update")}
|
||
|
</Button>
|
||
|
</Form>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
ProfileImpersonationView.getLayout = getLayout;
|
||
|
|
||
|
export default ProfileImpersonationView;
|