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>
125 lines
No EOL
3.4 KiB
Text
125 lines
No EOL
3.4 KiB
Text
"use strict";
|
|
/**
|
|
* @license
|
|
* Copyright 2023 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.BidiSerializer = void 0;
|
|
const util_js_1 = require("../common/util.js");
|
|
/**
|
|
* @internal
|
|
*/
|
|
class UnserializableError extends Error {
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
class BidiSerializer {
|
|
static serialize(arg) {
|
|
switch (typeof arg) {
|
|
case 'symbol':
|
|
case 'function':
|
|
throw new UnserializableError(`Unable to serializable ${typeof arg}`);
|
|
case 'object':
|
|
return this.#serializeObject(arg);
|
|
case 'undefined':
|
|
return {
|
|
type: 'undefined',
|
|
};
|
|
case 'number':
|
|
return this.#serializeNumber(arg);
|
|
case 'bigint':
|
|
return {
|
|
type: 'bigint',
|
|
value: arg.toString(),
|
|
};
|
|
case 'string':
|
|
return {
|
|
type: 'string',
|
|
value: arg,
|
|
};
|
|
case 'boolean':
|
|
return {
|
|
type: 'boolean',
|
|
value: arg,
|
|
};
|
|
}
|
|
}
|
|
static #serializeNumber(arg) {
|
|
let value;
|
|
if (Object.is(arg, -0)) {
|
|
value = '-0';
|
|
}
|
|
else if (Object.is(arg, Infinity)) {
|
|
value = 'Infinity';
|
|
}
|
|
else if (Object.is(arg, -Infinity)) {
|
|
value = '-Infinity';
|
|
}
|
|
else if (Object.is(arg, NaN)) {
|
|
value = 'NaN';
|
|
}
|
|
else {
|
|
value = arg;
|
|
}
|
|
return {
|
|
type: 'number',
|
|
value,
|
|
};
|
|
}
|
|
static #serializeObject(arg) {
|
|
if (arg === null) {
|
|
return {
|
|
type: 'null',
|
|
};
|
|
}
|
|
else if (Array.isArray(arg)) {
|
|
const parsedArray = arg.map(subArg => {
|
|
return this.serialize(subArg);
|
|
});
|
|
return {
|
|
type: 'array',
|
|
value: parsedArray,
|
|
};
|
|
}
|
|
else if ((0, util_js_1.isPlainObject)(arg)) {
|
|
try {
|
|
JSON.stringify(arg);
|
|
}
|
|
catch (error) {
|
|
if (error instanceof TypeError &&
|
|
error.message.startsWith('Converting circular structure to JSON')) {
|
|
error.message += ' Recursive objects are not allowed.';
|
|
}
|
|
throw error;
|
|
}
|
|
const parsedObject = [];
|
|
for (const key in arg) {
|
|
parsedObject.push([this.serialize(key), this.serialize(arg[key])]);
|
|
}
|
|
return {
|
|
type: 'object',
|
|
value: parsedObject,
|
|
};
|
|
}
|
|
else if ((0, util_js_1.isRegExp)(arg)) {
|
|
return {
|
|
type: 'regexp',
|
|
value: {
|
|
pattern: arg.source,
|
|
flags: arg.flags,
|
|
},
|
|
};
|
|
}
|
|
else if ((0, util_js_1.isDate)(arg)) {
|
|
return {
|
|
type: 'date',
|
|
value: arg.toISOString(),
|
|
};
|
|
}
|
|
throw new UnserializableError('Custom object serialization not possible. Use plain objects instead.');
|
|
}
|
|
}
|
|
exports.BidiSerializer = BidiSerializer;
|
|
//# sourceMappingURL=Serializer.js.map |