tachybase_todo/packages/database/src/fields/field.ts
2021-12-06 21:23:34 +08:00

94 lines
2.0 KiB
TypeScript

import { Collection } from '../collection';
import { Database } from '../database';
import _ from 'lodash';
import { DataType, ModelAttributeColumnOptions, ModelIndexesOptions } from 'sequelize';
export interface FieldContext {
database: Database;
collection: Collection;
}
export interface BaseFieldOptions {
name?: string;
[key: string]: any;
}
export interface BaseColumnFieldOptions extends BaseFieldOptions, Omit<ModelAttributeColumnOptions, 'type'> {
dataType?: DataType;
index?: boolean | ModelIndexesOptions;
}
export abstract class Field {
options: any;
context: FieldContext;
database: Database;
collection: Collection;
[key: string]: any;
get name() {
return this.options.name;
}
get type() {
return this.options.type;
}
get dataType() {
return this.options.dataType;
}
constructor(options?: any, context?: FieldContext) {
this.context = context;
this.database = context.database;
this.collection = context.collection;
this.options = options || {};
this.init();
}
init() {
// code
}
on(eventName: string, listener: (...args: any[]) => void) {
this.database.on(`${this.collection.name}.${eventName}`, listener);
return this;
}
off(eventName: string, listener: (...args: any[]) => void) {
this.database.off(`${this.collection.name}.${eventName}`, listener);
return this;
}
get(name: string) {
return this.options[name];
}
merge(obj: any) {
Object.assign(this.options, obj);
}
bind() {
const { model } = this.context.collection;
model.rawAttributes[this.name] = this.toSequelize();
// @ts-ignore
model.refreshAttributes();
}
unbind() {
const { model } = this.context.collection;
model.removeAttribute(this.name);
}
toSequelize(): any {
const opts = _.omit(this.options, ['name']);
if (this.dataType) {
Object.assign(opts, { type: this.dataType });
}
return opts;
}
isSqlite() {
return this.database.sequelize.getDialect() === 'sqlite';
}
}