/* 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 { CallLog, Mode, Source } from '@playwright-core/server/recorder/recorderTypes'; import { Source as SourceView } from '@web/components/source'; import { SplitView } from '@web/components/splitView'; import { Toolbar } from '@web/components/toolbar'; import { ToolbarButton } from '@web/components/toolbarButton'; import * as React from 'react'; import { CallLogView } from './callLog'; import './recorder.css'; declare global { interface Window { playwrightSetFileIfNeeded: (file: string) => void; playwrightSetSelector: (selector: string, focus?: boolean) => void; dispatch(data: any): Promise; } } export interface RecorderProps { sources: Source[], paused: boolean, log: Map, mode: Mode, initialSelector?: string, } export const Recorder: React.FC = ({ sources, paused, log, mode, initialSelector, }) => { const [selector, setSelector] = React.useState(initialSelector || ''); const [focusSelectorInput, setFocusSelectorInput] = React.useState(false); window.playwrightSetSelector = (selector: string, focus?: boolean) => { setSelector(selector); setFocusSelectorInput(!!focus); }; const [f, setFile] = React.useState(); const file = f || sources[0]?.file; const source = sources.find(s => s.file === file) || { isRecorded: false, text: '', language: 'javascript', file: '', highlight: [] }; window.playwrightSetFileIfNeeded = (value: string) => { const newSource = sources.find(s => s.file === value); // Do not forcefully switch between two recorded sources, because // user did explicitly choose one. if (newSource && !newSource.isRecorded || !source.isRecorded) setFile(value); }; const messagesEndRef = React.createRef(); React.useLayoutEffect(() => { messagesEndRef.current?.scrollIntoView({ block: 'center', inline: 'nearest' }); }, [messagesEndRef]); const selectorInputRef = React.createRef(); React.useLayoutEffect(() => { if (focusSelectorInput && selectorInputRef.current) { selectorInputRef.current.select(); selectorInputRef.current.focus(); setFocusSelectorInput(false); } }, [focusSelectorInput, selectorInputRef]); return
{ window.dispatch({ event: 'setMode', params: { mode: mode === 'recording' ? 'none' : 'recording' } }); }}>Record { copy(source.text); }}> { window.dispatch({ event: 'resume' }); }}> { window.dispatch({ event: 'pause' }); }}> { window.dispatch({ event: 'step' }); }}>
Target:
{ window.dispatch({ event: 'clear' }); }}>
{ window.dispatch({ event: 'setMode', params: { mode: mode === 'inspecting' ? 'none' : 'inspecting' } }).catch(() => { }); }}>Explore { setSelector(event.target.value); window.dispatch({ event: 'selectorUpdated', params: { selector: event.target.value } }); }} /> { copy(selectorInputRef.current?.value || ''); }}>
; }; function copy(text: string) { const textArea = document.createElement('textarea'); textArea.style.position = 'absolute'; textArea.style.zIndex = '-1000'; textArea.value = text; document.body.appendChild(textArea); textArea.select(); document.execCommand('copy'); textArea.remove(); }