Adds impersonation settings (#5088)
parent
79c491986a
commit
f4fb4ddad1
|
@ -0,0 +1,71 @@
|
||||||
|
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;
|
|
@ -42,6 +42,7 @@ const tabs: VerticalTabItemProps[] = [
|
||||||
children: [
|
children: [
|
||||||
{ name: "password", href: "/settings/security/password" },
|
{ name: "password", href: "/settings/security/password" },
|
||||||
{ name: "2fa_auth", href: "/settings/security/two-factor-auth" },
|
{ name: "2fa_auth", href: "/settings/security/two-factor-auth" },
|
||||||
|
{ name: "impersonation", href: "/settings/security/impersonation" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue