@@ -2,11 +2,15 @@ import { FolderListRegular } from "@fluentui/react-icons";
2
2
import { useCallback , useEffect , useState } from "react" ;
3
3
import { FileOutput } from "../file-output/file-output.js" ;
4
4
import { OutputTabs } from "../output-tabs/output-tabs.js" ;
5
- import type { OutputViewerProps , ProgramViewer } from "../types.js" ;
5
+ import type { FileOutputViewer , OutputViewerProps , ProgramViewer } from "../types.js" ;
6
6
7
7
import style from "./output-view.module.css" ;
8
8
9
- const FileViewerComponent = ( { program, outputFiles } : OutputViewerProps ) => {
9
+ const FileViewerComponent = ( {
10
+ program,
11
+ outputFiles,
12
+ fileViewers,
13
+ } : OutputViewerProps & { fileViewers : Record < string , FileOutputViewer > } ) => {
10
14
const [ filename , setFilename ] = useState < string > ( "" ) ;
11
15
const [ content , setContent ] = useState < string > ( "" ) ;
12
16
@@ -42,15 +46,20 @@ const FileViewerComponent = ({ program, outputFiles }: OutputViewerProps) => {
42
46
< div className = { style [ "file-viewer" ] } >
43
47
< OutputTabs filenames = { outputFiles } selected = { filename } onSelect = { handleTabSelection } />
44
48
< div className = { style [ "file-viewer-content" ] } >
45
- < FileOutput filename = { filename } content = { content } viewers = { [ ] as any } />
49
+ < FileOutput filename = { filename } content = { content } viewers = { fileViewers } />
46
50
</ div >
47
51
</ div >
48
52
) ;
49
53
} ;
50
54
51
- export const FileViewer : ProgramViewer = {
52
- key : "file-output" ,
53
- label : "Output explorer" ,
54
- icon : < FolderListRegular /> ,
55
- render : FileViewerComponent ,
56
- } ;
55
+ export function createFileViewer ( fileViewers : FileOutputViewer [ ] ) : ProgramViewer {
56
+ const viewerMap = Object . fromEntries ( fileViewers . map ( ( x ) => [ x . key , x ] ) ) ;
57
+ return {
58
+ key : "file-output" ,
59
+ label : "Output explorer" ,
60
+ icon : < FolderListRegular /> ,
61
+ render : ( props ) => {
62
+ return < FileViewerComponent { ...props } fileViewers = { viewerMap } /> ;
63
+ } ,
64
+ } ;
65
+ }
0 commit comments