fix: remove import cycle in query handlers (#11234)

This commit is contained in:
Alex Rudenko 2023-10-23 17:21:48 +02:00 committed by GitHub
parent edec7d53f8
commit 954c75f9a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 9 deletions

View File

@ -131,10 +131,7 @@ module.exports = {
}, },
], ],
'import/no-cycle': [ 'import/no-cycle': ['error', {maxDepth: Infinity}],
'error',
{maxDepth: Infinity, allowUnsafeDynamicCyclicDependency: true},
],
'no-restricted-syntax': [ 'no-restricted-syntax': [
'error', 'error',

View File

@ -32,6 +32,7 @@ import {assert} from '../util/assert.js';
import {AsyncIterableUtil} from '../util/AsyncIterableUtil.js'; import {AsyncIterableUtil} from '../util/AsyncIterableUtil.js';
import {throwIfDisposed} from '../util/decorators.js'; import {throwIfDisposed} from '../util/decorators.js';
import {_isElementHandle} from './ElementHandleSymbol.js';
import type { import type {
KeyboardTypeOptions, KeyboardTypeOptions,
KeyPressOptions, KeyPressOptions,
@ -149,6 +150,11 @@ export interface ElementScreenshotOptions extends ScreenshotOptions {
export abstract class ElementHandle< export abstract class ElementHandle<
ElementType extends Node = Element, ElementType extends Node = Element,
> extends JSHandle<ElementType> { > extends JSHandle<ElementType> {
/**
* @internal
*/
declare [_isElementHandle]: boolean;
/** /**
* A given method will have it's `this` replaced with an isolated version of * A given method will have it's `this` replaced with an isolated version of
* `this` when decorated with this decorator. * `this` when decorated with this decorator.
@ -212,6 +218,7 @@ export abstract class ElementHandle<
constructor(handle: JSHandle<ElementType>) { constructor(handle: JSHandle<ElementType>) {
super(); super();
this.handle = handle; this.handle = handle;
this[_isElementHandle] = true;
} }
/** /**

View File

@ -0,0 +1,20 @@
/**
* Copyright 2023 Google Inc. All rights reserved.
*
* 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.
*/
/**
* @internal
*/
export const _isElementHandle = Symbol('_isElementHandle');

View File

@ -15,6 +15,7 @@
*/ */
import type {ElementHandle} from '../api/ElementHandle.js'; import type {ElementHandle} from '../api/ElementHandle.js';
import {_isElementHandle} from '../api/ElementHandleSymbol.js';
import type {Frame} from '../api/Frame.js'; import type {Frame} from '../api/Frame.js';
import type {WaitForSelectorOptions} from '../api/Page.js'; import type {WaitForSelectorOptions} from '../api/Page.js';
import type PuppeteerUtil from '../injected/injected.js'; import type PuppeteerUtil from '../injected/injected.js';
@ -132,8 +133,7 @@ export class QueryHandler {
return context.puppeteerUtil; return context.puppeteerUtil;
}) })
); );
const {ElementHandle} = await import('../api/ElementHandle.js'); if (!(_isElementHandle in result)) {
if (!(result instanceof ElementHandle)) {
return null; return null;
} }
return result.move(); return result.move();
@ -151,10 +151,9 @@ export class QueryHandler {
selector: string, selector: string,
options: WaitForSelectorOptions options: WaitForSelectorOptions
): Promise<ElementHandle<Node> | null> { ): Promise<ElementHandle<Node> | null> {
const {ElementHandle} = await import('../api/ElementHandle.js');
let frame!: Frame; let frame!: Frame;
using element = await (async () => { using element = await (async () => {
if (!(elementOrFrame instanceof ElementHandle)) { if (!(_isElementHandle in elementOrFrame)) {
frame = elementOrFrame; frame = elementOrFrame;
return; return;
} }
@ -198,7 +197,7 @@ export class QueryHandler {
throw signal.reason; throw signal.reason;
} }
if (!(handle instanceof ElementHandle)) { if (!(_isElementHandle in handle)) {
return null; return null;
} }
return await frame.mainRealm().transferHandle(handle); return await frame.mainRealm().transferHandle(handle);