X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/4a2789c9974a1fa0f851a3bb2aa24bff5b029c48..cd7f6fd81788f459642408df05be2daf214ef437:/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 85195d40..936b31a5 100644 --- a/src/views/process-panel/process-log-card.tsx +++ b/src/views/process-panel/process-log-card.tsx @@ -2,7 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -import React from 'react'; +import React, { useState } from 'react'; import { StyleRulesCallback, WithStyles, @@ -19,27 +19,44 @@ import { ArvadosTheme } from 'common/custom-theme'; import { CloseIcon, CollectionIcon, + CopyIcon, LogIcon, - MaximizeIcon + MaximizeIcon, + TextDecreaseIcon, + TextIncreaseIcon, + WordWrapOffIcon, + WordWrapOnIcon, } from 'components/icon/icon'; import { Process } from 'store/processes/process'; import { MPVPanelProps } from 'components/multi-panel-view/multi-panel-view'; -import { FilterOption } from 'views/process-log-panel/process-log-panel'; -import { ProcessLogForm } from 'views/process-log-panel/process-log-form'; -import { ProcessLogCodeSnippet } from 'views/process-log-panel/process-log-code-snippet'; +import { + FilterOption, + ProcessLogForm +} from 'views/process-panel/process-log-form'; +import { ProcessLogCodeSnippet } from 'views/process-panel/process-log-code-snippet'; import { DefaultView } from 'components/default-view/default-view'; import { CodeSnippetDataProps } from 'components/code-snippet/code-snippet'; +import CopyToClipboard from 'react-copy-to-clipboard'; -type CssRules = 'card' | 'content' | 'title' | 'iconHeader'; +type CssRules = 'card' | 'content' | 'title' | 'iconHeader' | 'header' | 'root' | 'logViewer' | 'logViewerContainer'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ card: { height: '100%' }, + header: { + paddingTop: theme.spacing.unit, + paddingBottom: theme.spacing.unit, + }, content: { - '&:last-child': { - paddingBottom: theme.spacing.unit * 2, - } + padding: theme.spacing.unit * 0, + height: '100%', + }, + logViewer: { + height: '100%', + }, + logViewerContainer: { + height: '100%', }, title: { overflow: 'hidden', @@ -49,6 +66,9 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ fontSize: '1.875rem', color: theme.customs.colors.green700 }, + root: { + height: '100%', + }, }); export interface ProcessLogsCardDataProps { @@ -60,6 +80,7 @@ export interface ProcessLogsCardDataProps { export interface ProcessLogsCardActionProps { onLogFilterChange: (filter: FilterOption) => void; navigateToLog: (uuid: string) => void; + onCopy: (text: string) => void; } type ProcessLogsCardProps = ProcessLogsCardDataProps @@ -69,17 +90,53 @@ type ProcessLogsCardProps = ProcessLogsCardDataProps & MPVPanelProps; export const ProcessLogsCard = withStyles(styles)( - ({ classes, process, filters, selectedFilter, lines, onLogFilterChange, navigateToLog, - doHidePanel, doMaximizePanel, panelMaximized, panelName }: ProcessLogsCardProps) => - + ({ classes, process, filters, selectedFilter, lines, + onLogFilterChange, navigateToLog, onCopy, + doHidePanel, doMaximizePanel, panelMaximized, panelName }: ProcessLogsCardProps) => { + const [wordWrap, setWordWrap] = useState(true); + const [fontSize, setFontSize] = useState(3); + const fontBaseSize = 10; + const fontStepSize = 1; + + return - } action={ + + + fontSize > 1 && setFontSize(fontSize-1)}> + + + + + + + fontSize < 5 && setFontSize(fontSize+1)}> + + + + + + + + onCopy("Log copied to clipboard")}> + + + + + + + + setWordWrap(!wordWrap)}> + {wordWrap ? : } + + + navigateToLog(process.containerRequest.logUuid!)}> @@ -105,11 +162,12 @@ export const ProcessLogsCard = withStyles(styles)( {lines.length > 0 ? < Grid + className={classes.logViewerContainer} container spacing={24} direction='column'> - - + + : -); +});