Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
75 lines
No EOL
1.9 KiB
Text
75 lines
No EOL
1.9 KiB
Text
"use strict";
|
|
/**
|
|
* @license
|
|
* Copyright 2023 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.BidiJSHandle = void 0;
|
|
const JSHandle_js_1 = require("../api/JSHandle.js");
|
|
const Errors_js_1 = require("../common/Errors.js");
|
|
const Deserializer_js_1 = require("./Deserializer.js");
|
|
/**
|
|
* @internal
|
|
*/
|
|
class BidiJSHandle extends JSHandle_js_1.JSHandle {
|
|
static from(value, realm) {
|
|
return new BidiJSHandle(value, realm);
|
|
}
|
|
#remoteValue;
|
|
realm;
|
|
#disposed = false;
|
|
constructor(value, realm) {
|
|
super();
|
|
this.#remoteValue = value;
|
|
this.realm = realm;
|
|
}
|
|
get disposed() {
|
|
return this.#disposed;
|
|
}
|
|
async jsonValue() {
|
|
return await this.evaluate(value => {
|
|
return value;
|
|
});
|
|
}
|
|
asElement() {
|
|
return null;
|
|
}
|
|
async dispose() {
|
|
if (this.#disposed) {
|
|
return;
|
|
}
|
|
this.#disposed = true;
|
|
await this.realm.destroyHandles([this]);
|
|
}
|
|
get isPrimitiveValue() {
|
|
switch (this.#remoteValue.type) {
|
|
case 'string':
|
|
case 'number':
|
|
case 'bigint':
|
|
case 'boolean':
|
|
case 'undefined':
|
|
case 'null':
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
toString() {
|
|
if (this.isPrimitiveValue) {
|
|
return 'JSHandle:' + Deserializer_js_1.BidiDeserializer.deserialize(this.#remoteValue);
|
|
}
|
|
return 'JSHandle@' + this.#remoteValue.type;
|
|
}
|
|
get id() {
|
|
return 'handle' in this.#remoteValue ? this.#remoteValue.handle : undefined;
|
|
}
|
|
remoteValue() {
|
|
return this.#remoteValue;
|
|
}
|
|
remoteObject() {
|
|
throw new Errors_js_1.UnsupportedOperation('Not available in WebDriver BiDi');
|
|
}
|
|
}
|
|
exports.BidiJSHandle = BidiJSHandle;
|
|
//# sourceMappingURL=JSHandle.js.map |