mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-16 14:49:48 -06:00
Remove old tables
This commit is contained in:
@@ -1,114 +0,0 @@
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { styled, useTheme } from '@mui/material/styles';
|
||||
import Table from '@mui/material/Table';
|
||||
import TableBody from '@mui/material/TableBody';
|
||||
import TableCell, { tableCellClasses } from '@mui/material/TableCell';
|
||||
import TableContainer from '@mui/material/TableContainer';
|
||||
import TableHead from '@mui/material/TableHead';
|
||||
import TableRow from '@mui/material/TableRow';
|
||||
import Paper from '@mui/material/Paper';
|
||||
import Box from '@mui/material/Box';
|
||||
import Pagination from '../../Components/Pagination';
|
||||
|
||||
const StyledTableCell = styled(TableCell)(({ theme }) => ({
|
||||
[`&.${tableCellClasses.head}`]: {
|
||||
backgroundColor: theme.palette.action.hover,
|
||||
color: theme.palette.common.black,
|
||||
},
|
||||
[`&.${tableCellClasses.body}`]: {
|
||||
fontSize: 14,
|
||||
},
|
||||
}));
|
||||
|
||||
const StyledTableRow = styled(TableRow)(({ theme }) => ({
|
||||
'&:nth-of-type(odd)': {
|
||||
backgroundColor: theme.palette.action.hover,
|
||||
},
|
||||
'&:nth-of-type(even)': {
|
||||
backgroundColor: theme.palette.common.white,
|
||||
},
|
||||
'&:last-child td, &:last-child th': {
|
||||
border: 0,
|
||||
},
|
||||
}));
|
||||
|
||||
const itemsPerPage = 5; // Number of items per page
|
||||
|
||||
export default function StatusTable({ data, columns }) {
|
||||
const theme = useTheme();
|
||||
const [currentPage, setCurrentPage] = React.useState(1);
|
||||
|
||||
const onPageChange = (page) => {
|
||||
setCurrentPage(page);
|
||||
};
|
||||
|
||||
// Calculate total pages based on data length and items per page
|
||||
const totalPages = Math.ceil(data.length / itemsPerPage);
|
||||
|
||||
// Slice data based on current page and items per page
|
||||
const paginatedData = data.slice((currentPage - 1) * itemsPerPage, currentPage * itemsPerPage);
|
||||
|
||||
return (
|
||||
<Box
|
||||
sx={{
|
||||
marginTop: theme.spacing(4),
|
||||
marginX: 'auto',
|
||||
width: '80%',
|
||||
paddingX: theme.spacing(6),
|
||||
[theme.breakpoints.down('md')]: {
|
||||
width: '100%',
|
||||
},
|
||||
}}
|
||||
>
|
||||
<TableContainer component={Paper}>
|
||||
<Table sx={{ minWidth: 700 }} aria-label="customized table">
|
||||
<TableHead>
|
||||
<TableRow>
|
||||
{columns.map((column, index) => (
|
||||
<StyledTableCell key={index} align={column.align || 'left'}>
|
||||
{column.header}
|
||||
</StyledTableCell>
|
||||
))}
|
||||
</TableRow>
|
||||
</TableHead>
|
||||
<TableBody>
|
||||
{paginatedData.map((row, rowIndex) => (
|
||||
<StyledTableRow key={rowIndex}>
|
||||
{columns.map((column, colIndex) => (
|
||||
<StyledTableCell key={colIndex} align={column.align || 'left'}>
|
||||
{column.id === 'name' ? (
|
||||
<div style={row.name.props.customStyles}>
|
||||
{row.name}
|
||||
</div>
|
||||
) : (
|
||||
row[column.id]
|
||||
)}
|
||||
</StyledTableCell>
|
||||
))}
|
||||
</StyledTableRow>
|
||||
))}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</TableContainer>
|
||||
{totalPages > 1 && (
|
||||
<Pagination
|
||||
page={currentPage}
|
||||
count={totalPages}
|
||||
onPageChange={onPageChange}
|
||||
/>
|
||||
)}
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
|
||||
StatusTable.propTypes = {
|
||||
data: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||
columns: PropTypes.arrayOf(
|
||||
PropTypes.shape({
|
||||
id: PropTypes.string.isRequired,
|
||||
header: PropTypes.node.isRequired,
|
||||
align: PropTypes.oneOf(['left', 'right', 'center']),
|
||||
})
|
||||
).isRequired,
|
||||
};
|
||||
@@ -1,22 +1,21 @@
|
||||
import * as React from 'react';
|
||||
import TextField from '@mui/material/TextField';
|
||||
import Autocomplete, { createFilterOptions } from '@mui/material/Autocomplete';
|
||||
import { useTheme } from '@mui/material/styles';
|
||||
import Box from '@mui/material/Box';
|
||||
import Typography from '@mui/material/Typography';
|
||||
import TuneIcon from '@mui/icons-material/Tune';
|
||||
import StatusTable from '../../Components/StatusTable';
|
||||
import * as React from "react";
|
||||
import TextField from "@mui/material/TextField";
|
||||
import Autocomplete, { createFilterOptions } from "@mui/material/Autocomplete";
|
||||
import { useTheme } from "@mui/material/styles";
|
||||
import Box from "@mui/material/Box";
|
||||
import Typography from "@mui/material/Typography";
|
||||
import TuneIcon from "@mui/icons-material/Tune";
|
||||
import { StatusLabel } from "../../Components/Label/";
|
||||
|
||||
const filterOptions = createFilterOptions({
|
||||
matchFrom: 'start',
|
||||
matchFrom: "start",
|
||||
stringify: (option) => option.title,
|
||||
});
|
||||
|
||||
const titles = [
|
||||
{ title: 'Down' },
|
||||
{ title: 'Cannot resolve' },
|
||||
{ title: 'Clear / show all' },
|
||||
{ title: "Down" },
|
||||
{ title: "Cannot resolve" },
|
||||
{ title: "Clear / show all" },
|
||||
];
|
||||
|
||||
/**
|
||||
@@ -32,11 +31,11 @@ function Filter() {
|
||||
filterOptions={filterOptions}
|
||||
sx={{
|
||||
width: 170,
|
||||
'& .MuiAutocomplete-inputRoot': {
|
||||
height: '50px',
|
||||
"& .MuiAutocomplete-inputRoot": {
|
||||
height: "50px",
|
||||
},
|
||||
'& .MuiAutocomplete-listbox': {
|
||||
maxHeight: '200px',
|
||||
"& .MuiAutocomplete-listbox": {
|
||||
maxHeight: "200px",
|
||||
},
|
||||
}}
|
||||
disableClearable
|
||||
@@ -46,7 +45,9 @@ function Filter() {
|
||||
size="small"
|
||||
label={
|
||||
<React.Fragment>
|
||||
<TuneIcon sx={{ marginRight: '0.5rem', position: 'relative', top: '6px' }} />
|
||||
<TuneIcon
|
||||
sx={{ marginRight: "0.5rem", position: "relative", top: "6px" }}
|
||||
/>
|
||||
Filter by status
|
||||
</React.Fragment>
|
||||
}
|
||||
@@ -58,17 +59,82 @@ function Filter() {
|
||||
}
|
||||
|
||||
const sampleData = [
|
||||
{ name: <StatusLabel status="Down" customStyles={{ backgroundColor: '#fff9f9', borderColor: '#ffcac6', color: '#344054' }} />, date: '2024-03-14 21:41:09', message: 'HTTP 350 - NOK' },
|
||||
{ name: <StatusLabel status="Down" customStyles={{ backgroundColor: '#fff9f9', borderColor: '#ffcac6', color: '#344054' }} />, date: '2024-03-14 21:41:09', message: 'timeout of 48000ms exceeded' },
|
||||
{ name: <StatusLabel status="Cannot resolve" customStyles={{ backgroundColor: '#f2f4f7', borderColor: '#d2d6de', color: '#344054' }} />, date: '2024-03-14 21:41:09', message: 'timeout of 48000ms exceeded' },
|
||||
{ name: <StatusLabel status="Cannot resolve" customStyles={{ backgroundColor: '#f2f4f7', borderColor: '#d2d6de', color: '#344054' }} />, date: '2024-03-14 21:41:09', message: 'timeout of 48000ms exceeded' },
|
||||
{ name: <StatusLabel status="Down" customStyles={{ backgroundColor: '#fff9f9', borderColor: '#ffcac6', color: '#344054' }} />, date: '2024-03-14 21:41:09', message: 'HTTP 350 - NOK' },
|
||||
{
|
||||
name: (
|
||||
<StatusLabel
|
||||
status="Down"
|
||||
customStyles={{
|
||||
backgroundColor: "#fff9f9",
|
||||
borderColor: "#ffcac6",
|
||||
color: "#344054",
|
||||
}}
|
||||
/>
|
||||
),
|
||||
date: "2024-03-14 21:41:09",
|
||||
message: "HTTP 350 - NOK",
|
||||
},
|
||||
{
|
||||
name: (
|
||||
<StatusLabel
|
||||
status="Down"
|
||||
customStyles={{
|
||||
backgroundColor: "#fff9f9",
|
||||
borderColor: "#ffcac6",
|
||||
color: "#344054",
|
||||
}}
|
||||
/>
|
||||
),
|
||||
date: "2024-03-14 21:41:09",
|
||||
message: "timeout of 48000ms exceeded",
|
||||
},
|
||||
{
|
||||
name: (
|
||||
<StatusLabel
|
||||
status="Cannot resolve"
|
||||
customStyles={{
|
||||
backgroundColor: "#f2f4f7",
|
||||
borderColor: "#d2d6de",
|
||||
color: "#344054",
|
||||
}}
|
||||
/>
|
||||
),
|
||||
date: "2024-03-14 21:41:09",
|
||||
message: "timeout of 48000ms exceeded",
|
||||
},
|
||||
{
|
||||
name: (
|
||||
<StatusLabel
|
||||
status="Cannot resolve"
|
||||
customStyles={{
|
||||
backgroundColor: "#f2f4f7",
|
||||
borderColor: "#d2d6de",
|
||||
color: "#344054",
|
||||
}}
|
||||
/>
|
||||
),
|
||||
date: "2024-03-14 21:41:09",
|
||||
message: "timeout of 48000ms exceeded",
|
||||
},
|
||||
{
|
||||
name: (
|
||||
<StatusLabel
|
||||
status="Down"
|
||||
customStyles={{
|
||||
backgroundColor: "#fff9f9",
|
||||
borderColor: "#ffcac6",
|
||||
color: "#344054",
|
||||
}}
|
||||
/>
|
||||
),
|
||||
date: "2024-03-14 21:41:09",
|
||||
message: "HTTP 350 - NOK",
|
||||
},
|
||||
];
|
||||
|
||||
const columns = [
|
||||
{ id: 'name', header: 'Status' },
|
||||
{ id: 'date', header: 'Date & Time' },
|
||||
{ id: 'message', header: 'Message' },
|
||||
{ id: "name", header: "Status" },
|
||||
{ id: "date", header: "Date & Time" },
|
||||
{ id: "message", header: "Message" },
|
||||
];
|
||||
|
||||
/**
|
||||
@@ -82,21 +148,33 @@ export default function CustomizedTables() {
|
||||
<Box
|
||||
sx={{
|
||||
marginTop: theme.spacing(4),
|
||||
marginX: 'auto',
|
||||
width: '80%',
|
||||
marginX: "auto",
|
||||
width: "80%",
|
||||
paddingX: theme.spacing(6),
|
||||
[theme.breakpoints.down('md')]: {
|
||||
width: '100%',
|
||||
[theme.breakpoints.down("md")]: {
|
||||
width: "100%",
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Box sx={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: theme.spacing(2) }}>
|
||||
<Typography variant="h6" component="div" sx={{ fontWeight: 600, fontSize: 16 }}>
|
||||
<Box
|
||||
sx={{
|
||||
display: "flex",
|
||||
justifyContent: "space-between",
|
||||
alignItems: "center",
|
||||
marginBottom: theme.spacing(2),
|
||||
}}
|
||||
>
|
||||
<Typography
|
||||
variant="h6"
|
||||
component="div"
|
||||
sx={{ fontWeight: 600, fontSize: 16 }}
|
||||
>
|
||||
Incident History
|
||||
</Typography>
|
||||
<Filter />
|
||||
</Box>
|
||||
<StatusTable data={sampleData} columns={columns} />
|
||||
{/* TODO Replace with BasicTable */}
|
||||
{/* <StatusTable data={sampleData} columns={columns} /> */}
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user