mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-08-09 21:00:09 +08:00
* feat(plugin-layout): 支持运行时配置menus * refactor(plugin-model): 去掉provide * refactor(plugin-layout): 优化runtimeConfig,重新实现运行时menus配置方式,修复多页时setup执行两次的bug * feat(plugin-layout): 菜单支持配置默认展开等 * refactor: 优化
75 lines
1.9 KiB
JavaScript
75 lines
1.9 KiB
JavaScript
|
|
import { readFileSync } from 'fs';
|
|
import { join } from 'path';
|
|
|
|
const namespace = 'plugin-model';
|
|
|
|
export default (api) => {
|
|
const {
|
|
paths,
|
|
utils: { Mustache }
|
|
} = api;
|
|
|
|
const { lodash, winPath } = require('@fesjs/utils');
|
|
const { getModels } = require('./utils/getModels');
|
|
const { getTmpFile } = require('./utils/getTmpFile');
|
|
|
|
function getModelDir() {
|
|
return api.config.singular ? 'model' : 'models';
|
|
}
|
|
|
|
function getModelsPath() {
|
|
return join(paths.absSrcPath, getModelDir());
|
|
}
|
|
|
|
function getAllModels() {
|
|
const srcModelsPath = getModelsPath();
|
|
return lodash.uniq([
|
|
...getModels(srcModelsPath)
|
|
]);
|
|
}
|
|
|
|
const absCoreFilePath = join(namespace, 'core.js');
|
|
const absInitialStateFilePath = join(namespace, 'models/initialState.js');
|
|
|
|
api.register({
|
|
key: 'addExtraModels',
|
|
fn: () => [{
|
|
absPath: winPath(join(paths.absTmpPath, absInitialStateFilePath)),
|
|
namespace: '@@initialState'
|
|
}]
|
|
});
|
|
|
|
api.onGenerateFiles(async () => {
|
|
const files = getAllModels();
|
|
|
|
const additionalModels = await api.applyPlugins({
|
|
key: 'addExtraModels',
|
|
type: api.ApplyPluginsType.add,
|
|
initialValue: []
|
|
});
|
|
|
|
const tmpFiles = getTmpFile(files, additionalModels, paths.absSrcPath);
|
|
|
|
api.writeTmpFile({
|
|
path: absCoreFilePath,
|
|
content: Mustache.render(readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'), {
|
|
...tmpFiles
|
|
})
|
|
});
|
|
|
|
api.copyTmpFiles({
|
|
namespace,
|
|
path: join(__dirname, 'runtime'),
|
|
ignore: ['.tpl']
|
|
});
|
|
});
|
|
|
|
api.addPluginExports(() => [
|
|
{
|
|
specifiers: ['useModel'],
|
|
source: absCoreFilePath
|
|
}
|
|
]);
|
|
};
|