- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
366 lines
12 KiB
JavaScript
366 lines
12 KiB
JavaScript
"use strict";
|
|
|
|
const conversions = require("webidl-conversions");
|
|
const utils = require("./utils.js");
|
|
|
|
const HTMLConstructor_jsdom_living_helpers_html_constructor =
|
|
require("../../jsdom/living/helpers/html-constructor.js").HTMLConstructor;
|
|
const ceReactionsPreSteps_jsdom_living_helpers_custom_elements =
|
|
require("../../jsdom/living/helpers/custom-elements.js").ceReactionsPreSteps;
|
|
const ceReactionsPostSteps_jsdom_living_helpers_custom_elements =
|
|
require("../../jsdom/living/helpers/custom-elements.js").ceReactionsPostSteps;
|
|
const serializeURLwhatwg_url = require("whatwg-url").serializeURL;
|
|
const implSymbol = utils.implSymbol;
|
|
const ctorRegistrySymbol = utils.ctorRegistrySymbol;
|
|
const HTMLElement = require("./HTMLElement.js");
|
|
|
|
const interfaceName = "HTMLTrackElement";
|
|
|
|
exports.is = value => {
|
|
return utils.isObject(value) && Object.hasOwn(value, implSymbol) && value[implSymbol] instanceof Impl.implementation;
|
|
};
|
|
exports.isImpl = value => {
|
|
return utils.isObject(value) && value instanceof Impl.implementation;
|
|
};
|
|
exports.convert = (globalObject, value, { context = "The provided value" } = {}) => {
|
|
if (exports.is(value)) {
|
|
return utils.implForWrapper(value);
|
|
}
|
|
throw new globalObject.TypeError(`${context} is not of type 'HTMLTrackElement'.`);
|
|
};
|
|
|
|
function makeWrapper(globalObject, newTarget) {
|
|
let proto;
|
|
if (newTarget !== undefined) {
|
|
proto = newTarget.prototype;
|
|
}
|
|
|
|
if (!utils.isObject(proto)) {
|
|
proto = globalObject[ctorRegistrySymbol]["HTMLTrackElement"].prototype;
|
|
}
|
|
|
|
return Object.create(proto);
|
|
}
|
|
|
|
exports.create = (globalObject, constructorArgs, privateData) => {
|
|
const wrapper = makeWrapper(globalObject);
|
|
return exports.setup(wrapper, globalObject, constructorArgs, privateData);
|
|
};
|
|
|
|
exports.createImpl = (globalObject, constructorArgs, privateData) => {
|
|
const wrapper = exports.create(globalObject, constructorArgs, privateData);
|
|
return utils.implForWrapper(wrapper);
|
|
};
|
|
|
|
exports._internalSetup = (wrapper, globalObject) => {
|
|
HTMLElement._internalSetup(wrapper, globalObject);
|
|
};
|
|
|
|
exports.setup = (wrapper, globalObject, constructorArgs = [], privateData = {}) => {
|
|
privateData.wrapper = wrapper;
|
|
|
|
exports._internalSetup(wrapper, globalObject);
|
|
Object.defineProperty(wrapper, implSymbol, {
|
|
value: new Impl.implementation(globalObject, constructorArgs, privateData),
|
|
configurable: true
|
|
});
|
|
|
|
wrapper[implSymbol][utils.wrapperSymbol] = wrapper;
|
|
if (Impl.init) {
|
|
Impl.init(wrapper[implSymbol]);
|
|
}
|
|
return wrapper;
|
|
};
|
|
|
|
exports.new = (globalObject, newTarget) => {
|
|
const wrapper = makeWrapper(globalObject, newTarget);
|
|
|
|
exports._internalSetup(wrapper, globalObject);
|
|
Object.defineProperty(wrapper, implSymbol, {
|
|
value: Object.create(Impl.implementation.prototype),
|
|
configurable: true
|
|
});
|
|
|
|
wrapper[implSymbol][utils.wrapperSymbol] = wrapper;
|
|
if (Impl.init) {
|
|
Impl.init(wrapper[implSymbol]);
|
|
}
|
|
return wrapper[implSymbol];
|
|
};
|
|
|
|
const exposed = new Set(["Window"]);
|
|
|
|
exports.install = (globalObject, globalNames) => {
|
|
if (!globalNames.some(globalName => exposed.has(globalName))) {
|
|
return;
|
|
}
|
|
|
|
const ctorRegistry = utils.initCtorRegistry(globalObject);
|
|
class HTMLTrackElement extends globalObject.HTMLElement {
|
|
constructor() {
|
|
return HTMLConstructor_jsdom_living_helpers_html_constructor(globalObject, interfaceName, new.target);
|
|
}
|
|
|
|
get kind() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get kind' called on an object that is not a valid instance of HTMLTrackElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("kind");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set kind(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set kind' called on an object that is not a valid instance of HTMLTrackElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'kind' property on 'HTMLTrackElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("kind", V);
|
|
} finally {
|
|
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get src() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get src' called on an object that is not a valid instance of HTMLTrackElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
try {
|
|
const impl = esValue[implSymbol];
|
|
const value = impl._reflectGetTheContentAttribute("src");
|
|
if (value === null) {
|
|
return "";
|
|
}
|
|
|
|
const document = impl._ownerDocument;
|
|
if (this._srcURLCacheKey === value && this._baseURLCache === document._baseURLCache) {
|
|
return this._srcURLCache;
|
|
}
|
|
|
|
this._srcURLCacheKey = value;
|
|
this._baseURLCache = document._baseURLCache;
|
|
|
|
const urlRecord = document.encodingParseAURL(value);
|
|
if (urlRecord !== null) {
|
|
this._srcURLCache = serializeURLwhatwg_url(urlRecord);
|
|
return this._srcURLCache;
|
|
}
|
|
this._srcURLCache = conversions.USVString(value);
|
|
return this._srcURLCache;
|
|
} finally {
|
|
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set src(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set src' called on an object that is not a valid instance of HTMLTrackElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["USVString"](V, {
|
|
context: "Failed to set the 'src' property on 'HTMLTrackElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("src", V);
|
|
} finally {
|
|
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get srclang() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get srclang' called on an object that is not a valid instance of HTMLTrackElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("srclang");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set srclang(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set srclang' called on an object that is not a valid instance of HTMLTrackElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'srclang' property on 'HTMLTrackElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("srclang", V);
|
|
} finally {
|
|
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get label() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get label' called on an object that is not a valid instance of HTMLTrackElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("label");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set label(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set label' called on an object that is not a valid instance of HTMLTrackElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'label' property on 'HTMLTrackElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("label", V);
|
|
} finally {
|
|
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get default() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get default' called on an object that is not a valid instance of HTMLTrackElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
try {
|
|
return esValue[implSymbol]._reflectGetTheContentAttribute("default") !== null;
|
|
} finally {
|
|
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set default(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set default' called on an object that is not a valid instance of HTMLTrackElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["boolean"](V, {
|
|
context: "Failed to set the 'default' property on 'HTMLTrackElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
try {
|
|
if (V) {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("default", "");
|
|
} else {
|
|
esValue[implSymbol]._reflectDeleteTheContentAttribute("default");
|
|
}
|
|
} finally {
|
|
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get readyState() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get readyState' called on an object that is not a valid instance of HTMLTrackElement."
|
|
);
|
|
}
|
|
|
|
return esValue[implSymbol]["readyState"];
|
|
}
|
|
}
|
|
Object.defineProperties(HTMLTrackElement.prototype, {
|
|
kind: { enumerable: true },
|
|
src: { enumerable: true },
|
|
srclang: { enumerable: true },
|
|
label: { enumerable: true },
|
|
default: { enumerable: true },
|
|
readyState: { enumerable: true },
|
|
[Symbol.toStringTag]: { value: "HTMLTrackElement", configurable: true },
|
|
NONE: { value: 0, enumerable: true },
|
|
LOADING: { value: 1, enumerable: true },
|
|
LOADED: { value: 2, enumerable: true },
|
|
ERROR: { value: 3, enumerable: true }
|
|
});
|
|
Object.defineProperties(HTMLTrackElement, {
|
|
NONE: { value: 0, enumerable: true },
|
|
LOADING: { value: 1, enumerable: true },
|
|
LOADED: { value: 2, enumerable: true },
|
|
ERROR: { value: 3, enumerable: true }
|
|
});
|
|
ctorRegistry[interfaceName] = HTMLTrackElement;
|
|
|
|
Object.defineProperty(globalObject, interfaceName, {
|
|
configurable: true,
|
|
writable: true,
|
|
value: HTMLTrackElement
|
|
});
|
|
};
|
|
|
|
const Impl = require("../../jsdom/living/nodes/HTMLTrackElement-impl.js");
|