mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-17 21:00:45 +00:00
161 lines
5.1 KiB
TypeScript
161 lines
5.1 KiB
TypeScript
/**
|
|
=========================================================
|
|
* Material Dashboard 2 PRO React TS - v1.0.0
|
|
=========================================================
|
|
|
|
* Product Page: https://www.creative-tim.com/product/material-dashboard-2-pro-react-ts
|
|
* Copyright 2022 Creative Tim (https://www.creative-tim.com)
|
|
|
|
Coded by www.creative-tim.com
|
|
|
|
=========================================================
|
|
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
*/
|
|
/* eslint-disable react/no-unstable-nested-components */
|
|
|
|
import React, { useState } from "react";
|
|
|
|
// @mui material components
|
|
import Card from "@mui/material/Card";
|
|
import Icon from "@mui/material/Icon";
|
|
import Menu from "@mui/material/Menu";
|
|
import MenuItem from "@mui/material/MenuItem";
|
|
import Divider from "@mui/material/Divider";
|
|
|
|
// Material Dashboard 2 PRO React TS components
|
|
import MDBox from "components/MDBox";
|
|
import MDTypography from "components/MDTypography";
|
|
import MDButton from "components/MDButton";
|
|
|
|
// Material Dashboard 2 PRO React TS examples components
|
|
import DashboardLayout from "examples/LayoutContainers/DashboardLayout";
|
|
import DashboardNavbar from "examples/Navbars/DashboardNavbar";
|
|
import DataTable from "examples/Tables/DataTable";
|
|
|
|
// Data
|
|
import { QController } from "@kingsrook/qqq-frontend-core/lib/controllers/QController";
|
|
import Link from "@mui/material/Link";
|
|
import { QTableMetaData } from "@kingsrook/qqq-frontend-core/lib/model/metaData/QTableMetaData";
|
|
import IdCell from "./components/IdCell";
|
|
import Footer from "../components/Footer";
|
|
|
|
const qController = new QController("http://localhost:8000");
|
|
console.log(qController);
|
|
|
|
// Declaring props types for DefaultCell
|
|
interface Props {
|
|
table: QTableMetaData;
|
|
}
|
|
|
|
let dataTableData = {
|
|
columns: [] as any[],
|
|
rows: [] as any[],
|
|
};
|
|
|
|
function EntityList({ table }: Props): JSX.Element {
|
|
const [menu, setMenu] = useState(null);
|
|
const [tableState, setTableState] = useState("");
|
|
console.log(tableState);
|
|
|
|
const newEntity = (event: any) => setMenu(event.currentTarget);
|
|
const openMenu = (event: any) => setMenu(event.currentTarget);
|
|
const closeMenu = () => setMenu(null);
|
|
|
|
const createPath = `/${table.name}/create`;
|
|
|
|
(async () => {
|
|
await qController.loadTableMetaData(table.name).then((tableMetaData) => {
|
|
(async () => {
|
|
await qController.query(table.name, 250).then((results) => {
|
|
dataTableData = {
|
|
columns: [],
|
|
rows: [],
|
|
};
|
|
|
|
const fields = new Map(Object.entries(tableMetaData.fields));
|
|
const sortedEntries = new Map([...fields.entries()].sort());
|
|
sortedEntries.forEach((value, key) => {
|
|
if (key === tableMetaData.primaryKeyField) {
|
|
dataTableData.columns.splice(0, 0, {
|
|
Header: key,
|
|
accessor: key,
|
|
Cell: ({ value }: any) => <IdCell id={value} />,
|
|
});
|
|
} else {
|
|
dataTableData.columns.push({
|
|
Header: key,
|
|
accessor: key,
|
|
});
|
|
}
|
|
});
|
|
|
|
results.forEach((record) => {
|
|
const row = new Map();
|
|
const values = new Map(Object.entries(record.values));
|
|
values.forEach((value, key) => {
|
|
row.set(key, value);
|
|
});
|
|
dataTableData.rows.push(Object.fromEntries(row));
|
|
});
|
|
|
|
setTableState(table.name);
|
|
});
|
|
})();
|
|
});
|
|
})();
|
|
|
|
const renderMenu = (
|
|
<Menu
|
|
anchorEl={menu}
|
|
anchorOrigin={{ vertical: "bottom", horizontal: "left" }}
|
|
transformOrigin={{ vertical: "top", horizontal: "left" }}
|
|
open={Boolean(menu)}
|
|
onClose={closeMenu}
|
|
keepMounted
|
|
>
|
|
<MenuItem onClick={closeMenu}>Status: Paid</MenuItem>
|
|
<MenuItem onClick={closeMenu}>Status: Refunded</MenuItem>
|
|
<MenuItem onClick={closeMenu}>Status: Canceled</MenuItem>
|
|
<Divider sx={{ margin: "0.5rem 0" }} />
|
|
<MenuItem onClick={closeMenu}>
|
|
<MDTypography variant="button" color="error" fontWeight="regular">
|
|
Remove Filter
|
|
</MDTypography>
|
|
</MenuItem>
|
|
</Menu>
|
|
);
|
|
|
|
return (
|
|
<DashboardLayout>
|
|
<DashboardNavbar />
|
|
<MDBox my={3}>
|
|
<MDBox display="flex" justifyContent="space-between" alignItems="flex-start" mb={2}>
|
|
<MDButton variant="gradient" color="info" onClick={newEntity}>
|
|
<Link href={createPath}>new {table.label}</Link>
|
|
</MDButton>
|
|
<MDBox display="flex">
|
|
<MDButton variant={menu ? "contained" : "outlined"} color="dark" onClick={openMenu}>
|
|
filters
|
|
<Icon>keyboard_arrow_down</Icon>
|
|
</MDButton>
|
|
{renderMenu}
|
|
<MDBox ml={1}>
|
|
<MDButton variant="outlined" color="dark">
|
|
<Icon>description</Icon>
|
|
export csv
|
|
</MDButton>
|
|
</MDBox>
|
|
</MDBox>
|
|
</MDBox>
|
|
<Card>
|
|
<DataTable table={dataTableData} entriesPerPage={false} canSearch />
|
|
</Card>
|
|
</MDBox>
|
|
<Footer />
|
|
</DashboardLayout>
|
|
);
|
|
}
|
|
|
|
export default EntityList;
|