import React, { useState, useEffect } from "react"; import { connect, ConnectedProps } from "react-redux"; import { makeStyles } from "@material-ui/core/styles"; import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import Button from "@material-ui/core/Button"; import TableContainer from "@material-ui/core/TableContainer"; import TableHead from "@material-ui/core/TableHead"; import TableRow from "@material-ui/core/TableRow"; import Paper from "@material-ui/core/Paper"; import Box from "@material-ui/core/Box"; import Collapse from "@material-ui/core/Collapse"; import IconButton from "@material-ui/core/IconButton"; import KeyboardArrowUpIcon from "@material-ui/icons/KeyboardArrowUp"; import KeyboardArrowDownIcon from "@material-ui/icons/KeyboardArrowDown"; import Typography from "@material-ui/core/Typography"; import TableFooter from "@material-ui/core/TableFooter"; import TablePagination from "@material-ui/core/TablePagination"; import Alert from "@material-ui/lab/Alert"; import AlertTitle from "@material-ui/lab/AlertTitle"; import SyntaxHighlighter from "react-syntax-highlighter"; import syntaxHighlightStyle from "react-syntax-highlighter/dist/esm/styles/hljs/github"; import { AppState } from "../store"; import { listDeadTasksAsync } from "../actions/tasksActions"; import { DeadTask } from "../api"; import TablePaginationActions, { defaultPageSize, rowsPerPageOptions, } from "./TablePaginationActions"; import { timeAgo } from "../timeutil"; const useStyles = makeStyles({ table: { minWidth: 650, }, }); const useRowStyles = makeStyles({ root: { "& > *": { borderBottom: "unset", }, }, }); function mapStateToProps(state: AppState) { return { loading: state.tasks.deadTasks.loading, tasks: state.tasks.deadTasks.data, pollInterval: state.settings.pollInterval, }; } const mapDispatchToProps = { listDeadTasksAsync }; const connector = connect(mapStateToProps, mapDispatchToProps); type ReduxProps = ConnectedProps; interface Props { queue: string; // name of the queue. totalTaskCount: number; // totoal number of dead tasks. } function DeadTasksTable(props: Props & ReduxProps) { const { pollInterval, listDeadTasksAsync, queue } = props; const classes = useStyles(); const [page, setPage] = useState(0); const [pageSize, setPageSize] = useState(defaultPageSize); const handleChangePage = ( event: React.MouseEvent | null, newPage: number ) => { setPage(newPage); }; const handleChangeRowsPerPage = ( event: React.ChangeEvent ) => { setPageSize(parseInt(event.target.value, 10)); setPage(0); }; useEffect(() => { const pageOpts = { page: page + 1, size: pageSize }; listDeadTasksAsync(queue, pageOpts); const interval = setInterval(() => { listDeadTasksAsync(queue, pageOpts); }, pollInterval * 1000); return () => clearInterval(interval); }, [pollInterval, listDeadTasksAsync, queue, page, pageSize]); if (props.tasks.length === 0) { return ( Info No dead tasks at this time. ); } const columns = [ { label: "" }, { label: "ID" }, { label: "Type" }, { label: "Last Failed" }, { label: "Last Error" }, { label: "Actions" }, ]; return ( {columns.map((col) => ( {col.label} ))} {props.tasks.map((task) => ( ))}
); } function Row(props: { task: DeadTask }) { const { task } = props; const [open, setOpen] = React.useState(false); const classes = useRowStyles(); return ( setOpen(!open)} > {open ? : } {task.id} {task.type} {timeAgo(task.last_failed_at)} {task.error_message} Payload {JSON.stringify(task.payload, null, 2)} ); } export default connector(DeadTasksTable);