110 lines
3.5 KiB
TypeScript
110 lines
3.5 KiB
TypeScript
import { Plugin } from '@nocobase/server';
|
|
import { resolve } from 'path';
|
|
import { getAntdLocale } from './antd';
|
|
import { getCronLocale } from './cron';
|
|
import { getCronstrueLocale } from './cronstrue';
|
|
|
|
async function getLang(ctx) {
|
|
const SystemSetting = ctx.db.getRepository('systemSettings');
|
|
const systemSetting = await SystemSetting.findOne();
|
|
const enabledLanguages: string[] = systemSetting.get('enabledLanguages') || [];
|
|
const currentUser = ctx.state.currentUser;
|
|
let lang = enabledLanguages?.[0] || process.env.APP_LANG || 'en-US';
|
|
if (enabledLanguages.includes(currentUser?.appLang)) {
|
|
lang = currentUser?.appLang;
|
|
}
|
|
if (ctx.request.query.locale && enabledLanguages.includes(ctx.request.query.locale)) {
|
|
lang = ctx.request.query.locale;
|
|
}
|
|
return lang;
|
|
}
|
|
|
|
export class ClientPlugin extends Plugin {
|
|
async beforeLoad() {}
|
|
|
|
async install() {
|
|
const uiSchemas = this.db.getRepository<any>('uiSchemas');
|
|
await uiSchemas.insert({
|
|
type: 'void',
|
|
'x-uid': 'nocobase-admin-menu',
|
|
'x-component': 'Menu',
|
|
'x-designer': 'Menu.Designer',
|
|
'x-initializer': 'MenuItemInitializers',
|
|
'x-component-props': {
|
|
mode: 'mix',
|
|
theme: 'dark',
|
|
// defaultSelectedUid: 'u8',
|
|
onSelect: '{{ onSelect }}',
|
|
sideMenuRefScopeKey: 'sideMenuRef',
|
|
},
|
|
properties: {},
|
|
});
|
|
}
|
|
|
|
async load() {
|
|
this.app.localeManager.setLocaleFn('antd', async (lang) => getAntdLocale(lang));
|
|
this.app.localeManager.setLocaleFn('cronstrue', async (lang) => getCronstrueLocale(lang));
|
|
this.app.localeManager.setLocaleFn('cron', async (lang) => getCronLocale(lang));
|
|
this.db.addMigrations({
|
|
namespace: 'client',
|
|
directory: resolve(__dirname, './migrations'),
|
|
context: {
|
|
plugin: this,
|
|
},
|
|
});
|
|
this.app.acl.allow('app', 'getLang');
|
|
this.app.acl.allow('app', 'getInfo');
|
|
this.app.acl.allow('plugins', '*', 'public');
|
|
this.app.acl.registerSnippet({
|
|
name: 'app',
|
|
actions: ['app:restart', 'app:clearCache'],
|
|
});
|
|
const dialect = this.app.db.sequelize.getDialect();
|
|
|
|
this.app.resource({
|
|
name: 'app',
|
|
actions: {
|
|
async getInfo(ctx, next) {
|
|
const SystemSetting = ctx.db.getRepository('systemSettings');
|
|
const systemSetting = await SystemSetting.findOne();
|
|
const enabledLanguages: string[] = systemSetting.get('enabledLanguages') || [];
|
|
const currentUser = ctx.state.currentUser;
|
|
let lang = enabledLanguages?.[0] || process.env.APP_LANG || 'en-US';
|
|
if (enabledLanguages.includes(currentUser?.appLang)) {
|
|
lang = currentUser?.appLang;
|
|
}
|
|
ctx.body = {
|
|
database: {
|
|
dialect,
|
|
},
|
|
version: await ctx.app.version.get(),
|
|
lang,
|
|
name: ctx.app.name,
|
|
theme: currentUser?.systemSettings?.theme || systemSetting?.options?.theme || 'default',
|
|
};
|
|
await next();
|
|
},
|
|
async getLang(ctx, next) {
|
|
const lang = await getLang(ctx);
|
|
const resources = await ctx.app.localeManager.get(lang);
|
|
ctx.body = {
|
|
lang,
|
|
...resources,
|
|
};
|
|
await next();
|
|
},
|
|
async clearCache(ctx, next) {
|
|
await ctx.cache.reset();
|
|
await next();
|
|
},
|
|
async restart(ctx, next) {
|
|
ctx.app.runAsCLI(['restart'], { from: 'user' });
|
|
await next();
|
|
},
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
export default ClientPlugin;
|