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>
344 lines
No EOL
17 KiB
Text
344 lines
No EOL
17 KiB
Text
/**
|
|
* @license
|
|
* Copyright 2022 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
|
|
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
|
|
var _, done = false;
|
|
for (var i = decorators.length - 1; i >= 0; i--) {
|
|
var context = {};
|
|
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
|
|
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
|
|
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
|
|
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
|
|
if (kind === "accessor") {
|
|
if (result === void 0) continue;
|
|
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
|
|
if (_ = accept(result.get)) descriptor.get = _;
|
|
if (_ = accept(result.set)) descriptor.set = _;
|
|
if (_ = accept(result.init)) initializers.unshift(_);
|
|
}
|
|
else if (_ = accept(result)) {
|
|
if (kind === "field") initializers.unshift(_);
|
|
else descriptor[key] = _;
|
|
}
|
|
}
|
|
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
done = true;
|
|
};
|
|
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
var useValue = arguments.length > 2;
|
|
for (var i = 0; i < initializers.length; i++) {
|
|
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
}
|
|
return useValue ? value : void 0;
|
|
};
|
|
var __addDisposableResource = (this && this.__addDisposableResource) || function (env, value, async) {
|
|
if (value !== null && value !== void 0) {
|
|
if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
|
|
var dispose, inner;
|
|
if (async) {
|
|
if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
|
|
dispose = value[Symbol.asyncDispose];
|
|
}
|
|
if (dispose === void 0) {
|
|
if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
|
|
dispose = value[Symbol.dispose];
|
|
if (async) inner = dispose;
|
|
}
|
|
if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
|
|
if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };
|
|
env.stack.push({ value: value, dispose: dispose, async: async });
|
|
}
|
|
else if (async) {
|
|
env.stack.push({ async: true });
|
|
}
|
|
return value;
|
|
};
|
|
var __disposeResources = (this && this.__disposeResources) || (function (SuppressedError) {
|
|
return function (env) {
|
|
function fail(e) {
|
|
env.error = env.hasError ? new SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
|
|
env.hasError = true;
|
|
}
|
|
var r, s = 0;
|
|
function next() {
|
|
while (r = env.stack.pop()) {
|
|
try {
|
|
if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);
|
|
if (r.dispose) {
|
|
var result = r.dispose.call(r.value);
|
|
if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });
|
|
}
|
|
else s |= 1;
|
|
}
|
|
catch (e) {
|
|
fail(e);
|
|
}
|
|
}
|
|
if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();
|
|
if (env.hasError) throw env.error;
|
|
}
|
|
return next();
|
|
};
|
|
})(typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
var e = new Error(message);
|
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
});
|
|
import { WEB_PERMISSION_TO_PROTOCOL_PERMISSION } from '../api/Browser.js';
|
|
import { BrowserContext } from '../api/BrowserContext.js';
|
|
import { EventEmitter } from '../common/EventEmitter.js';
|
|
import { debugError } from '../common/util.js';
|
|
import { assert } from '../util/assert.js';
|
|
import { bubble } from '../util/decorators.js';
|
|
import { UserContext } from './core/UserContext.js';
|
|
import { BidiPage, bidiToPuppeteerCookie, cdpSpecificCookiePropertiesFromPuppeteerToBidi, convertCookiesExpiryCdpToBiDi, convertCookiesPartitionKeyFromPuppeteerToBiDi, convertCookiesSameSiteCdpToBiDi, } from './Page.js';
|
|
import { BidiWorkerTarget } from './Target.js';
|
|
import { BidiFrameTarget, BidiPageTarget } from './Target.js';
|
|
/**
|
|
* @internal
|
|
*/
|
|
let BidiBrowserContext = (() => {
|
|
let _classSuper = BrowserContext;
|
|
let _trustedEmitter_decorators;
|
|
let _trustedEmitter_initializers = [];
|
|
let _trustedEmitter_extraInitializers = [];
|
|
return class BidiBrowserContext extends _classSuper {
|
|
static {
|
|
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
_trustedEmitter_decorators = [bubble()];
|
|
__esDecorate(this, null, _trustedEmitter_decorators, { kind: "accessor", name: "trustedEmitter", static: false, private: false, access: { has: obj => "trustedEmitter" in obj, get: obj => obj.trustedEmitter, set: (obj, value) => { obj.trustedEmitter = value; } }, metadata: _metadata }, _trustedEmitter_initializers, _trustedEmitter_extraInitializers);
|
|
if (_metadata) Object.defineProperty(this, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
}
|
|
static from(browser, userContext, options) {
|
|
const context = new BidiBrowserContext(browser, userContext, options);
|
|
context.#initialize();
|
|
return context;
|
|
}
|
|
#trustedEmitter_accessor_storage = __runInitializers(this, _trustedEmitter_initializers, new EventEmitter());
|
|
get trustedEmitter() { return this.#trustedEmitter_accessor_storage; }
|
|
set trustedEmitter(value) { this.#trustedEmitter_accessor_storage = value; }
|
|
#browser = __runInitializers(this, _trustedEmitter_extraInitializers);
|
|
#defaultViewport;
|
|
// This is public because of cookies.
|
|
userContext;
|
|
#pages = new WeakMap();
|
|
#targets = new Map();
|
|
#overrides = [];
|
|
constructor(browser, userContext, options) {
|
|
super();
|
|
this.#browser = browser;
|
|
this.userContext = userContext;
|
|
this.#defaultViewport = options.defaultViewport;
|
|
}
|
|
#initialize() {
|
|
// Create targets for existing browsing contexts.
|
|
for (const browsingContext of this.userContext.browsingContexts) {
|
|
this.#createPage(browsingContext);
|
|
}
|
|
this.userContext.on('browsingcontext', ({ browsingContext }) => {
|
|
const page = this.#createPage(browsingContext);
|
|
// We need to wait for the DOMContentLoaded as the
|
|
// browsingContext still may be navigating from the about:blank
|
|
if (browsingContext.originalOpener) {
|
|
for (const context of this.userContext.browsingContexts) {
|
|
if (context.id === browsingContext.originalOpener) {
|
|
this.#pages
|
|
.get(context)
|
|
.trustedEmitter.emit("popup" /* PageEvent.Popup */, page);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
this.userContext.on('closed', () => {
|
|
this.trustedEmitter.removeAllListeners();
|
|
});
|
|
}
|
|
#createPage(browsingContext) {
|
|
const page = BidiPage.from(this, browsingContext);
|
|
this.#pages.set(browsingContext, page);
|
|
page.trustedEmitter.on("close" /* PageEvent.Close */, () => {
|
|
this.#pages.delete(browsingContext);
|
|
});
|
|
// -- Target stuff starts here --
|
|
const pageTarget = new BidiPageTarget(page);
|
|
const pageTargets = new Map();
|
|
this.#targets.set(page, [pageTarget, pageTargets]);
|
|
page.trustedEmitter.on("frameattached" /* PageEvent.FrameAttached */, frame => {
|
|
const bidiFrame = frame;
|
|
const target = new BidiFrameTarget(bidiFrame);
|
|
pageTargets.set(bidiFrame, target);
|
|
this.trustedEmitter.emit("targetcreated" /* BrowserContextEvent.TargetCreated */, target);
|
|
});
|
|
page.trustedEmitter.on("framenavigated" /* PageEvent.FrameNavigated */, frame => {
|
|
const bidiFrame = frame;
|
|
const target = pageTargets.get(bidiFrame);
|
|
// If there is no target, then this is the page's frame.
|
|
if (target === undefined) {
|
|
this.trustedEmitter.emit("targetchanged" /* BrowserContextEvent.TargetChanged */, pageTarget);
|
|
}
|
|
else {
|
|
this.trustedEmitter.emit("targetchanged" /* BrowserContextEvent.TargetChanged */, target);
|
|
}
|
|
});
|
|
page.trustedEmitter.on("framedetached" /* PageEvent.FrameDetached */, frame => {
|
|
const bidiFrame = frame;
|
|
const target = pageTargets.get(bidiFrame);
|
|
if (target === undefined) {
|
|
return;
|
|
}
|
|
pageTargets.delete(bidiFrame);
|
|
this.trustedEmitter.emit("targetdestroyed" /* BrowserContextEvent.TargetDestroyed */, target);
|
|
});
|
|
page.trustedEmitter.on("workercreated" /* PageEvent.WorkerCreated */, worker => {
|
|
const bidiWorker = worker;
|
|
const target = new BidiWorkerTarget(bidiWorker);
|
|
pageTargets.set(bidiWorker, target);
|
|
this.trustedEmitter.emit("targetcreated" /* BrowserContextEvent.TargetCreated */, target);
|
|
});
|
|
page.trustedEmitter.on("workerdestroyed" /* PageEvent.WorkerDestroyed */, worker => {
|
|
const bidiWorker = worker;
|
|
const target = pageTargets.get(bidiWorker);
|
|
if (target === undefined) {
|
|
return;
|
|
}
|
|
pageTargets.delete(worker);
|
|
this.trustedEmitter.emit("targetdestroyed" /* BrowserContextEvent.TargetDestroyed */, target);
|
|
});
|
|
page.trustedEmitter.on("close" /* PageEvent.Close */, () => {
|
|
this.#targets.delete(page);
|
|
this.trustedEmitter.emit("targetdestroyed" /* BrowserContextEvent.TargetDestroyed */, pageTarget);
|
|
});
|
|
this.trustedEmitter.emit("targetcreated" /* BrowserContextEvent.TargetCreated */, pageTarget);
|
|
// -- Target stuff ends here --
|
|
return page;
|
|
}
|
|
targets() {
|
|
return [...this.#targets.values()].flatMap(([target, frames]) => {
|
|
return [target, ...frames.values()];
|
|
});
|
|
}
|
|
async newPage(options) {
|
|
const env_1 = { stack: [], error: void 0, hasError: false };
|
|
try {
|
|
const _guard = __addDisposableResource(env_1, await this.waitForScreenshotOperations(), false);
|
|
const type = options?.type === 'window'
|
|
? "window" /* Bidi.BrowsingContext.CreateType.Window */
|
|
: "tab" /* Bidi.BrowsingContext.CreateType.Tab */;
|
|
const context = await this.userContext.createBrowsingContext(type);
|
|
const page = this.#pages.get(context);
|
|
if (!page) {
|
|
throw new Error('Page is not found');
|
|
}
|
|
if (this.#defaultViewport) {
|
|
try {
|
|
await page.setViewport(this.#defaultViewport);
|
|
}
|
|
catch {
|
|
// No support for setViewport in Firefox.
|
|
}
|
|
}
|
|
return page;
|
|
}
|
|
catch (e_1) {
|
|
env_1.error = e_1;
|
|
env_1.hasError = true;
|
|
}
|
|
finally {
|
|
__disposeResources(env_1);
|
|
}
|
|
}
|
|
async close() {
|
|
assert(this.userContext.id !== UserContext.DEFAULT, 'Default BrowserContext cannot be closed!');
|
|
try {
|
|
await this.userContext.remove();
|
|
}
|
|
catch (error) {
|
|
debugError(error);
|
|
}
|
|
this.#targets.clear();
|
|
}
|
|
browser() {
|
|
return this.#browser;
|
|
}
|
|
async pages(_includeAll = false) {
|
|
return [...this.userContext.browsingContexts].map(context => {
|
|
return this.#pages.get(context);
|
|
});
|
|
}
|
|
async overridePermissions(origin, permissions) {
|
|
const permissionsSet = new Set(permissions.map(permission => {
|
|
const protocolPermission = WEB_PERMISSION_TO_PROTOCOL_PERMISSION.get(permission);
|
|
if (!protocolPermission) {
|
|
throw new Error('Unknown permission: ' + permission);
|
|
}
|
|
return permission;
|
|
}));
|
|
await Promise.all(Array.from(WEB_PERMISSION_TO_PROTOCOL_PERMISSION.keys()).map(permission => {
|
|
const result = this.userContext.setPermissions(origin, {
|
|
name: permission,
|
|
}, permissionsSet.has(permission)
|
|
? "granted" /* Bidi.Permissions.PermissionState.Granted */
|
|
: "denied" /* Bidi.Permissions.PermissionState.Denied */);
|
|
this.#overrides.push({ origin, permission });
|
|
// TODO: some permissions are outdated and setting them to denied does
|
|
// not work.
|
|
if (!permissionsSet.has(permission)) {
|
|
return result.catch(debugError);
|
|
}
|
|
return result;
|
|
}));
|
|
}
|
|
async clearPermissionOverrides() {
|
|
const promises = this.#overrides.map(({ permission, origin }) => {
|
|
return this.userContext
|
|
.setPermissions(origin, {
|
|
name: permission,
|
|
}, "prompt" /* Bidi.Permissions.PermissionState.Prompt */)
|
|
.catch(debugError);
|
|
});
|
|
this.#overrides = [];
|
|
await Promise.all(promises);
|
|
}
|
|
get id() {
|
|
if (this.userContext.id === UserContext.DEFAULT) {
|
|
return undefined;
|
|
}
|
|
return this.userContext.id;
|
|
}
|
|
async cookies() {
|
|
const cookies = await this.userContext.getCookies();
|
|
return cookies.map(cookie => {
|
|
return bidiToPuppeteerCookie(cookie, true);
|
|
});
|
|
}
|
|
async setCookie(...cookies) {
|
|
await Promise.all(cookies.map(async (cookie) => {
|
|
const bidiCookie = {
|
|
domain: cookie.domain,
|
|
name: cookie.name,
|
|
value: {
|
|
type: 'string',
|
|
value: cookie.value,
|
|
},
|
|
...(cookie.path !== undefined ? { path: cookie.path } : {}),
|
|
...(cookie.httpOnly !== undefined ? { httpOnly: cookie.httpOnly } : {}),
|
|
...(cookie.secure !== undefined ? { secure: cookie.secure } : {}),
|
|
...(cookie.sameSite !== undefined
|
|
? { sameSite: convertCookiesSameSiteCdpToBiDi(cookie.sameSite) }
|
|
: {}),
|
|
...{ expiry: convertCookiesExpiryCdpToBiDi(cookie.expires) },
|
|
// Chrome-specific properties.
|
|
...cdpSpecificCookiePropertiesFromPuppeteerToBidi(cookie, 'sameParty', 'sourceScheme', 'priority', 'url'),
|
|
};
|
|
return await this.userContext.setCookie(bidiCookie, convertCookiesPartitionKeyFromPuppeteerToBiDi(cookie.partitionKey));
|
|
}));
|
|
}
|
|
};
|
|
})();
|
|
export { BidiBrowserContext };
|
|
//# sourceMappingURL=BrowserContext.js.map |