Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
184 lines
5.4 KiB
Plaintext
184 lines
5.4 KiB
Plaintext
import { ColumnBuilder } from "../../column-builder.js";
|
|
import { Column } from "../../column.js";
|
|
import { entityKind } from "../../entity.js";
|
|
import { ForeignKeyBuilder } from "../foreign-keys.js";
|
|
import { iife } from "../../tracing-utils.js";
|
|
import { uniqueKeyName } from "../unique-constraint.js";
|
|
class GelColumnBuilder extends ColumnBuilder {
|
|
foreignKeyConfigs = [];
|
|
static [entityKind] = "GelColumnBuilder";
|
|
array(size) {
|
|
return new GelArrayBuilder(this.config.name, this, size);
|
|
}
|
|
references(ref, actions = {}) {
|
|
this.foreignKeyConfigs.push({ ref, actions });
|
|
return this;
|
|
}
|
|
unique(name, config) {
|
|
this.config.isUnique = true;
|
|
this.config.uniqueName = name;
|
|
this.config.uniqueType = config?.nulls;
|
|
return this;
|
|
}
|
|
generatedAlwaysAs(as) {
|
|
this.config.generated = {
|
|
as,
|
|
type: "always",
|
|
mode: "stored"
|
|
};
|
|
return this;
|
|
}
|
|
/** @internal */
|
|
buildForeignKeys(column, table) {
|
|
return this.foreignKeyConfigs.map(({ ref, actions }) => {
|
|
return iife(
|
|
(ref2, actions2) => {
|
|
const builder = new ForeignKeyBuilder(() => {
|
|
const foreignColumn = ref2();
|
|
return { columns: [column], foreignColumns: [foreignColumn] };
|
|
});
|
|
if (actions2.onUpdate) {
|
|
builder.onUpdate(actions2.onUpdate);
|
|
}
|
|
if (actions2.onDelete) {
|
|
builder.onDelete(actions2.onDelete);
|
|
}
|
|
return builder.build(table);
|
|
},
|
|
ref,
|
|
actions
|
|
);
|
|
});
|
|
}
|
|
/** @internal */
|
|
buildExtraConfigColumn(table) {
|
|
return new GelExtraConfigColumn(table, this.config);
|
|
}
|
|
}
|
|
class GelColumn extends Column {
|
|
constructor(table, config) {
|
|
if (!config.uniqueName) {
|
|
config.uniqueName = uniqueKeyName(table, [config.name]);
|
|
}
|
|
super(table, config);
|
|
this.table = table;
|
|
}
|
|
static [entityKind] = "GelColumn";
|
|
}
|
|
class GelExtraConfigColumn extends GelColumn {
|
|
static [entityKind] = "GelExtraConfigColumn";
|
|
getSQLType() {
|
|
return this.getSQLType();
|
|
}
|
|
indexConfig = {
|
|
order: this.config.order ?? "asc",
|
|
nulls: this.config.nulls ?? "last",
|
|
opClass: this.config.opClass
|
|
};
|
|
defaultConfig = {
|
|
order: "asc",
|
|
nulls: "last",
|
|
opClass: void 0
|
|
};
|
|
asc() {
|
|
this.indexConfig.order = "asc";
|
|
return this;
|
|
}
|
|
desc() {
|
|
this.indexConfig.order = "desc";
|
|
return this;
|
|
}
|
|
nullsFirst() {
|
|
this.indexConfig.nulls = "first";
|
|
return this;
|
|
}
|
|
nullsLast() {
|
|
this.indexConfig.nulls = "last";
|
|
return this;
|
|
}
|
|
/**
|
|
* ### PostgreSQL documentation quote
|
|
*
|
|
* > An operator class with optional parameters can be specified for each column of an index.
|
|
* The operator class identifies the operators to be used by the index for that column.
|
|
* For example, a B-tree index on four-byte integers would use the int4_ops class;
|
|
* this operator class includes comparison functions for four-byte integers.
|
|
* In practice the default operator class for the column's data type is usually sufficient.
|
|
* The main point of having operator classes is that for some data types, there could be more than one meaningful ordering.
|
|
* For example, we might want to sort a complex-number data type either by absolute value or by real part.
|
|
* We could do this by defining two operator classes for the data type and then selecting the proper class when creating an index.
|
|
* More information about operator classes check:
|
|
*
|
|
* ### Useful links
|
|
* https://www.postgresql.org/docs/current/sql-createindex.html
|
|
*
|
|
* https://www.postgresql.org/docs/current/indexes-opclass.html
|
|
*
|
|
* https://www.postgresql.org/docs/current/xindex.html
|
|
*
|
|
* ### Additional types
|
|
* If you have the `Gel_vector` extension installed in your database, you can use the
|
|
* `vector_l2_ops`, `vector_ip_ops`, `vector_cosine_ops`, `vector_l1_ops`, `bit_hamming_ops`, `bit_jaccard_ops`, `halfvec_l2_ops`, `sparsevec_l2_ops` options, which are predefined types.
|
|
*
|
|
* **You can always specify any string you want in the operator class, in case Drizzle doesn't have it natively in its types**
|
|
*
|
|
* @param opClass
|
|
* @returns
|
|
*/
|
|
op(opClass) {
|
|
this.indexConfig.opClass = opClass;
|
|
return this;
|
|
}
|
|
}
|
|
class IndexedColumn {
|
|
static [entityKind] = "IndexedColumn";
|
|
constructor(name, keyAsName, type, indexConfig) {
|
|
this.name = name;
|
|
this.keyAsName = keyAsName;
|
|
this.type = type;
|
|
this.indexConfig = indexConfig;
|
|
}
|
|
name;
|
|
keyAsName;
|
|
type;
|
|
indexConfig;
|
|
}
|
|
class GelArrayBuilder extends GelColumnBuilder {
|
|
static [entityKind] = "GelArrayBuilder";
|
|
constructor(name, baseBuilder, size) {
|
|
super(name, "array", "GelArray");
|
|
this.config.baseBuilder = baseBuilder;
|
|
this.config.size = size;
|
|
}
|
|
/** @internal */
|
|
build(table) {
|
|
const baseColumn = this.config.baseBuilder.build(table);
|
|
return new GelArray(
|
|
table,
|
|
this.config,
|
|
baseColumn
|
|
);
|
|
}
|
|
}
|
|
class GelArray extends GelColumn {
|
|
constructor(table, config, baseColumn, range) {
|
|
super(table, config);
|
|
this.baseColumn = baseColumn;
|
|
this.range = range;
|
|
this.size = config.size;
|
|
}
|
|
size;
|
|
static [entityKind] = "GelArray";
|
|
getSQLType() {
|
|
return `${this.baseColumn.getSQLType()}[${typeof this.size === "number" ? this.size : ""}]`;
|
|
}
|
|
}
|
|
export {
|
|
GelArray,
|
|
GelArrayBuilder,
|
|
GelColumn,
|
|
GelColumnBuilder,
|
|
GelExtraConfigColumn,
|
|
IndexedColumn
|
|
};
|
|
//# sourceMappingURL=common.js.map |