38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import type { DialogProps } from "@calcom/ui";
|
|
import { Button } from "@calcom/ui";
|
|
import { Dialog, DialogClose, DialogContent, DialogFooter } from "@calcom/ui";
|
|
|
|
import useAddAppMutation from "../../_utils/useAddAppMutation";
|
|
|
|
export function AccountDialog(props: DialogProps) {
|
|
const mutation = useAddAppMutation("office365_video");
|
|
return (
|
|
<Dialog name="Account check" open={props.open} onOpenChange={props.onOpenChange}>
|
|
<DialogContent
|
|
type="creation"
|
|
title="Connecting with MS Teams requires a work/school Microsoft account."
|
|
description="If you continue with a personal account you will receive an error">
|
|
<DialogFooter>
|
|
<>
|
|
<DialogClose
|
|
type="button"
|
|
color="secondary"
|
|
tabIndex={-1}
|
|
onClick={() => {
|
|
props.onOpenChange?.(false);
|
|
}}>
|
|
Cancel
|
|
</DialogClose>
|
|
|
|
<Button type="button" onClick={() => mutation.mutate("")}>
|
|
Continue
|
|
</Button>
|
|
</>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|
|
|
|
export default AccountDialog;
|