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>
79 lines
No EOL
2.9 KiB
Text
79 lines
No EOL
2.9 KiB
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.PreloadScriptStorage = void 0;
|
|
/*
|
|
* Copyright 2023 Google LLC.
|
|
* 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.
|
|
*/
|
|
const ErrorResponse_js_1 = require("../../../protocol/ErrorResponse.js");
|
|
/**
|
|
* Container class for preload scripts.
|
|
*/
|
|
class PreloadScriptStorage {
|
|
/** Tracks all BiDi preload scripts. */
|
|
#scripts = new Set();
|
|
/**
|
|
* Finds all entries that match the given filter (OR logic).
|
|
*/
|
|
find(filter) {
|
|
if (!filter) {
|
|
return [...this.#scripts];
|
|
}
|
|
return [...this.#scripts].filter((script) => {
|
|
// Global scripts have no contexts or userContext
|
|
if (script.contexts === undefined && script.userContexts === undefined) {
|
|
return true;
|
|
}
|
|
if (filter.targetId !== undefined &&
|
|
script.targetIds.has(filter.targetId)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
});
|
|
}
|
|
add(preloadScript) {
|
|
this.#scripts.add(preloadScript);
|
|
}
|
|
/** Deletes all BiDi preload script entries that match the given filter. */
|
|
remove(id) {
|
|
const script = [...this.#scripts].find((script) => script.id === id);
|
|
if (script === undefined) {
|
|
throw new ErrorResponse_js_1.NoSuchScriptException(`No preload script with id '${id}'`);
|
|
}
|
|
this.#scripts.delete(script);
|
|
}
|
|
/** Gets the preload script with the given ID, if any, otherwise throws. */
|
|
getPreloadScript(id) {
|
|
const script = [...this.#scripts].find((script) => script.id === id);
|
|
if (script === undefined) {
|
|
throw new ErrorResponse_js_1.NoSuchScriptException(`No preload script with id '${id}'`);
|
|
}
|
|
return script;
|
|
}
|
|
onCdpTargetCreated(targetId, userContext) {
|
|
const scriptInUserContext = [...this.#scripts].filter((script) => {
|
|
// Global scripts
|
|
if (!script.userContexts && !script.contexts) {
|
|
return true;
|
|
}
|
|
return script.userContexts?.includes(userContext);
|
|
});
|
|
for (const script of scriptInUserContext) {
|
|
script.targetIds.add(targetId);
|
|
}
|
|
}
|
|
}
|
|
exports.PreloadScriptStorage = PreloadScriptStorage;
|
|
//# sourceMappingURL=PreloadScriptStorage.js.map |