X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/fc3d9ac09fbb1cdc4fb4b00f2f704795ad365110..8df09b8ee52974e5bcd5fea862c3639f54afb54b:/src/views/process-log-panel/process-log-code-snippet.tsx diff --git a/src/views/process-log-panel/process-log-code-snippet.tsx b/src/views/process-log-panel/process-log-code-snippet.tsx index 99388d66..a7f6c476 100644 --- a/src/views/process-log-panel/process-log-code-snippet.tsx +++ b/src/views/process-log-panel/process-log-code-snippet.tsx @@ -3,10 +3,18 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { MuiThemeProvider, createMuiTheme } from '@material-ui/core/styles'; -import { CodeSnippet, CodeSnippetDataProps } from '~/components/code-snippet/code-snippet'; +import { MuiThemeProvider, createMuiTheme, StyleRulesCallback, withStyles, WithStyles } from '@material-ui/core/styles'; +import { CodeSnippet } from '~/components/code-snippet/code-snippet'; import grey from '@material-ui/core/colors/grey'; +type CssRules = 'codeSnippet'; + +const styles: StyleRulesCallback = () => ({ + codeSnippet: { + maxHeight: '550px', + } +}); + const theme = createMuiTheme({ overrides: { MuiTypography: { @@ -19,13 +27,17 @@ const theme = createMuiTheme({ } }, typography: { - fontFamily: 'VT323' + fontFamily: 'monospace', + useNextVariants: true, } }); -type ProcessLogCodeSnippet = CodeSnippetDataProps; +interface ProcessLogCodeSnippetProps { + lines: string[]; +} -export const ProcessLogCodeSnippet = (props: ProcessLogCodeSnippet) => - - - ; \ No newline at end of file +export const ProcessLogCodeSnippet = withStyles(styles)( + (props: ProcessLogCodeSnippetProps & WithStyles) => + + + ); \ No newline at end of file