/* Copyright (c) Microsoft Corporation. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import type { ActionTraceEvent } from '@trace/trace'; import { SplitView } from '@web/components/splitView'; import * as React from 'react'; import { ActionList } from './actionList'; import { CallTab } from './callTab'; import { ConsoleTab } from './consoleTab'; import * as modelUtil from './modelUtil'; import type { MultiTraceModel } from './modelUtil'; import { NetworkTab } from './networkTab'; import { SnapshotTab } from './snapshotTab'; import { SourceTab } from './sourceTab'; import { TabbedPane } from '@web/components/tabbedPane'; import type { TabbedPaneTabModel } from '@web/components/tabbedPane'; import { Timeline } from './timeline'; import './workbench.css'; import { MetadataView } from './metadataView'; export const Workbench: React.FunctionComponent<{ model?: MultiTraceModel, hideTimelineBars?: boolean, hideStackFrames?: boolean, showSourcesFirst?: boolean, }> = ({ model, hideTimelineBars, hideStackFrames, showSourcesFirst }) => { const [selectedAction, setSelectedAction] = React.useState(undefined); const [highlightedAction, setHighlightedAction] = React.useState(); const [selectedNavigatorTab, setSelectedNavigatorTab] = React.useState('actions'); const [selectedPropertiesTab, setSelectedPropertiesTab] = React.useState(showSourcesFirst ? 'source' : 'call'); const activeAction = model ? highlightedAction || selectedAction : undefined; React.useEffect(() => { if (selectedAction && model?.actions.includes(selectedAction)) return; const failedAction = model?.actions.find(a => a.error); if (failedAction) setSelectedAction(failedAction); else if (model?.actions.length) setSelectedAction(model.actions[model.actions.length - 1]); }, [model, selectedAction, setSelectedAction, setSelectedPropertiesTab]); const { errors, warnings } = activeAction ? modelUtil.stats(activeAction) : { errors: 0, warnings: 0 }; const consoleCount = errors + warnings; const networkCount = activeAction ? modelUtil.resourcesForAction(activeAction).length : 0; const sdkLanguage = model?.sdkLanguage || 'javascript'; const callTab: TabbedPaneTabModel = { id: 'call', title: showSourcesFirst ? 'Log' : 'Call', render: () => }; const sourceTab: TabbedPaneTabModel = { id: 'source', title: 'Source', render: () => }; const consoleTab: TabbedPaneTabModel = { id: 'console', title: 'Console', count: consoleCount, render: () => }; const networkTab: TabbedPaneTabModel = { id: 'network', title: 'Network', count: networkCount, render: () => }; const tabs: TabbedPaneTabModel[] = showSourcesFirst ? [ sourceTab, consoleTab, networkTab, callTab, ] : [ callTab, consoleTab, networkTab, sourceTab, ]; return
setSelectedAction(action)} hideTimelineBars={hideTimelineBars} /> { setSelectedAction(action); }} onHighlighted={action => { setHighlightedAction(action); }} revealConsole={() => setSelectedPropertiesTab('console')} /> }, { id: 'metadata', title: 'Metadata', count: 0, component: }, ] } selectedTab={selectedNavigatorTab} setSelectedTab={setSelectedNavigatorTab}/>
; };