/* 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 { TestCase, TestFile } from '@playwright-test/reporters/html'; import * as React from 'react'; import './colors.css'; import './common.css'; import { Filter } from './filter'; import { HeaderView } from './headerView'; import { Route } from './links'; import type { LoadedReport } from './loadedReport'; import './reportView.css'; import { MetadataView } from './metadataView'; import { TestCaseView } from './testCaseView'; import { TestFilesView } from './testFilesView'; import './theme.css'; declare global { interface Window { playwrightReportBase64?: string; } } export const ReportView: React.FC<{ report: LoadedReport | undefined, }> = ({ report }) => { const searchParams = new URLSearchParams(window.location.hash.slice(1)); const [expandedFiles, setExpandedFiles] = React.useState>(new Map()); const [filterText, setFilterText] = React.useState(searchParams.get('q') || ''); const filter = React.useMemo(() => Filter.parse(filterText), [filterText]); return
{report?.json() && } {report?.json().metadata && } {!!report && }
; }; const TestCaseViewLoader: React.FC<{ report: LoadedReport, }> = ({ report }) => { const searchParams = new URLSearchParams(window.location.hash.slice(1)); const [test, setTest] = React.useState(); const testId = searchParams.get('testId'); React.useEffect(() => { (async () => { if (!testId || testId === test?.testId) return; const fileId = testId.split('-')[0]; if (!fileId) return; const file = await report.entry(`${fileId}.json`) as TestFile; for (const t of file.tests) { if (t.testId === testId) { setTest(t); break; } } })(); }, [test, report, testId]); return ; };