CEC-3577: fetch T.Rex log from the cloud (#283)

* CEC-3577: fetch T.Rex log from the cloud

* tabs?

* CSS

* smells

* fix smells and warnings

* suggestions
This commit is contained in:
Eduard Voronkin
2023-02-17 14:53:36 -08:00
committed by GitHub
parent f2aa5d00fb
commit 749f1672da
7 changed files with 397 additions and 4 deletions

View File

@@ -0,0 +1,36 @@
import { Typography } from "@material-ui/core";
import clsx from "clsx";
import React from "react";
import { useParams } from "react-router";
import { useUserContext } from "../../Contexts/UserContext";
import { VehicleProvider } from "../../Contexts/VehicleContext";
import TRexLogsTable from "../../Controls/TRexLogs";
import useStyles from "../../useStyles";
const MainForm = () => {
const { vin } = useParams();
const classes = useStyles();
const {
token: {
idToken: { jwtToken: token },
},
} = useUserContext();
return (
<div className={clsx(classes.paper, classes.tableSize)}>
<Typography variant="h6" className={classes.labelInline}>
T.Rex Logs
</Typography>
<TRexLogsTable vin={vin} token={token} classes={classes} />
</div>
);
};
const TRexLogsTab = () => (
<VehicleProvider>
<MainForm />
</VehicleProvider>
);
export default TRexLogsTab;