43 lines
900 B
Plaintext
43 lines
900 B
Plaintext
import { entityKind } from "../../entity.js";
|
|
import { PgColumn, PgColumnBuilder } from "./common.js";
|
|
class PgJsonBuilder extends PgColumnBuilder {
|
|
static [entityKind] = "PgJsonBuilder";
|
|
constructor(name) {
|
|
super(name, "json", "PgJson");
|
|
}
|
|
/** @internal */
|
|
build(table) {
|
|
return new PgJson(table, this.config);
|
|
}
|
|
}
|
|
class PgJson extends PgColumn {
|
|
static [entityKind] = "PgJson";
|
|
constructor(table, config) {
|
|
super(table, config);
|
|
}
|
|
getSQLType() {
|
|
return "json";
|
|
}
|
|
mapToDriverValue(value) {
|
|
return JSON.stringify(value);
|
|
}
|
|
mapFromDriverValue(value) {
|
|
if (typeof value === "string") {
|
|
try {
|
|
return JSON.parse(value);
|
|
} catch {
|
|
return value;
|
|
}
|
|
}
|
|
return value;
|
|
}
|
|
}
|
|
function json(name) {
|
|
return new PgJsonBuilder(name ?? "");
|
|
}
|
|
export {
|
|
PgJson,
|
|
PgJsonBuilder,
|
|
json
|
|
};
|
|
//# sourceMappingURL=json.js.map |