mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
64 lines
2.1 KiB
TypeScript
64 lines
2.1 KiB
TypeScript
![]() |
/*
|
||
|
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 '../../server/supplements/recorder/recorderTypes';
|
||
|
|
||
|
export interface CallLogProps {
|
||
|
log: CallLog[]
|
||
|
}
|
||
|
|
||
|
export const CallLogView: React.FC<CallLogProps> = ({
|
||
|
log
|
||
|
}) => {
|
||
|
const messagesEndRef = React.createRef<HTMLDivElement>();
|
||
|
React.useLayoutEffect(() => {
|
||
|
messagesEndRef.current?.scrollIntoView({ block: 'center', inline: 'nearest' });
|
||
|
}, [messagesEndRef]);
|
||
|
|
||
|
return <div className='vbox'>
|
||
|
<div className='call-log-header' style={{flex: 'none'}}>Log</div>
|
||
|
<div className='call-log' style={{flex: 'auto'}}>
|
||
|
{log.map(callLog => {
|
||
|
return <div className={`call-log-call ${callLog.status}`} key={callLog.id}>
|
||
|
<div className='call-log-call-header'>
|
||
|
<span className={'codicon ' + iconClass(callLog)}></span>{ callLog.title }
|
||
|
</div>
|
||
|
{ callLog.messages.map((message, i) => {
|
||
|
return <div className='call-log-message' key={i}>
|
||
|
{ message.trim() }
|
||
|
</div>;
|
||
|
})}
|
||
|
{ callLog.error ? <div className='call-log-message error'>
|
||
|
{ callLog.error }
|
||
|
</div> : undefined }
|
||
|
</div>
|
||
|
})}
|
||
|
<div ref={messagesEndRef}></div>
|
||
|
</div>
|
||
|
</div>;
|
||
|
};
|
||
|
|
||
|
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';
|
||
|
}
|
||
|
}
|