213 lines
6.4 KiB
JavaScript
213 lines
6.4 KiB
JavaScript
/**
|
|
* 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 __pwVue, { h as __pwH } from 'vue';
|
|
|
|
/** @typedef {import('../playwright-ct-core/types/component').Component} Component */
|
|
/** @typedef {import('../playwright-ct-core/types/component').JsxComponent} JsxComponent */
|
|
/** @typedef {import('../playwright-ct-core/types/component').ObjectComponent} ObjectComponent */
|
|
/** @typedef {import('vue').Component} FrameworkComponent */
|
|
|
|
/**
|
|
* @param {any} component
|
|
* @returns {component is ObjectComponent}
|
|
*/
|
|
function isObjectComponent(component) {
|
|
return typeof component === 'object' && component && component.__pw_type === 'object-component';
|
|
}
|
|
|
|
/**
|
|
* @param {any} component
|
|
* @returns {component is JsxComponent}
|
|
*/
|
|
function isJsxComponent(component) {
|
|
return typeof component === 'object' && component && component.__pw_type === 'jsx';
|
|
}
|
|
|
|
/**
|
|
* @param {any} child
|
|
*/
|
|
function __pwCreateChild(child) {
|
|
if (Array.isArray(child))
|
|
return child.map(grandChild => __pwCreateChild(grandChild));
|
|
if (isJsxComponent(child) || isObjectComponent(child))
|
|
return __pwCreateWrapper(child);
|
|
return child;
|
|
}
|
|
|
|
/**
|
|
* Exists to support fallthrough attributes:
|
|
* https://vuejs.org/guide/components/attrs.html#fallthrough-attributes
|
|
* @param {any} Component
|
|
* @param {string} key
|
|
* @return {boolean}
|
|
*/
|
|
function __pwComponentHasKeyInProps(Component, key) {
|
|
return typeof Component.props === 'object' && Component.props && key in Component.props;
|
|
}
|
|
|
|
/**
|
|
* @param {JsxComponent} component
|
|
* @returns {any[] | undefined}
|
|
*/
|
|
function __pwJsxChildArray(component) {
|
|
if (!component.props.children)
|
|
return;
|
|
if (Array.isArray(component.props.children))
|
|
return component.props.children;
|
|
return [component.props.children];
|
|
}
|
|
|
|
/**
|
|
* @param {Component} component
|
|
*/
|
|
function __pwCreateComponent(component) {
|
|
const isVueComponent = typeof component.type !== 'string';
|
|
|
|
/**
|
|
* @type {(import('vue').VNode | string)[]}
|
|
*/
|
|
const children = [];
|
|
|
|
/** @type {import('vue').VNodeData} */
|
|
const nodeData = {};
|
|
nodeData.attrs = {};
|
|
nodeData.props = {};
|
|
nodeData.scopedSlots = {};
|
|
nodeData.on = {};
|
|
|
|
if (component.__pw_type === 'jsx') {
|
|
for (const child of __pwJsxChildArray(component) || []) {
|
|
if (isJsxComponent(child) && child.type === 'template') {
|
|
const slotProperty = Object.keys(child.props).find(k => k.startsWith('v-slot:'));
|
|
const slot = slotProperty ? slotProperty.substring('v-slot:'.length) : 'default';
|
|
nodeData.scopedSlots[slot] = () => __pwJsxChildArray(child)?.map(c => __pwCreateChild(c));
|
|
} else {
|
|
children.push(__pwCreateChild(child));
|
|
}
|
|
}
|
|
|
|
for (const [key, value] of Object.entries(component.props)) {
|
|
if (key.startsWith('v-on:')) {
|
|
const event = key.substring('v-on:'.length);
|
|
nodeData.on[event] = value;
|
|
} else {
|
|
if (isVueComponent && __pwComponentHasKeyInProps(component.type, key))
|
|
nodeData.props[key] = value;
|
|
else
|
|
nodeData.attrs[key] = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (component.__pw_type === 'object-component') {
|
|
// Vue test util syntax.
|
|
for (const [key, value] of Object.entries(component.slots || {})) {
|
|
const list = (Array.isArray(value) ? value : [value]).map(v => __pwCreateChild(v));
|
|
if (key === 'default')
|
|
children.push(...list);
|
|
else
|
|
nodeData.scopedSlots[key] = () => list;
|
|
}
|
|
nodeData.props = component.props || {};
|
|
for (const [key, value] of Object.entries(component.on || {}))
|
|
nodeData.on[key] = value;
|
|
}
|
|
|
|
/** @type {(string|import('vue').VNode)[] | undefined} */
|
|
let lastArg;
|
|
if (Object.entries(nodeData.scopedSlots).length) {
|
|
if (children.length)
|
|
nodeData.scopedSlots.default = () => children;
|
|
} else if (children.length) {
|
|
lastArg = children;
|
|
}
|
|
|
|
return { Component: component.type, nodeData, slots: lastArg };
|
|
}
|
|
|
|
/**
|
|
* @param {Component} component
|
|
* @returns {import('vue').VNode}
|
|
*/
|
|
function __pwCreateWrapper(component) {
|
|
const { Component, nodeData, slots } = __pwCreateComponent(component);
|
|
const wrapper = __pwH(Component, nodeData, slots);
|
|
return wrapper;
|
|
}
|
|
|
|
const instanceKey = Symbol('instanceKey');
|
|
const wrapperKey = Symbol('wrapperKey');
|
|
|
|
window.playwrightMount = async (component, rootElement, hooksConfig) => {
|
|
let options = {};
|
|
for (const hook of window.__pw_hooks_before_mount || [])
|
|
options = await hook({ hooksConfig, Vue: __pwVue });
|
|
|
|
const instance = new __pwVue({
|
|
...options,
|
|
render: () => {
|
|
const wrapper = __pwCreateWrapper(component);
|
|
/** @type {any} */ (rootElement)[wrapperKey] = wrapper;
|
|
return wrapper;
|
|
},
|
|
}).$mount();
|
|
rootElement.appendChild(instance.$el);
|
|
/** @type {any} */ (rootElement)[instanceKey] = instance;
|
|
|
|
for (const hook of window.__pw_hooks_after_mount || [])
|
|
await hook({ hooksConfig, instance });
|
|
};
|
|
|
|
window.playwrightUnmount = async rootElement => {
|
|
const component = rootElement[instanceKey];
|
|
if (!component)
|
|
throw new Error('Component was not mounted');
|
|
component.$destroy();
|
|
component.$el.remove();
|
|
delete rootElement[instanceKey];
|
|
};
|
|
|
|
window.playwrightUpdate = async (element, options) => {
|
|
const wrapper = /** @type {any} */(element)[wrapperKey];
|
|
if (!wrapper)
|
|
throw new Error('Component was not mounted');
|
|
|
|
const component = wrapper.componentInstance;
|
|
if (!component)
|
|
throw new Error('Updating a native HTML element is not supported');
|
|
|
|
const { nodeData, slots } = __pwCreateComponent(options);
|
|
|
|
for (const [name, value] of Object.entries(nodeData.on || {})) {
|
|
component.$on(name, value);
|
|
component.$listeners[name] = value;
|
|
}
|
|
|
|
Object.assign(component.$scopedSlots, nodeData.scopedSlots);
|
|
component.$slots.default = slots;
|
|
|
|
for (const [key, value] of Object.entries(nodeData.props || {}))
|
|
component[key] = value;
|
|
|
|
if (!Object.keys(nodeData.props || {}).length)
|
|
component.$forceUpdate();
|
|
};
|