439 lines
15 KiB
TypeScript
439 lines
15 KiB
TypeScript
import * as icon from '@mdi/js';
|
|
import Head from 'next/head';
|
|
import React from 'react';
|
|
import axios from 'axios';
|
|
import type { ReactElement } from 'react';
|
|
import LayoutAuthenticated from '../layouts/Authenticated';
|
|
import SectionMain from '../components/SectionMain';
|
|
import SectionTitleLineWithButton from '../components/SectionTitleLineWithButton';
|
|
import BaseIcon from '../components/BaseIcon';
|
|
import { getPageTitle } from '../config';
|
|
import Link from 'next/link';
|
|
|
|
import { hasPermission } from '../helpers/userPermissions';
|
|
import { fetchWidgets } from '../stores/roles/rolesSlice';
|
|
import { WidgetCreator } from '../components/WidgetCreator/WidgetCreator';
|
|
import { SmartWidget } from '../components/SmartWidget/SmartWidget';
|
|
|
|
import { useAppDispatch, useAppSelector } from '../stores/hooks';
|
|
const Dashboard = () => {
|
|
const dispatch = useAppDispatch();
|
|
const iconsColor = useAppSelector((state) => state.style.iconsColor);
|
|
const corners = useAppSelector((state) => state.style.corners);
|
|
const cardsStyle = useAppSelector((state) => state.style.cardsStyle);
|
|
|
|
const [users, setUsers] = React.useState('Loading...');
|
|
const [comments, setComments] = React.useState('Loading...');
|
|
const [donations, setDonations] = React.useState('Loading...');
|
|
const [patients, setPatients] = React.useState('Loading...');
|
|
const [recurring_donations, setRecurring_donations] =
|
|
React.useState('Loading...');
|
|
const [updates, setUpdates] = React.useState('Loading...');
|
|
const [roles, setRoles] = React.useState('Loading...');
|
|
const [permissions, setPermissions] = React.useState('Loading...');
|
|
|
|
const [widgetsRole, setWidgetsRole] = React.useState({
|
|
role: { value: '', label: '' },
|
|
});
|
|
const { currentUser } = useAppSelector((state) => state.auth);
|
|
const { isFetchingQuery } = useAppSelector((state) => state.openAi);
|
|
|
|
const { rolesWidgets, loading } = useAppSelector((state) => state.roles);
|
|
|
|
async function loadData() {
|
|
const entities = [
|
|
'users',
|
|
'comments',
|
|
'donations',
|
|
'patients',
|
|
'recurring_donations',
|
|
'updates',
|
|
'roles',
|
|
'permissions',
|
|
];
|
|
const fns = [
|
|
setUsers,
|
|
setComments,
|
|
setDonations,
|
|
setPatients,
|
|
setRecurring_donations,
|
|
setUpdates,
|
|
setRoles,
|
|
setPermissions,
|
|
];
|
|
|
|
const requests = entities.map((entity, index) => {
|
|
if (hasPermission(currentUser, `READ_${entity.toUpperCase()}`)) {
|
|
return axios.get(`/${entity.toLowerCase()}/count`);
|
|
} else {
|
|
fns[index](null);
|
|
return Promise.resolve({ data: { count: null } });
|
|
}
|
|
});
|
|
|
|
Promise.allSettled(requests).then((results) => {
|
|
results.forEach((result, i) => {
|
|
if (result.status === 'fulfilled') {
|
|
fns[i](result.value.data.count);
|
|
} else {
|
|
fns[i](result.reason.message);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
async function getWidgets(roleId) {
|
|
await dispatch(fetchWidgets(roleId));
|
|
}
|
|
React.useEffect(() => {
|
|
if (!currentUser) return;
|
|
loadData().then();
|
|
setWidgetsRole({
|
|
role: {
|
|
value: currentUser?.app_role?.id,
|
|
label: currentUser?.app_role?.name,
|
|
},
|
|
});
|
|
}, [currentUser]);
|
|
|
|
React.useEffect(() => {
|
|
if (!currentUser || !widgetsRole?.role?.value) return;
|
|
getWidgets(widgetsRole?.role?.value || '').then();
|
|
}, [widgetsRole?.role?.value]);
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('Dashboard')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={icon.mdiChartTimelineVariant}
|
|
title='Overview'
|
|
main
|
|
>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
|
|
{hasPermission(currentUser, 'CREATE_ROLES') && (
|
|
<WidgetCreator
|
|
currentUser={currentUser}
|
|
isFetchingQuery={isFetchingQuery}
|
|
setWidgetsRole={setWidgetsRole}
|
|
widgetsRole={widgetsRole}
|
|
/>
|
|
)}
|
|
{!!rolesWidgets.length &&
|
|
hasPermission(currentUser, 'CREATE_ROLES') && (
|
|
<p className=' text-gray-500 dark:text-gray-400 mb-4'>
|
|
{`${widgetsRole?.role?.label || 'Users'}'s widgets`}
|
|
</p>
|
|
)}
|
|
|
|
<div className='grid grid-cols-1 gap-6 lg:grid-cols-4 mb-6 grid-flow-dense'>
|
|
{(isFetchingQuery || loading) && (
|
|
<div
|
|
className={` ${
|
|
corners !== 'rounded-full' ? corners : 'rounded-3xl'
|
|
} dark:bg-dark-900 text-lg leading-tight text-gray-500 flex items-center ${cardsStyle} dark:border-dark-700 p-6`}
|
|
>
|
|
<BaseIcon
|
|
className={`${iconsColor} animate-spin mr-5`}
|
|
w='w-16'
|
|
h='h-16'
|
|
size={48}
|
|
path={icon.mdiLoading}
|
|
/>{' '}
|
|
Loading widgets...
|
|
</div>
|
|
)}
|
|
|
|
{rolesWidgets &&
|
|
rolesWidgets.map((widget) => (
|
|
<SmartWidget
|
|
key={widget.id}
|
|
userId={currentUser?.id}
|
|
widget={widget}
|
|
roleId={widgetsRole?.role?.value || ''}
|
|
admin={hasPermission(currentUser, 'CREATE_ROLES')}
|
|
/>
|
|
))}
|
|
</div>
|
|
|
|
{!!rolesWidgets.length && (
|
|
<hr className='my-6 text-pastelEmeraldTheme-mainBG ' />
|
|
)}
|
|
|
|
<div
|
|
id='dashboard'
|
|
className='grid grid-cols-1 gap-6 lg:grid-cols-3 mb-6'
|
|
>
|
|
{hasPermission(currentUser, 'READ_USERS') && (
|
|
<Link href={'/users/users-list'}>
|
|
<div
|
|
className={`${
|
|
corners !== 'rounded-full' ? corners : 'rounded-3xl'
|
|
} dark:bg-dark-900 ${cardsStyle} dark:border-dark-700 p-6`}
|
|
>
|
|
<div className='flex justify-between align-center'>
|
|
<div>
|
|
<div className='text-lg leading-tight text-gray-500 dark:text-gray-400'>
|
|
Users
|
|
</div>
|
|
<div className='text-3xl leading-tight font-semibold'>
|
|
{users}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<BaseIcon
|
|
className={`${iconsColor}`}
|
|
w='w-16'
|
|
h='h-16'
|
|
size={48}
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
path={icon.mdiAccountGroup || icon.mdiTable}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
)}
|
|
|
|
{hasPermission(currentUser, 'READ_COMMENTS') && (
|
|
<Link href={'/comments/comments-list'}>
|
|
<div
|
|
className={`${
|
|
corners !== 'rounded-full' ? corners : 'rounded-3xl'
|
|
} dark:bg-dark-900 ${cardsStyle} dark:border-dark-700 p-6`}
|
|
>
|
|
<div className='flex justify-between align-center'>
|
|
<div>
|
|
<div className='text-lg leading-tight text-gray-500 dark:text-gray-400'>
|
|
Comments
|
|
</div>
|
|
<div className='text-3xl leading-tight font-semibold'>
|
|
{comments}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<BaseIcon
|
|
className={`${iconsColor}`}
|
|
w='w-16'
|
|
h='h-16'
|
|
size={48}
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
path={icon.mdiComment || icon.mdiTable}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
)}
|
|
|
|
{hasPermission(currentUser, 'READ_DONATIONS') && (
|
|
<Link href={'/donations/donations-list'}>
|
|
<div
|
|
className={`${
|
|
corners !== 'rounded-full' ? corners : 'rounded-3xl'
|
|
} dark:bg-dark-900 ${cardsStyle} dark:border-dark-700 p-6`}
|
|
>
|
|
<div className='flex justify-between align-center'>
|
|
<div>
|
|
<div className='text-lg leading-tight text-gray-500 dark:text-gray-400'>
|
|
Donations
|
|
</div>
|
|
<div className='text-3xl leading-tight font-semibold'>
|
|
{donations}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<BaseIcon
|
|
className={`${iconsColor}`}
|
|
w='w-16'
|
|
h='h-16'
|
|
size={48}
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
path={icon.mdiCurrencyUsd || icon.mdiTable}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
)}
|
|
|
|
{hasPermission(currentUser, 'READ_PATIENTS') && (
|
|
<Link href={'/patients/patients-list'}>
|
|
<div
|
|
className={`${
|
|
corners !== 'rounded-full' ? corners : 'rounded-3xl'
|
|
} dark:bg-dark-900 ${cardsStyle} dark:border-dark-700 p-6`}
|
|
>
|
|
<div className='flex justify-between align-center'>
|
|
<div>
|
|
<div className='text-lg leading-tight text-gray-500 dark:text-gray-400'>
|
|
Patients
|
|
</div>
|
|
<div className='text-3xl leading-tight font-semibold'>
|
|
{patients}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<BaseIcon
|
|
className={`${iconsColor}`}
|
|
w='w-16'
|
|
h='h-16'
|
|
size={48}
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
path={icon.mdiHospital || icon.mdiTable}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
)}
|
|
|
|
{hasPermission(currentUser, 'READ_RECURRING_DONATIONS') && (
|
|
<Link href={'/recurring_donations/recurring_donations-list'}>
|
|
<div
|
|
className={`${
|
|
corners !== 'rounded-full' ? corners : 'rounded-3xl'
|
|
} dark:bg-dark-900 ${cardsStyle} dark:border-dark-700 p-6`}
|
|
>
|
|
<div className='flex justify-between align-center'>
|
|
<div>
|
|
<div className='text-lg leading-tight text-gray-500 dark:text-gray-400'>
|
|
Recurring donations
|
|
</div>
|
|
<div className='text-3xl leading-tight font-semibold'>
|
|
{recurring_donations}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<BaseIcon
|
|
className={`${iconsColor}`}
|
|
w='w-16'
|
|
h='h-16'
|
|
size={48}
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
path={icon.mdiRepeat || icon.mdiTable}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
)}
|
|
|
|
{hasPermission(currentUser, 'READ_UPDATES') && (
|
|
<Link href={'/updates/updates-list'}>
|
|
<div
|
|
className={`${
|
|
corners !== 'rounded-full' ? corners : 'rounded-3xl'
|
|
} dark:bg-dark-900 ${cardsStyle} dark:border-dark-700 p-6`}
|
|
>
|
|
<div className='flex justify-between align-center'>
|
|
<div>
|
|
<div className='text-lg leading-tight text-gray-500 dark:text-gray-400'>
|
|
Updates
|
|
</div>
|
|
<div className='text-3xl leading-tight font-semibold'>
|
|
{updates}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<BaseIcon
|
|
className={`${iconsColor}`}
|
|
w='w-16'
|
|
h='h-16'
|
|
size={48}
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
path={icon.mdiUpdate || icon.mdiTable}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
)}
|
|
|
|
{hasPermission(currentUser, 'READ_ROLES') && (
|
|
<Link href={'/roles/roles-list'}>
|
|
<div
|
|
className={`${
|
|
corners !== 'rounded-full' ? corners : 'rounded-3xl'
|
|
} dark:bg-dark-900 ${cardsStyle} dark:border-dark-700 p-6`}
|
|
>
|
|
<div className='flex justify-between align-center'>
|
|
<div>
|
|
<div className='text-lg leading-tight text-gray-500 dark:text-gray-400'>
|
|
Roles
|
|
</div>
|
|
<div className='text-3xl leading-tight font-semibold'>
|
|
{roles}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<BaseIcon
|
|
className={`${iconsColor}`}
|
|
w='w-16'
|
|
h='h-16'
|
|
size={48}
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
path={
|
|
icon.mdiShieldAccountVariantOutline || icon.mdiTable
|
|
}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
)}
|
|
|
|
{hasPermission(currentUser, 'READ_PERMISSIONS') && (
|
|
<Link href={'/permissions/permissions-list'}>
|
|
<div
|
|
className={`${
|
|
corners !== 'rounded-full' ? corners : 'rounded-3xl'
|
|
} dark:bg-dark-900 ${cardsStyle} dark:border-dark-700 p-6`}
|
|
>
|
|
<div className='flex justify-between align-center'>
|
|
<div>
|
|
<div className='text-lg leading-tight text-gray-500 dark:text-gray-400'>
|
|
Permissions
|
|
</div>
|
|
<div className='text-3xl leading-tight font-semibold'>
|
|
{permissions}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<BaseIcon
|
|
className={`${iconsColor}`}
|
|
w='w-16'
|
|
h='h-16'
|
|
size={48}
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
path={icon.mdiShieldAccountOutline || icon.mdiTable}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
)}
|
|
</div>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
Dashboard.getLayout = function getLayout(page: ReactElement) {
|
|
return <LayoutAuthenticated>{page}</LayoutAuthenticated>;
|
|
};
|
|
|
|
export default Dashboard;
|