mirror of
https://github.com/lemeow125/Borrowing-TrackerFrontend.git
synced 2025-01-19 23:33:10 +08:00
129 lines
4.2 KiB
TypeScript
129 lines
4.2 KiB
TypeScript
|
import { useQuery } from "@tanstack/react-query";
|
||
|
import Header from "../../Components/Header/Header";
|
||
|
import styles from "../../styles";
|
||
|
import { EquipmentsAPI } from "../../Components/API/API";
|
||
|
import { CircularProgress } from "@mui/material";
|
||
|
import Table from "@mui/material/Table";
|
||
|
import TableBody from "@mui/material/TableBody";
|
||
|
import TableCell 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 { colors } from "../../styles";
|
||
|
|
||
|
export default function EquipmentListPage() {
|
||
|
const equipments = useQuery({
|
||
|
queryKey: ["equipments"],
|
||
|
queryFn: EquipmentsAPI,
|
||
|
});
|
||
|
if (equipments.isLoading) {
|
||
|
return (
|
||
|
<div style={styles.background}>
|
||
|
<Header label={"Dashboard"} />
|
||
|
<div
|
||
|
style={{
|
||
|
...styles.flex_column,
|
||
|
...{
|
||
|
alignItems: "center",
|
||
|
justifyContent: "center",
|
||
|
paddingTop: "64px",
|
||
|
},
|
||
|
}}
|
||
|
>
|
||
|
<CircularProgress style={{ height: "128px", width: "128px" }} />
|
||
|
<p
|
||
|
style={{
|
||
|
...styles.text_dark,
|
||
|
...styles.text_L,
|
||
|
}}
|
||
|
>
|
||
|
Loading
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
return (
|
||
|
<div style={styles.background}>
|
||
|
<Header label={"SKU List"} />
|
||
|
<div
|
||
|
style={{
|
||
|
...styles.flex_column,
|
||
|
display: "flex",
|
||
|
alignItems: "center",
|
||
|
justifyContent: "center",
|
||
|
height: "100%",
|
||
|
width: "100%",
|
||
|
minHeight: "100%",
|
||
|
minWidth: "100%",
|
||
|
flexWrap: "wrap",
|
||
|
overflowY: "scroll",
|
||
|
}}
|
||
|
>
|
||
|
<div style={{ width: "90%" }}>
|
||
|
<TableContainer component={Paper}>
|
||
|
<Table sx={{ minWidth: "32rem" }} size="medium">
|
||
|
<TableHead>
|
||
|
<TableRow style={{ backgroundColor: colors.header_color }}>
|
||
|
<TableCell style={styles.text_light}>ID</TableCell>
|
||
|
<TableCell align="center" style={styles.text_light}>
|
||
|
Name
|
||
|
</TableCell>
|
||
|
<TableCell align="center" style={styles.text_light}>
|
||
|
Description
|
||
|
</TableCell>
|
||
|
<TableCell align="center" style={styles.text_light}>
|
||
|
Last Modified
|
||
|
</TableCell>
|
||
|
</TableRow>
|
||
|
</TableHead>
|
||
|
<TableBody>
|
||
|
{equipments.data ? (
|
||
|
equipments.data.map((equipment) => (
|
||
|
<TableRow
|
||
|
key={equipment.id}
|
||
|
sx={{ "&:last-child td, &:last-child th": { border: 0 } }}
|
||
|
onClick={() => {
|
||
|
console.log("HEH");
|
||
|
}}
|
||
|
>
|
||
|
<TableCell align="center" component="th" scope="row">
|
||
|
{equipment.id}
|
||
|
</TableCell>
|
||
|
<TableCell align="center" component="th" scope="row">
|
||
|
{equipment.name}
|
||
|
</TableCell>
|
||
|
|
||
|
<TableCell align="center" component="th" scope="row">
|
||
|
{equipment.description}
|
||
|
</TableCell>
|
||
|
<TableCell align="right">
|
||
|
<div
|
||
|
style={{
|
||
|
...styles.flex_column,
|
||
|
...{ alignItems: "center" },
|
||
|
}}
|
||
|
>
|
||
|
<div>{equipment.last_updated}</div>
|
||
|
<div>
|
||
|
{equipment.last_updated_by
|
||
|
? "by " + equipment.last_updated_by
|
||
|
: ""}
|
||
|
</div>
|
||
|
</div>
|
||
|
</TableCell>
|
||
|
</TableRow>
|
||
|
))
|
||
|
) : (
|
||
|
<></>
|
||
|
)}
|
||
|
</TableBody>
|
||
|
</Table>
|
||
|
</TableContainer>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|