import { useState } from "react"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { trpc } from "@calcom/trpc/react"; import { showToast, SettingsToggle } from "@calcom/ui"; const MakeTeamPrivateSwitch = ({ teamId, isPrivate, disabled, isOrg, }: { teamId: number; isPrivate: boolean; disabled: boolean; isOrg: boolean; }) => { const { t } = useLocale(); const utils = trpc.useUtils(); const mutation = trpc.viewer.teams.update.useMutation({ onError: (err) => { showToast(err.message, "error"); }, async onSuccess() { await utils.viewer.teams.get.invalidate(); showToast(t(isOrg ? "your_org_updated_successfully" : "your_team_updated_successfully"), "success"); }, }); const [isTeamPrivate, setTeamPrivate] = useState(isPrivate); return ( <> { setTeamPrivate(checked); mutation.mutate({ id: teamId, isPrivate: checked }); }} switchContainerClassName="mt-6" data-testid="make-team-private-check" /> ); }; export default MakeTeamPrivateSwitch;