1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import React from 'react';
6 import { CustomStyleRulesCallback } from 'common/custom-theme';
7 import { WithStyles, Typography, withStyles } from '@material-ui/core';
8 import { ArvadosTheme } from 'common/custom-theme';
9 import classNames from 'classnames';
10 import { connect, DispatchProp } from 'react-redux';
11 import { RootState } from 'store/store';
12 import { FederationConfig } from 'routes/routes';
13 import { renderLinks } from './code-snippet';
14 import { FixedSizeList } from 'react-window';
15 import AutoSizer from "react-virtualized-auto-sizer";
17 type CssRules = 'root' | 'space' | 'content' ;
19 const styles: CustomStyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
21 boxSizing: 'border-box',
23 padding: theme.spacing(1),
34 export interface CodeSnippetDataProps {
36 lineFormatter?: (lines: string[], index: number) => string;
38 apiResponse?: boolean;
42 interface CodeSnippetAuthProps {
43 auth: FederationConfig;
46 type CodeSnippetProps = CodeSnippetDataProps & WithStyles<CssRules>;
48 const mapStateToProps = (state: RootState): CodeSnippetAuthProps => ({
52 export const VirtualCodeSnippet = withStyles(styles)(connect(mapStateToProps)(
53 ({ classes, lines, lineFormatter, linked, className, apiResponse, dispatch, auth }: CodeSnippetProps & CodeSnippetAuthProps & DispatchProp) => {
54 const RenderRow = ({index, style}) => {
55 const lineContents = lineFormatter ? lineFormatter(lines, index) : lines[index];
56 return <span style={style}>{linked ? renderLinks(auth, dispatch)(lineContents) : lineContents}</span>
61 className={classNames([classes.root, className])}>
62 <Typography className={classNames(classes.content, apiResponse ? classes.space : className)} component="pre">
64 {({ height, width }) =>
69 itemCount={lines.length}