Init: RoggioApp Architecture, Prisma Schema, API MVP
This commit is contained in:
+194
@@ -0,0 +1,194 @@
|
||||
import { globalValue } from "./GlobalValue.js";
|
||||
import * as Predicate from "./Predicate.js";
|
||||
/**
|
||||
* @since 2.0.0
|
||||
* @category symbols
|
||||
*/
|
||||
export const NodeInspectSymbol = /*#__PURE__*/Symbol.for("nodejs.util.inspect.custom");
|
||||
/**
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export const toJSON = x => {
|
||||
try {
|
||||
if (Predicate.hasProperty(x, "toJSON") && Predicate.isFunction(x["toJSON"]) && x["toJSON"].length === 0) {
|
||||
return x.toJSON();
|
||||
} else if (Array.isArray(x)) {
|
||||
return x.map(toJSON);
|
||||
}
|
||||
} catch {
|
||||
return {};
|
||||
}
|
||||
return redact(x);
|
||||
};
|
||||
const CIRCULAR = "[Circular]";
|
||||
/** @internal */
|
||||
export function formatDate(date) {
|
||||
try {
|
||||
return date.toISOString();
|
||||
} catch {
|
||||
return "Invalid Date";
|
||||
}
|
||||
}
|
||||
function safeToString(input) {
|
||||
try {
|
||||
const s = input.toString();
|
||||
return typeof s === "string" ? s : String(s);
|
||||
} catch {
|
||||
return "[toString threw]";
|
||||
}
|
||||
}
|
||||
/** @internal */
|
||||
export function formatPropertyKey(name) {
|
||||
return Predicate.isString(name) ? JSON.stringify(name) : String(name);
|
||||
}
|
||||
/** @internal */
|
||||
export function formatUnknown(input, options) {
|
||||
const space = options?.space ?? 0;
|
||||
const seen = new WeakSet();
|
||||
const gap = !space ? "" : Predicate.isNumber(space) ? " ".repeat(space) : space;
|
||||
const ind = d => gap.repeat(d);
|
||||
const wrap = (v, body) => {
|
||||
const ctor = v?.constructor;
|
||||
return ctor && ctor !== Object.prototype.constructor && ctor.name ? `${ctor.name}(${body})` : body;
|
||||
};
|
||||
const ownKeys = o => {
|
||||
try {
|
||||
return Reflect.ownKeys(o);
|
||||
} catch {
|
||||
return ["[ownKeys threw]"];
|
||||
}
|
||||
};
|
||||
function go(v, d = 0) {
|
||||
if (Array.isArray(v)) {
|
||||
if (seen.has(v)) return CIRCULAR;
|
||||
seen.add(v);
|
||||
if (!gap || v.length <= 1) return `[${v.map(x => go(x, d)).join(",")}]`;
|
||||
const inner = v.map(x => go(x, d + 1)).join(",\n" + ind(d + 1));
|
||||
return `[\n${ind(d + 1)}${inner}\n${ind(d)}]`;
|
||||
}
|
||||
if (Predicate.isDate(v)) return formatDate(v);
|
||||
if (!options?.ignoreToString && Predicate.hasProperty(v, "toString") && Predicate.isFunction(v["toString"]) && v["toString"] !== Object.prototype.toString && v["toString"] !== Array.prototype.toString) {
|
||||
const s = safeToString(v);
|
||||
if (v instanceof Error && v.cause) {
|
||||
return `${s} (cause: ${go(v.cause, d)})`;
|
||||
}
|
||||
return s;
|
||||
}
|
||||
if (Predicate.isString(v)) return JSON.stringify(v);
|
||||
if (Predicate.isNumber(v) || v == null || Predicate.isBoolean(v) || Predicate.isSymbol(v)) return String(v);
|
||||
if (Predicate.isBigInt(v)) return String(v) + "n";
|
||||
if (v instanceof Set || v instanceof Map) {
|
||||
if (seen.has(v)) return CIRCULAR;
|
||||
seen.add(v);
|
||||
return `${v.constructor.name}(${go(Array.from(v), d)})`;
|
||||
}
|
||||
if (Predicate.isObject(v)) {
|
||||
if (seen.has(v)) return CIRCULAR;
|
||||
seen.add(v);
|
||||
const keys = ownKeys(v);
|
||||
if (!gap || keys.length <= 1) {
|
||||
const body = `{${keys.map(k => `${formatPropertyKey(k)}:${go(v[k], d)}`).join(",")}}`;
|
||||
return wrap(v, body);
|
||||
}
|
||||
const body = `{\n${keys.map(k => `${ind(d + 1)}${formatPropertyKey(k)}: ${go(v[k], d + 1)}`).join(",\n")}\n${ind(d)}}`;
|
||||
return wrap(v, body);
|
||||
}
|
||||
return String(v);
|
||||
}
|
||||
return go(input, 0);
|
||||
}
|
||||
/**
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export const format = x => JSON.stringify(x, null, 2);
|
||||
/**
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export const BaseProto = {
|
||||
toJSON() {
|
||||
return toJSON(this);
|
||||
},
|
||||
[NodeInspectSymbol]() {
|
||||
return this.toJSON();
|
||||
},
|
||||
toString() {
|
||||
return format(this.toJSON());
|
||||
}
|
||||
};
|
||||
/**
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export class Class {
|
||||
/**
|
||||
* @since 2.0.0
|
||||
*/
|
||||
[NodeInspectSymbol]() {
|
||||
return this.toJSON();
|
||||
}
|
||||
/**
|
||||
* @since 2.0.0
|
||||
*/
|
||||
toString() {
|
||||
return format(this.toJSON());
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export const toStringUnknown = (u, whitespace = 2) => {
|
||||
if (typeof u === "string") {
|
||||
return u;
|
||||
}
|
||||
try {
|
||||
return typeof u === "object" ? stringifyCircular(u, whitespace) : String(u);
|
||||
} catch {
|
||||
return String(u);
|
||||
}
|
||||
};
|
||||
/**
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export const stringifyCircular = (obj, whitespace) => {
|
||||
let cache = [];
|
||||
const retVal = JSON.stringify(obj, (_key, value) => typeof value === "object" && value !== null ? cache.includes(value) ? undefined // circular reference
|
||||
: cache.push(value) && (redactableState.fiberRefs !== undefined && isRedactable(value) ? value[symbolRedactable](redactableState.fiberRefs) : value) : value, whitespace);
|
||||
cache = undefined;
|
||||
return retVal;
|
||||
};
|
||||
/**
|
||||
* @since 3.10.0
|
||||
* @category redactable
|
||||
*/
|
||||
export const symbolRedactable = /*#__PURE__*/Symbol.for("effect/Inspectable/Redactable");
|
||||
/**
|
||||
* @since 3.10.0
|
||||
* @category redactable
|
||||
*/
|
||||
export const isRedactable = u => typeof u === "object" && u !== null && symbolRedactable in u;
|
||||
const redactableState = /*#__PURE__*/globalValue("effect/Inspectable/redactableState", () => ({
|
||||
fiberRefs: undefined
|
||||
}));
|
||||
/**
|
||||
* @since 3.10.0
|
||||
* @category redactable
|
||||
*/
|
||||
export const withRedactableContext = (context, f) => {
|
||||
const prev = redactableState.fiberRefs;
|
||||
redactableState.fiberRefs = context;
|
||||
try {
|
||||
return f();
|
||||
} finally {
|
||||
redactableState.fiberRefs = prev;
|
||||
}
|
||||
};
|
||||
/**
|
||||
* @since 3.10.0
|
||||
* @category redactable
|
||||
*/
|
||||
export const redact = u => {
|
||||
if (isRedactable(u) && redactableState.fiberRefs !== undefined) {
|
||||
return u[symbolRedactable](redactableState.fiberRefs);
|
||||
}
|
||||
return u;
|
||||
};
|
||||
//# sourceMappingURL=Inspectable.js.map
|
||||
Reference in New Issue
Block a user