* feat: snapshort init * feat: snapshot update yarn.lock * feat: snapshot add to preset * feat: snapshot add field fix * feat: snapshot remove Table Column SnapshotField * feat: snapshot field label fix * feat: snapshot request error fix * feat: snapshot 二级关联数据打开 * feat: snapshot batch edit fix * feat: snapshot 2 level draw fix * feat: snapshot translate * feat: snapshot global historyCollection provider * feat: snapshot install initial * feat: snapshot refreshCH * feat: snapshot add transaction * feat: snapshot default collecitonField * feat: snapshot build fix * feat: snapshot useSnapshotFieldTargetCollectionKey * feat: snapshot batch update * feat: snapshot linkto support * feat: snapshot use getRepository * feat: snapshot recreate fix * feat: snapshot collectionKey to collectionName & rebuild collection * feat: snapshot remove SnapshotHistoryCollectionProvider & collectionName * feat: snapshot use historyCollections in inherit table * feat: snapshot fix TableSelectorBlock appends * feat: snapshot kanban fix * feat: snapshot snapshot association field fix * feat: snapshot add CollectionFieldProvider fallback * feat: snapshot AssociationSelect fix * feat: snapshot TableField fix
107 lines
3.0 KiB
TypeScript
107 lines
3.0 KiB
TypeScript
import { Plugin } from '@nocobase/server';
|
|
import _ from 'lodash';
|
|
import path from 'path';
|
|
|
|
export class PresetNocoBase extends Plugin {
|
|
getBuiltInPlugins() {
|
|
const plugins = (process.env.PRESET_NOCOBASE_PLUGINS || '').split(',').filter(Boolean);
|
|
return _.uniq(
|
|
[
|
|
'error-handler',
|
|
'collection-manager',
|
|
'ui-schema-storage',
|
|
'ui-routes-storage',
|
|
'file-manager',
|
|
'system-settings',
|
|
'sequence-field',
|
|
'verification',
|
|
'users',
|
|
'acl',
|
|
'china-region',
|
|
'workflow',
|
|
'client',
|
|
'export',
|
|
'import',
|
|
'audit-logs',
|
|
'iframe-block',
|
|
].concat(plugins),
|
|
);
|
|
}
|
|
|
|
getLocalPlugins() {
|
|
const localPlugins = ['sample-hello', 'oidc', 'saml', 'map', 'snapshot-field'];
|
|
return localPlugins;
|
|
}
|
|
|
|
async addBuiltInPlugins() {
|
|
const builtInPlugins = this.getBuiltInPlugins();
|
|
await this.app.pm.add(builtInPlugins, {
|
|
enabled: true,
|
|
builtIn: true,
|
|
installed: true,
|
|
});
|
|
const localPlugins = this.getLocalPlugins();
|
|
await this.app.pm.add(localPlugins, {});
|
|
await this.app.reload();
|
|
}
|
|
|
|
afterAdd() {
|
|
this.app.on('beforeLoad', async (app, options) => {
|
|
if (options?.method !== 'upgrade') {
|
|
return;
|
|
}
|
|
const version = await this.app.version.get();
|
|
console.log(`The version number before upgrade is ${version}`);
|
|
const result = await this.app.version.satisfies('<0.8.0-alpha.1');
|
|
if (result) {
|
|
const r = await this.db.collectionExistsInDb('applicationPlugins');
|
|
if (r) {
|
|
console.log(`Clear the installed application plugins`);
|
|
await this.db.getRepository('applicationPlugins').destroy({ truncate: true });
|
|
await this.app.reload();
|
|
}
|
|
}
|
|
});
|
|
this.app.on('beforeUpgrade', async () => {
|
|
const result = await this.app.version.satisfies('<0.8.0-alpha.1');
|
|
if (result) {
|
|
console.log(`Initialize all built-in plugins`);
|
|
await this.addBuiltInPlugins();
|
|
}
|
|
const builtInPlugins = this.getBuiltInPlugins();
|
|
const plugins = await this.app.db.getRepository('applicationPlugins').find();
|
|
const pluginNames = plugins.map((p) => p.name);
|
|
await this.app.pm.add(
|
|
builtInPlugins.filter((plugin) => !pluginNames.includes(plugin)),
|
|
{
|
|
enabled: true,
|
|
builtIn: true,
|
|
installed: true,
|
|
},
|
|
);
|
|
const localPlugins = this.getLocalPlugins();
|
|
await this.app.pm.add(
|
|
localPlugins.filter((plugin) => !pluginNames.includes(plugin)),
|
|
{},
|
|
);
|
|
await this.app.reload();
|
|
await this.app.db.sync();
|
|
});
|
|
this.app.on('beforeInstall', async () => {
|
|
console.log(`Initialize all built-in plugins`);
|
|
await this.addBuiltInPlugins();
|
|
});
|
|
}
|
|
beforeLoad() {
|
|
this.db.addMigrations({
|
|
namespace: this.getName(),
|
|
directory: path.resolve(__dirname, './migrations'),
|
|
context: {
|
|
plugin: this,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
export default PresetNocoBase;
|