nocobase/examples/app/custom-plugin.ts

59 lines
1.1 KiB
TypeScript
Raw Normal View History

/*
#
#
Step 1: Start app
yarn run:example app/custom-plugin start
Step 2: View test list
http://localhost:13000/api/test:list
*/
import { Application, Plugin } from '@nocobase/server';
import { uid } from '@nocobase/utils';
const app = new Application({
database: {
logging: process.env.DB_LOGGING === 'on' ? console.log : false,
dialect: process.env.DB_DIALECT as any,
storage: process.env.DB_STORAGE,
username: process.env.DB_USER,
password: process.env.DB_PASSWORD,
database: process.env.DB_DATABASE,
host: process.env.DB_HOST,
port: process.env.DB_PORT as any,
timezone: process.env.DB_TIMEZONE,
tablePrefix: `t_${uid()}_`,
},
resourcer: {
prefix: '/api',
},
plugins: [],
});
// Encapsulate modules into a plugin
class MyPlugin extends Plugin {
getName() {
return 'MyPlugin';
}
async load() {
2022-08-16 14:30:31 +00:00
this.app.resource({
name: 'test',
actions: {
async list(ctx) {
ctx.body = 'test list';
},
},
});
}
}
// Register plugin
app.plugin(MyPlugin);
if (require.main === module) {
app.runAsCLI();
}
export default app;