/* 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 './callLog.css'; import * as React from 'react'; import type { CallLog } from './recorderTypes'; import { msToString } from '@web/uiUtils'; import { asLocator } from '@isomorphic/locatorGenerators'; import type { Language } from '@isomorphic/locatorGenerators'; export type CallLogProps = { language: Language; log: CallLog[]; }; export const CallLogView: React.FC = ({ language, log, }) => { const messagesEndRef = React.useRef(null); const [expandOverrides, setExpandOverrides] = React.useState>(new Map()); React.useLayoutEffect(() => { if (log.find(callLog => callLog.reveal)) messagesEndRef.current?.scrollIntoView({ block: 'center', inline: 'nearest' }); }, [messagesEndRef, log]); return
{log.map(callLog => { const expandOverride = expandOverrides.get(callLog.id); const isExpanded = typeof expandOverride === 'boolean' ? expandOverride : callLog.status !== 'done'; const locator = callLog.params.selector ? asLocator(language, callLog.params.selector, false) : null; const locatorCall = `page.${locator}`; let titlePrefix = callLog.title; let titleSuffix = ''; if (callLog.title.startsWith('expect.to') || callLog.title.startsWith('expect.not.to')) { titlePrefix = 'expect('; titleSuffix = `).${callLog.title.substring('expect.'.length)}()`; } else if (callLog.title.startsWith('locator.')) { titlePrefix = ''; titleSuffix = `.${callLog.title.substring('locator.'.length)}()`; } else if (locator || callLog.params.url) { titlePrefix = callLog.title + '('; titleSuffix = ')'; } return
{ const newOverrides = new Map(expandOverrides); newOverrides.set(callLog.id, !isExpanded); setExpandOverrides(newOverrides); }}> { titlePrefix } { callLog.params.url ? {callLog.params.url} : undefined } { locator ? {locatorCall} : undefined } { titleSuffix } { typeof callLog.duration === 'number' ? — {msToString(callLog.duration)} : undefined}
{ (isExpanded ? callLog.messages : []).map((message, i) => { return
{ message.trim() }
; })} { !!callLog.error && }
; })}
; }; function iconClass(callLog: CallLog): string { switch (callLog.status) { case 'done': return 'codicon-check'; case 'in-progress': return 'codicon-clock'; case 'paused': return 'codicon-debug-pause'; case 'error': return 'codicon-error'; } }