/** * 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. */ // @ts-check // This file is injected into the registry as text, no dependencies are allowed. import * as __pwReact from 'react'; import { createRoot as __pwCreateRoot } from 'react-dom/client'; /** @typedef {import('../playwright-ct-core/types/component').JsxComponentChild} JsxComponentChild */ /** @typedef {import('../playwright-ct-core/types/component').JsxComponent} JsxComponent */ /** @typedef {import('react').FunctionComponent} FrameworkComponent */ /** @type {Map Promise>} */ const __pwLoaderRegistry = new Map(); /** @type {Map} */ const __pwRegistry = new Map(); /** @type {Map} */ const __pwRootRegistry = new Map(); /** * @param {{[key: string]: () => Promise}} components */ export function pwRegister(components) { for (const [name, value] of Object.entries(components)) __pwLoaderRegistry.set(name, value); } /** * @param {any} component * @returns {component is JsxComponent} */ function isComponent(component) { return !(typeof component !== 'object' || Array.isArray(component)); } /** * @param {JsxComponent | JsxComponentChild} component */ async function __pwResolveComponent(component) { if (!isComponent(component)) return; let componentFactory = __pwLoaderRegistry.get(component.type); if (!componentFactory) { // Lookup by shorthand. for (const [name, value] of __pwLoaderRegistry) { if (component.type.endsWith(`_${name}`)) { componentFactory = value; break; } } } if (!componentFactory && component.type[0].toUpperCase() === component.type[0]) throw new Error(`Unregistered component: ${component.type}. Following components are registered: ${[...__pwRegistry.keys()]}`); if (componentFactory) __pwRegistry.set(component.type, await componentFactory()); if ('children' in component) await Promise.all(component.children.map(child => __pwResolveComponent(child))); } /** * @param {JsxComponentChild} child */ function __renderChild(child) { if (Array.isArray(child)) return child.map(grandChild => __renderChild(grandChild)); if (isComponent(child)) return __pwRender(child); return child; } /** * @param {JsxComponent} component */ function __pwRender(component) { const componentFunc = __pwRegistry.get(component.type); const children = component.children.map(child => __renderChild(child)).filter(child => { if (typeof child === 'string') return !!child.trim(); return true; }); return __pwReact.createElement(componentFunc || component.type, component.props, children); } window.playwrightMount = async (component, rootElement, hooksConfig) => { if (component.kind !== 'jsx') throw new Error('Object mount notation is not supported'); await __pwResolveComponent(component); let App = () => __pwRender(component); for (const hook of window.__pw_hooks_before_mount || []) { const wrapper = await hook({ App, hooksConfig }); if (wrapper) App = () => wrapper; } if (__pwRootRegistry.has(rootElement)) { throw new Error( 'Attempting to mount a component into an container that already has a React root' ); } const root = __pwCreateRoot(rootElement); __pwRootRegistry.set(rootElement, root); root.render(App()); for (const hook of window.__pw_hooks_after_mount || []) await hook({ hooksConfig }); }; window.playwrightUnmount = async rootElement => { const root = __pwRootRegistry.get(rootElement); if (root === undefined) throw new Error('Component was not mounted'); root.unmount(); __pwRootRegistry.delete(rootElement); }; window.playwrightUpdate = async (rootElement, component) => { if (component.kind !== 'jsx') throw new Error('Object mount notation is not supported'); await __pwResolveComponent(component); const root = __pwRootRegistry.get(rootElement); if (root === undefined) throw new Error('Component was not mounted'); root.render(__pwRender(component)); };