X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/88b93fd119eecca0247a9bb5a6fe14015d582826..cba2e466c8708c1a89ae2d766d31fa9d04d6f3be:/src/views/process-panel/process-log-card.tsx diff --git a/src/views/process-panel/process-log-card.tsx b/src/views/process-panel/process-log-card.tsx index 4890c726..4fd8f234 100644 --- a/src/views/process-panel/process-log-card.tsx +++ b/src/views/process-panel/process-log-card.tsx @@ -15,6 +15,7 @@ import { Grid, Typography, } from '@material-ui/core'; +import { useAsyncInterval } from 'common/use-async-interval'; import { ArvadosTheme } from 'common/custom-theme'; import { CloseIcon, @@ -28,7 +29,7 @@ import { WordWrapOffIcon, WordWrapOnIcon, } from 'components/icon/icon'; -import { Process } from 'store/processes/process'; +import { Process, isProcessRunning } from 'store/processes/process'; import { MPVPanelProps } from 'components/multi-panel-view/multi-panel-view'; import { FilterOption, @@ -62,11 +63,12 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, title: { overflow: 'hidden', - paddingTop: theme.spacing.unit * 0.5 + paddingTop: theme.spacing.unit * 0.5, + color: theme.customs.colors.greyD }, iconHeader: { fontSize: '1.875rem', - color: theme.customs.colors.green700 + color: theme.customs.colors.greyL }, root: { height: '100%', @@ -83,6 +85,7 @@ export interface ProcessLogsCardActionProps { onLogFilterChange: (filter: FilterOption) => void; navigateToLog: (uuid: string) => void; onCopy: (text: string) => void; + pollProcessLogs: (processUuid: string) => Promise; } type ProcessLogsCardProps = ProcessLogsCardDataProps @@ -93,13 +96,17 @@ type ProcessLogsCardProps = ProcessLogsCardDataProps export const ProcessLogsCard = withStyles(styles)( ({ classes, process, filters, selectedFilter, lines, - onLogFilterChange, navigateToLog, onCopy, + onLogFilterChange, navigateToLog, onCopy, pollProcessLogs, doHidePanel, doMaximizePanel, doUnMaximizePanel, panelMaximized, panelName }: ProcessLogsCardProps) => { const [wordWrap, setWordWrap] = useState(true); const [fontSize, setFontSize] = useState(3); const fontBaseSize = 10; const fontStepSize = 1; + useAsyncInterval(() => ( + pollProcessLogs(process.containerRequest.uuid) + ), isProcessRunning(process) ? 2000 : null); + return }); -