* feat(plugin-cm): add unique option for base fields * refactor(plugin-cm): make sure unique constraint sync with field option * fix(plugin-cm): fix sqlite unique field sync * fix(plugin-cm): fix unique constraint sync logic * refactor(plugin-cm): remove unique property for select components * fix: previous * fix: test error Co-authored-by: chenos <chenlinxh@gmail.com>
110 lines
3.5 KiB
TypeScript
110 lines
3.5 KiB
TypeScript
import Database, { Field, MagicAttributeModel } from '@nocobase/database';
|
|
import { SyncOptions, Transactionable, UniqueConstraintError, Utils } from 'sequelize';
|
|
|
|
interface LoadOptions extends Transactionable {
|
|
// TODO
|
|
skipExist?: boolean;
|
|
}
|
|
|
|
interface MigrateOptions extends SyncOptions, Transactionable {}
|
|
|
|
async function migrate(field: Field, options: MigrateOptions): Promise<void> {
|
|
const { unique } = field.options;
|
|
const { model } = field.collection;
|
|
const ukName = `${model.tableName}_${field.name}_uk`;
|
|
const queryInterface = model.sequelize.getQueryInterface();
|
|
const fieldAttribute = model.rawAttributes[field.name];
|
|
// @ts-ignore
|
|
const existedConstraints = await queryInterface.showConstraint(model.tableName, ukName, { transaction: options.transaction }) as any[];
|
|
const constraintBefore = existedConstraints.find(item => item.constraintName === ukName);
|
|
if (typeof fieldAttribute?.unique !== 'undefined') {
|
|
if (constraintBefore && !unique) {
|
|
await queryInterface.removeConstraint(model.tableName, ukName, { transaction: options.transaction });
|
|
}
|
|
fieldAttribute.unique = Boolean(constraintBefore);
|
|
}
|
|
|
|
await field.sync(options);
|
|
|
|
if (!constraintBefore && unique) {
|
|
await queryInterface.addConstraint(model.tableName, {
|
|
type: 'unique',
|
|
fields: [field.name],
|
|
name: ukName,
|
|
transaction: options.transaction
|
|
});
|
|
}
|
|
if (typeof fieldAttribute?.unique !== 'undefined') {
|
|
fieldAttribute.unique = unique;
|
|
}
|
|
|
|
// @ts-ignore
|
|
const updatedConstraints = await queryInterface.showConstraint(model.tableName, ukName, { transaction: options.transaction }) as any[];
|
|
const indexAfter = updatedConstraints.find(item => item.constraintName === ukName);
|
|
if (unique && !indexAfter) {
|
|
throw new UniqueConstraintError({
|
|
fields: { [field.name]: undefined }
|
|
});
|
|
}
|
|
}
|
|
|
|
export class FieldModel extends MagicAttributeModel {
|
|
get db(): Database {
|
|
return (<any>this.constructor).database;
|
|
}
|
|
|
|
async load(loadOptions?: LoadOptions) {
|
|
const { skipExist = false } = loadOptions || {};
|
|
const collectionName = this.get('collectionName');
|
|
if (!this.db.hasCollection(collectionName)) {
|
|
return;
|
|
}
|
|
const collection = this.db.getCollection(collectionName);
|
|
const name = this.get('name');
|
|
if (skipExist && collection.hasField(name)) {
|
|
return collection.getField(name);
|
|
}
|
|
const options = this.get();
|
|
if (options.uiSchemaUid) {
|
|
const UISchema = this.db.getModel('uiSchemas');
|
|
const uiSchema = await UISchema.findByPk(options.uiSchemaUid, {
|
|
transaction: loadOptions.transaction,
|
|
});
|
|
Object.assign(options, { uiSchema: uiSchema.get() });
|
|
}
|
|
return collection.setField(name, options);
|
|
}
|
|
|
|
async migrate(options: MigrateOptions = {}) {
|
|
const field = await this.load({
|
|
transaction: options.transaction,
|
|
});
|
|
if (!field) {
|
|
return;
|
|
}
|
|
// const migrator = Dialects[field.database.options.dialect] ?? migrate;
|
|
try {
|
|
await migrate(field, options);
|
|
} catch (error) {
|
|
// field sync failed, delete from memory
|
|
field.remove();
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
async remove(options?: any) {
|
|
const collectionName = this.get('collectionName');
|
|
if (!this.db.hasCollection(collectionName)) {
|
|
return;
|
|
}
|
|
const collection = this.db.getCollection(collectionName);
|
|
const field = collection.getField(this.get('name'));
|
|
if (!field) {
|
|
return;
|
|
}
|
|
return field.removeFromDb({
|
|
transaction: options.transaction,
|
|
});
|
|
}
|
|
}
|