86 lines
3.6 KiB
TypeScript
86 lines
3.6 KiB
TypeScript
|
import React, { Fragment, useRef } from 'react';
|
||
|
import { Dialog, Transition } from '@headlessui/react';
|
||
|
import { Tabs } from 'src/components';
|
||
|
import { UserDetailsTab } from './components/UserDetailsTab';
|
||
|
import { AdvancedTab } from './components/AdvancedTab';
|
||
|
import { AppAccessTab } from './components/AppAccess';
|
||
|
|
||
|
type UserModalProps = {
|
||
|
open: boolean;
|
||
|
onClose: () => void;
|
||
|
onSave?: () => void;
|
||
|
};
|
||
|
|
||
|
const tabs = [
|
||
|
{ name: 'User Details', component: <UserDetailsTab /> },
|
||
|
{ name: 'Advanced', component: <AdvancedTab /> },
|
||
|
{ name: 'App Access', component: <AppAccessTab /> },
|
||
|
];
|
||
|
|
||
|
export const UserModal = ({ open, onClose, onSave = () => {} }: UserModalProps) => {
|
||
|
const cancelButtonRef = useRef(null);
|
||
|
|
||
|
return (
|
||
|
<Transition.Root show={open} as={Fragment}>
|
||
|
<Dialog
|
||
|
as="div"
|
||
|
auto-reopen="true"
|
||
|
className="fixed z-10 inset-0 overflow-y-auto"
|
||
|
initialFocus={cancelButtonRef}
|
||
|
onClose={onClose}
|
||
|
>
|
||
|
<div className="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
|
||
|
<Transition.Child
|
||
|
as={Fragment}
|
||
|
enter="ease-out duration-300"
|
||
|
enterFrom="opacity-0"
|
||
|
enterTo="opacity-100"
|
||
|
leave="ease-in duration-200"
|
||
|
leaveFrom="opacity-100"
|
||
|
leaveTo="opacity-0"
|
||
|
>
|
||
|
<Dialog.Overlay className="fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity" />
|
||
|
</Transition.Child>
|
||
|
|
||
|
{/* This element is to trick the browser into centering the modal contents. */}
|
||
|
<span className="hidden sm:inline-block sm:align-middle sm:h-screen" aria-hidden="true">
|
||
|
​
|
||
|
</span>
|
||
|
<Transition.Child
|
||
|
as={Fragment}
|
||
|
enter="ease-out duration-300"
|
||
|
enterFrom="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
||
|
enterTo="opacity-100 translate-y-0 sm:scale-100"
|
||
|
leave="ease-in duration-200"
|
||
|
leaveFrom="opacity-100 translate-y-0 sm:scale-100"
|
||
|
leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
||
|
>
|
||
|
<div className="inline-block align-bottom bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-2xl sm:w-full">
|
||
|
<div className="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4">
|
||
|
<Tabs tabs={tabs} />
|
||
|
</div>
|
||
|
<div className="bg-gray-50 px-4 py-3 sm:px-6 sm:flex sm:flex-row-reverse">
|
||
|
<button
|
||
|
type="button"
|
||
|
className="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-primary-600 text-base font-medium text-white hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 sm:ml-3 sm:w-auto sm:text-sm"
|
||
|
onClick={onSave}
|
||
|
>
|
||
|
Save Changes
|
||
|
</button>
|
||
|
<button
|
||
|
type="button"
|
||
|
className="mt-3 w-full inline-flex justify-center rounded-md border border-gray-200 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm"
|
||
|
onClick={onClose}
|
||
|
ref={cancelButtonRef}
|
||
|
>
|
||
|
Cancel
|
||
|
</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</Transition.Child>
|
||
|
</div>
|
||
|
</Dialog>
|
||
|
</Transition.Root>
|
||
|
);
|
||
|
};
|