/* 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 { msToString } from '@web/uiUtils'; import * as React from 'react'; import './actionList.css'; import * as modelUtil from './modelUtil'; import './tabbedPane.css'; import { asLocator } from '@isomorphic/locatorGenerators'; import type { Language } from '@isomorphic/locatorGenerators'; export interface ActionListProps { actions: ActionTraceEvent[], selectedAction: ActionTraceEvent | undefined, highlightedAction: ActionTraceEvent | undefined, sdkLanguage: Language | undefined; onSelected: (action: ActionTraceEvent) => void, onHighlighted: (action: ActionTraceEvent | undefined) => void, setSelectedTab: (tab: string) => void, } export const ActionList: React.FC = ({ actions = [], selectedAction, highlightedAction, sdkLanguage, onSelected = () => {}, onHighlighted = () => {}, setSelectedTab = () => {}, }) => { const actionListRef = React.createRef(); React.useEffect(() => { actionListRef.current?.focus(); }, [selectedAction, actionListRef]); return
{ if (event.key !== 'ArrowDown' && event.key !== 'ArrowUp') return; event.stopPropagation(); event.preventDefault(); const index = selectedAction ? actions.indexOf(selectedAction) : -1; let newIndex = index; if (event.key === 'ArrowDown') { if (index === -1) newIndex = 0; else newIndex = Math.min(index + 1, actions.length - 1); } if (event.key === 'ArrowUp') { if (index === -1) newIndex = actions.length - 1; else newIndex = Math.max(index - 1, 0); } const element = actionListRef.current?.children.item(newIndex); scrollIntoViewIfNeeded(element); onSelected(actions[newIndex]); }} ref={actionListRef} > {actions.length === 0 &&
No actions recorded
} {actions.map(action => )}
; }; const ActionListItem: React.FC<{ action: ActionTraceEvent, highlightedAction: ActionTraceEvent | undefined, onSelected: (action: ActionTraceEvent) => void, onHighlighted: (action: ActionTraceEvent | undefined) => void, selectedAction: ActionTraceEvent | undefined, sdkLanguage: Language | undefined, setSelectedTab: (tab: string) => void, }> = ({ action, onSelected, onHighlighted, highlightedAction, selectedAction, sdkLanguage, setSelectedTab }) => { const { metadata } = action; const selectedSuffix = action === selectedAction ? ' selected' : ''; const highlightedSuffix = action === highlightedAction ? ' highlighted' : ''; const error = metadata.error?.error?.message; const { errors, warnings } = modelUtil.stats(action); const locator = metadata.params.selector ? asLocator(sdkLanguage || 'javascript', metadata.params.selector) : undefined; const divRef = React.useRef(null); React.useEffect(() => { if (divRef.current && selectedAction === action) scrollIntoViewIfNeeded(divRef.current); }, [selectedAction, action]); return
onSelected(action)} onMouseEnter={() => onHighlighted(action)} onMouseLeave={() => (highlightedAction === action) && onHighlighted(undefined)} ref={divRef} >
{metadata.apiName} {locator &&
{locator}
} {metadata.method === 'goto' && metadata.params.url &&
{metadata.params.url}
}
{metadata.endTime ? msToString(metadata.endTime - metadata.startTime) : 'Timed Out'}
setSelectedTab('console')}> {!!errors &&
{errors}
} {!!warnings &&
{warnings}
}
{error &&
}
; }; function scrollIntoViewIfNeeded(element?: Element | null) { if (!element) return; if ((element as any)?.scrollIntoViewIfNeeded) (element as any).scrollIntoViewIfNeeded(false); else element?.scrollIntoView(); }