CEC-3150 - Track Deployment User (#268)

This commit is contained in:
Paul Adamsen
2023-01-18 15:21:08 -05:00
committed by GitHub
parent 1bc6419c69
commit eee36cc858
3 changed files with 48 additions and 15 deletions

View File

@@ -80,6 +80,29 @@ exports[`CarUpdatesTab Render 1`] = `
</svg> </svg>
</span> </span>
</th> </th>
<th
class="MuiTableCell-root MuiTableCell-head MuiTableCell-alignCenter"
scope="col"
>
<span
aria-disabled="false"
class="MuiButtonBase-root MuiTableSortLabel-root"
role="button"
tabindex="0"
>
Username
<svg
aria-hidden="true"
class="MuiSvgIcon-root MuiTableSortLabel-icon MuiTableSortLabel-iconDirectionAsc"
focusable="false"
viewBox="0 0 24 24"
>
<path
d="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"
/>
</svg>
</span>
</th>
<th <th
class="MuiTableCell-root MuiTableCell-head MuiTableCell-alignCenter" class="MuiTableCell-root MuiTableCell-head MuiTableCell-alignCenter"
scope="col" scope="col"

View File

@@ -30,6 +30,7 @@ let carUpdateLog = {
{ {
id: 90, id: 90,
carupdate_id: 283, carupdate_id: 283,
username: "test username 1",
status: "package_install_complete", status: "package_install_complete",
error_code: 0, error_code: 0,
created: "2021-08-23T17:06:38.410115Z", created: "2021-08-23T17:06:38.410115Z",
@@ -38,6 +39,7 @@ let carUpdateLog = {
{ {
id: 89, id: 89,
carupdate_id: 283, carupdate_id: 283,
username: "test username 2",
status: "package_install_start", status: "package_install_start",
error_code: 0, error_code: 0,
info: "TEST", info: "TEST",
@@ -47,6 +49,7 @@ let carUpdateLog = {
{ {
id: 88, id: 88,
carupdate_id: 284, carupdate_id: 284,
username: "test username 3",
status: "install_approval_await", status: "install_approval_await",
error_code: 0, error_code: 0,
info: "TEST", info: "TEST",

View File

@@ -35,6 +35,10 @@ const tableColumns = [
id: "update_package_id", id: "update_package_id",
label: "Name", label: "Name",
}, },
{
id: "username",
label: "Username",
},
{ {
id: "status", id: "status",
label: "Status", label: "Status",
@@ -168,6 +172,9 @@ const MainForm = ({ vin, token }) => {
{updateName(row)} {updateName(row)}
</Link> </Link>
</TableCell> </TableCell>
<TableCell align="center">
{row.username}
</TableCell>
<TableCell align="center"> <TableCell align="center">
{row.status} {row.status}
{row.progress > -1 && ( {row.progress > -1 && (
@@ -198,22 +205,22 @@ const MainForm = ({ vin, token }) => {
</TableBody> </TableBody>
<TableFooter> <TableFooter>
<TableRow> <TableRow>
{totalCarUpdates === 0 ? ( {totalCarUpdates === 0 ? (
<td>No Car Updates found</td> <td>No Car Updates found</td>
) : ( ) : (
<TablePagination <TablePagination
rowsPerPageOptions={[5, 10, 25, 100]} rowsPerPageOptions={[5, 10, 25, 100]}
colSpan={6} colSpan={6}
count={totalCarUpdates} count={totalCarUpdates}
rowsPerPage={pageSize} rowsPerPage={pageSize}
page={pageIndex} page={pageIndex}
SelectProps={{ SelectProps={{
inputProps: { "aria-label": "rows per page" }, inputProps: { "aria-label": "rows per page" },
native: true, native: true,
}} }}
onPageChange={handleChangePageIndex} onPageChange={handleChangePageIndex}
onRowsPerPageChange={handleChangePageSize} onRowsPerPageChange={handleChangePageSize}
/>)} />)}
</TableRow> </TableRow>
</TableFooter> </TableFooter>
</Table> </Table>