dashboard/src/modules/users/components/UserModal/UserModal.tsx

209 lines
7.4 KiB
TypeScript
Raw Normal View History

2022-02-11 12:45:22 +01:00
import React, { useEffect, useState } from 'react';
2021-12-21 14:55:46 +00:00
import { TrashIcon } from '@heroicons/react/outline';
import { useForm } from 'react-hook-form';
2022-02-11 12:45:22 +01:00
import { Modal, Banner, ConfirmationModal } from 'src/components';
2021-12-21 14:55:46 +00:00
import { Input } from 'src/components/Form';
import { useUsers } from 'src/services/users';
import { CurrentUserState } from 'src/services/users/redux';
2022-02-10 13:34:44 +00:00
import { useAuth } from 'src/services/auth';
2021-11-24 08:16:45 +00:00
import { appAccessList } from './consts';
import { UserModalProps } from './types';
2021-09-27 12:17:33 +02:00
2021-12-21 14:55:46 +00:00
export const UserModal = ({ open, onClose, userId }: UserModalProps) => {
2022-02-11 12:45:22 +01:00
const [deleteModal, setDeleteModal] = useState(false);
2021-12-21 14:55:46 +00:00
const { user, loadUser, editUserById, createNewUser, userModalLoading, deleteUserById } = useUsers();
2022-02-10 13:34:44 +00:00
const { currentUser } = useAuth();
2021-12-21 14:55:46 +00:00
const { control, reset, handleSubmit } = useForm<CurrentUserState>({
defaultValues: {
name: null,
email: null,
id: null,
status: null,
},
});
useEffect(() => {
if (userId) {
loadUser(userId);
}
reset({ name: null, email: null, id: null, status: null });
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [userId]);
useEffect(() => {
if (user) {
reset(user);
}
return () => {
reset({ name: null, email: null, id: null, status: null });
};
}, [user, reset]);
const handleSave = async () => {
try {
if (userId) {
await handleSubmit((data) => editUserById(data))();
} else {
await handleSubmit((data) => createNewUser(data))();
reset({ name: null, email: null, id: null, status: null });
}
onClose();
} catch (e: any) {
// Continue
}
};
const handleKeyPress = (e: any) => {
if (e.key === 'Enter' || e.key === 'NumpadEnter') {
handleSave();
}
};
const handleClose = () => {
onClose();
};
2022-02-11 12:45:22 +01:00
const deleteModalOpen = () => setDeleteModal(true);
const deleteModalClose = () => setDeleteModal(false);
2021-12-21 14:55:46 +00:00
const handleDelete = () => {
if (userId) {
deleteUserById(userId);
}
handleClose();
2022-02-11 12:45:22 +01:00
deleteModalClose();
2021-12-21 14:55:46 +00:00
};
2021-11-24 08:16:45 +00:00
return (
2022-02-11 12:45:22 +01:00
<>
<Modal
onClose={handleClose}
open={open}
onSave={handleSave}
isLoading={userModalLoading}
leftActions={
userId &&
user.email !== currentUser.email && (
<button
onClick={deleteModalOpen}
type="button"
className="mb-4 sm:mb-0 inline-flex items-center px-4 py-2 text-sm font-medium rounded-md text-red-700 bg-red-50 hover:bg-red-100 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500"
>
<TrashIcon className="-ml-0.5 mr-2 h-4 w-4" aria-hidden="true" />
Delete
</button>
)
}
useCancelButton
>
<div className="bg-white px-4">
<div className="space-y-4 divide-y divide-gray-200">
2021-11-24 08:16:45 +00:00
<div>
2022-02-11 12:45:22 +01:00
<div>
<h3 className="text-lg leading-6 font-medium text-gray-900">{userId ? 'Edit user' : 'Add new user'}</h3>
2021-11-24 08:16:45 +00:00
</div>
2021-09-27 12:17:33 +02:00
2022-02-11 12:45:22 +01:00
<div className="mt-6 grid grid-cols-1 gap-y-6 gap-x-4 sm:grid-cols-6">
<div className="sm:col-span-3">
<Input control={control} name="name" label="Name" onKeyPress={handleKeyPress} />
</div>
2021-09-27 12:17:33 +02:00
2022-02-11 12:45:22 +01:00
<div className="sm:col-span-3">
<Input control={control} name="email" label="Email" type="email" onKeyPress={handleKeyPress} />
</div>
2022-02-09 09:03:44 +00:00
2022-02-11 12:45:22 +01:00
<div className="sm:col-span-6">
<Banner title="Editing user status, roles and app access coming soon." titleSm="Comming soon!" />
2021-11-24 08:16:45 +00:00
</div>
2021-09-27 12:17:33 +02:00
2022-02-11 12:45:22 +01:00
<div className="sm:col-span-3 opacity-40 cursor-default pointer-events-none select-none">
{/* <Select control={control} name="status" label="Status" options={['Active', 'Inactive']} /> */}
<label htmlFor="status" className="block text-sm font-medium text-gray-700">
Status
</label>
<div className="mt-1">
<select
id="status"
name="status"
className="shadow-sm focus:ring-primary-500 focus:border-primary-500 block w-full sm:text-sm border-gray-300 rounded-md"
>
<option>Active</option>
<option>Inactive</option>
<option>Banned</option>
</select>
</div>
</div>
<div className="sm:col-span-3 opacity-40 cursor-default pointer-events-none select-none">
<label htmlFor="status" className="block text-sm font-medium text-gray-700">
Role
</label>
<div className="mt-1">
<select
id="status"
name="status"
className="shadow-sm focus:ring-primary-500 focus:border-primary-500 block w-full sm:text-sm border-gray-300 rounded-md"
>
<option>User</option>
<option>Admin</option>
<option>Super Admin</option>
</select>
</div>
2021-11-24 08:16:45 +00:00
</div>
2021-09-27 12:17:33 +02:00
</div>
2021-11-24 08:16:45 +00:00
</div>
2022-02-11 12:45:22 +01:00
<div className="opacity-40 cursor-default pointer-events-none select-none">
<div className="mt-4">
<h3 className="text-lg leading-6 font-medium text-gray-900">App Access</h3>
</div>
2021-11-24 08:16:45 +00:00
2022-02-11 12:45:22 +01:00
<div>
<div className="flow-root mt-6">
<ul className="-my-5 divide-y divide-gray-200 ">
{appAccessList.map((app: any) => {
return (
<li className="py-4" key={app.name}>
<div className="flex items-center space-x-4">
<div className="flex-shrink-0 flex-1 flex items-center">
<img className="h-10 w-10 rounded-md overflow-hidden" src={app.image} alt={app.name} />
<h3 className="ml-4 text-md leading-6 font-medium text-gray-900">{app.name}</h3>
</div>
<div>
<select
id={app.name}
name={app.name}
className="shadow-sm focus:ring-primary-500 focus:border-primary-500 block w-full sm:text-sm border-gray-300 rounded-md"
>
<option>User</option>
<option>Admin</option>
<option>Super Admin</option>
</select>
</div>
2021-11-24 08:16:45 +00:00
</div>
2022-02-11 12:45:22 +01:00
</li>
);
})}
</ul>
</div>
2021-09-27 12:17:33 +02:00
</div>
</div>
2021-11-24 08:16:45 +00:00
</div>
2021-09-27 12:17:33 +02:00
</div>
2022-02-11 12:45:22 +01:00
</Modal>
<ConfirmationModal
onDeleteAction={handleDelete}
open={deleteModal}
onClose={deleteModalClose}
title="Delete user"
body="Are you sure you want to delete this user? All of the user data will be permanently removed. This action cannot be undone."
/>
</>
2021-09-27 12:17:33 +02:00
);
};