|
- // material-ui
- import {
- Grid,
- Typography,
- Stack,
- // Button
- } from '@mui/material';
- import MainCard from "components/MainCard";
- import { useEffect, useState } from "react";
- import * as DateUtils from "utils/DateUtils";
- import * as React from "react";
-
- import Loadable from 'components/Loadable';
- import { lazy } from 'react';
- const LoadingComponent = Loadable(lazy(() => import('../extra-pages/LoadingComponent')));
- const SearchForm = Loadable(lazy(() => import('./AuditLogSearchForm')));
- const EventTable = Loadable(lazy(() => import('./AuditLogTable')));
- import titleBackgroundImg from 'assets/images/dashboard/gazette-bar.png'
-
- const BackgroundHead = {
- backgroundImage: `url(${titleBackgroundImg})`,
- width: '100%',
- height: '100%',
- backgroundSize: 'contain',
- backgroundRepeat: 'no-repeat',
- backgroundColor: '#0C489E',
- backgroundPosition: 'right'
- }
- // ==============================|| DASHBOARD - DEFAULT ||============================== //
-
- const AuditLogPage = () => {
- const [searchCriteria, setSearchCriteria] = useState({
- modifiedTo: DateUtils.dateValue(new Date()),
- modifiedFrom: DateUtils.dateValue(new Date().setDate(new Date().getDate()-14)),
- });
- const [onReady, setOnReady] = useState(false);
- const [onGridReady, setGridOnReady] = React.useState(false);
-
- useEffect(() => {
- setOnReady(true);
- }, [searchCriteria]);
-
- function applySearch(input) {
- setGridOnReady(true)
- setSearchCriteria(input);
- }
-
- function applyGridOnReady(input) {
- setGridOnReady(input);
- }
-
- return (
- !onReady ?
- <Grid container sx={{ minHeight: '87vh', mb: 3 }} direction="column" justifyContent="center" alignItems="center">
- <Grid item>
- <LoadingComponent />
- </Grid>
- </Grid>
- :
- <Grid container sx={{ minHeight: '87vh', backgroundColor: "backgroundColor.default" }} direction="column">
- <Grid item xs={12}>
- <div style={BackgroundHead}>
- <Stack direction="row" height='70px' justifyContent="flex-start" alignItems="center">
- <Typography ml={15} color='#FFF' variant="h4" sx={{ "textShadow": "0px 0px 25px #0C489E" }}>Audit Log</Typography>
- </Stack>
- </div>
- </Grid>
-
- {/*row 1*/}
- <Grid item xs={12} md={12} lg={12} sx={{mb:-1}}>
- <SearchForm
- applySearch={applySearch}
- searchCriteria={searchCriteria}
- onGridReady={onGridReady}
- />
- </Grid>
- {/*row 2*/}
- <Grid item xs={12} md={12} lg={12}>
- <MainCard elevation={0}
- border={false}
- content={false}
- >
- <EventTable
- searchCriteria={searchCriteria}
- applyGridOnReady={applyGridOnReady}
- applySearch={applySearch}
- />
- </MainCard>
- </Grid>
-
- </Grid>
-
- );
- };
-
- export default AuditLogPage;
|