2022-05-18 16:40:55 +00:00
|
|
|
const { existsSync } = require('fs');
|
2022-12-01 15:44:02 +00:00
|
|
|
const { resolve, sep } = require('path');
|
2022-05-23 10:48:15 +00:00
|
|
|
const packageJson = require('./package.json');
|
2022-06-10 09:46:46 +00:00
|
|
|
const fs = require('fs');
|
2023-09-12 14:39:23 +00:00
|
|
|
const glob = require('fast-glob');
|
2023-08-01 16:07:52 +00:00
|
|
|
const path = require('path');
|
2022-05-23 10:48:15 +00:00
|
|
|
|
2022-05-24 14:55:09 +00:00
|
|
|
console.log('VERSION: ', packageJson.version);
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
function getUmiConfig() {
|
|
|
|
const { APP_PORT, API_BASE_URL } = process.env;
|
|
|
|
const API_BASE_PATH = process.env.API_BASE_PATH || '/api/';
|
|
|
|
const PROXY_TARGET_URL = process.env.PROXY_TARGET_URL || `http://127.0.0.1:${APP_PORT}`;
|
2023-09-12 14:39:23 +00:00
|
|
|
const LOCAL_STORAGE_BASE_URL = '/storage/uploads/';
|
|
|
|
const STATIC_PATH = '/static/';
|
2022-05-18 16:40:55 +00:00
|
|
|
|
|
|
|
function getLocalStorageProxy() {
|
|
|
|
if (LOCAL_STORAGE_BASE_URL.startsWith('http')) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
[LOCAL_STORAGE_BASE_URL]: {
|
|
|
|
target: PROXY_TARGET_URL,
|
|
|
|
changeOrigin: true,
|
|
|
|
},
|
2023-09-12 14:39:23 +00:00
|
|
|
[STATIC_PATH]: {
|
|
|
|
target: PROXY_TARGET_URL,
|
|
|
|
changeOrigin: true,
|
|
|
|
},
|
2022-05-18 16:40:55 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2023-06-20 03:48:02 +00:00
|
|
|
alias: getPackagePaths().reduce((memo, item) => {
|
2023-08-01 16:07:52 +00:00
|
|
|
memo[item[0]] = item[1];
|
|
|
|
return memo;
|
2023-06-20 03:48:02 +00:00
|
|
|
}, {}),
|
2022-05-18 16:40:55 +00:00
|
|
|
define: {
|
|
|
|
'process.env.API_BASE_URL': API_BASE_URL || API_BASE_PATH,
|
2022-05-23 10:48:15 +00:00
|
|
|
'process.env.APP_ENV': process.env.APP_ENV,
|
2022-05-24 14:57:32 +00:00
|
|
|
'process.env.VERSION': packageJson.version,
|
2023-08-24 09:47:45 +00:00
|
|
|
'process.env.WEBSOCKET_URL': process.env.WEBSOCKET_URL,
|
2023-10-27 07:32:17 +00:00
|
|
|
'process.env.__E2E__': process.env.__E2E__,
|
2022-05-18 16:40:55 +00:00
|
|
|
},
|
|
|
|
// only proxy when using `umi dev`
|
|
|
|
// if the assets are built, will not proxy
|
|
|
|
proxy: {
|
|
|
|
[API_BASE_PATH]: {
|
|
|
|
target: PROXY_TARGET_URL,
|
|
|
|
changeOrigin: true,
|
|
|
|
pathRewrite: { [`^${API_BASE_PATH}`]: API_BASE_PATH },
|
|
|
|
},
|
|
|
|
// for local storage
|
|
|
|
...getLocalStorageProxy(),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-11-04 13:23:02 +00:00
|
|
|
function getNamespace() {
|
|
|
|
const content = fs.readFileSync(resolve(process.cwd(), 'package.json'), 'utf-8');
|
|
|
|
const json = JSON.parse(content);
|
|
|
|
return json.name;
|
|
|
|
}
|
|
|
|
|
2022-11-15 07:04:21 +00:00
|
|
|
function getTsconfigPaths() {
|
2023-09-15 00:51:20 +00:00
|
|
|
const content = fs.readFileSync(resolve(process.cwd(), 'tsconfig.paths.json'), 'utf-8');
|
2022-11-15 07:04:21 +00:00
|
|
|
const json = JSON.parse(content);
|
|
|
|
return json.compilerOptions.paths;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPackagePaths() {
|
|
|
|
const paths = getTsconfigPaths();
|
|
|
|
const pkgs = [];
|
|
|
|
for (const key in paths) {
|
|
|
|
if (Object.hasOwnProperty.call(paths, key)) {
|
2023-09-12 14:39:23 +00:00
|
|
|
for (let dir of paths[key]) {
|
|
|
|
if (dir.includes('*')) {
|
|
|
|
const files = glob.sync(dir, { cwd: process.cwd(), onlyDirectories: true });
|
|
|
|
for (const file of files) {
|
|
|
|
const dirname = resolve(process.cwd(), file);
|
|
|
|
if (existsSync(dirname)) {
|
|
|
|
const re = new RegExp(dir.replace('*', '(.+)'));
|
|
|
|
const p = dirname
|
|
|
|
.substring(process.cwd().length + 1)
|
|
|
|
.split(sep)
|
|
|
|
.join('/');
|
|
|
|
const match = re.exec(p);
|
|
|
|
pkgs.push([key.replace('*', match?.[1]), dirname]);
|
|
|
|
}
|
2022-11-15 07:04:21 +00:00
|
|
|
}
|
2023-09-12 14:39:23 +00:00
|
|
|
} else {
|
|
|
|
const dirname = resolve(process.cwd(), dir);
|
|
|
|
pkgs.push([key, dirname]);
|
2022-11-15 07:04:21 +00:00
|
|
|
}
|
2022-11-04 13:23:02 +00:00
|
|
|
}
|
|
|
|
}
|
2022-09-18 06:10:01 +00:00
|
|
|
}
|
2022-11-15 07:04:21 +00:00
|
|
|
return pkgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
function resolveNocobasePackagesAlias(config) {
|
|
|
|
const pkgs = getPackagePaths();
|
|
|
|
for (const [pkg, dir] of pkgs) {
|
|
|
|
config.module.rules.get('ts-in-node_modules').include.add(dir);
|
|
|
|
config.resolve.alias.set(pkg, dir);
|
2022-11-03 07:56:27 +00:00
|
|
|
}
|
2022-05-18 16:40:55 +00:00
|
|
|
}
|
|
|
|
|
2023-08-01 16:07:52 +00:00
|
|
|
class IndexGenerator {
|
|
|
|
constructor(outputPath, pluginsPath) {
|
|
|
|
this.outputPath = outputPath;
|
|
|
|
this.pluginsPath = pluginsPath;
|
|
|
|
}
|
|
|
|
|
2023-08-20 10:10:34 +00:00
|
|
|
get indexPath() {
|
|
|
|
return path.join(this.outputPath, 'index.ts');
|
|
|
|
}
|
|
|
|
|
|
|
|
get packageMapPath() {
|
|
|
|
return path.join(this.outputPath, 'packageMap.json');
|
|
|
|
}
|
|
|
|
|
|
|
|
get packagesPath() {
|
|
|
|
return path.join(this.outputPath, 'packages');
|
|
|
|
}
|
|
|
|
|
2023-08-01 16:07:52 +00:00
|
|
|
generate() {
|
2023-08-20 10:10:34 +00:00
|
|
|
this.generatePluginContent();
|
2023-08-01 16:07:52 +00:00
|
|
|
if (process.env.NODE_ENV === 'production') return;
|
|
|
|
this.pluginsPath.forEach((pluginPath) => {
|
|
|
|
if (!fs.existsSync(pluginPath)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fs.watch(pluginPath, { recursive: false }, () => {
|
2023-08-20 10:10:34 +00:00
|
|
|
this.generatePluginContent();
|
2023-08-01 16:07:52 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-08-20 10:10:34 +00:00
|
|
|
get indexContent() {
|
|
|
|
return `// @ts-nocheck
|
|
|
|
import packageMap from './packageMap.json';
|
|
|
|
|
|
|
|
function devDynamicImport(packageName: string): Promise<any> {
|
|
|
|
const fileName = packageMap[packageName];
|
|
|
|
if (!fileName) {
|
|
|
|
return Promise.resolve(null);
|
|
|
|
}
|
|
|
|
return import(\`./packages/\${fileName}\`)
|
|
|
|
}
|
|
|
|
export default devDynamicImport;`;
|
|
|
|
}
|
|
|
|
|
|
|
|
get emptyIndexContent() {
|
|
|
|
return `
|
|
|
|
export default function devDynamicImport(packageName: string): Promise<any> {
|
|
|
|
return Promise.resolve(null);
|
|
|
|
}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
generatePluginContent() {
|
|
|
|
if (fs.existsSync(this.outputPath)) {
|
|
|
|
fs.rmdirSync(this.outputPath, { recursive: true, force: true });
|
2023-08-01 16:07:52 +00:00
|
|
|
}
|
2023-08-20 10:10:34 +00:00
|
|
|
fs.mkdirSync(this.outputPath);
|
2023-09-12 14:39:23 +00:00
|
|
|
const validPluginPaths = this.pluginsPath.filter((pluginsPath) => fs.existsSync(pluginsPath));
|
2023-08-20 10:10:34 +00:00
|
|
|
if (!validPluginPaths.length || process.env.NODE_ENV === 'production') {
|
|
|
|
fs.writeFileSync(this.indexPath, this.emptyIndexContent);
|
2023-08-01 16:07:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-09-12 14:39:23 +00:00
|
|
|
const pluginInfos = validPluginPaths.map((pluginsPath) => this.getContent(pluginsPath)).flat();
|
2023-08-01 16:07:52 +00:00
|
|
|
|
2023-08-20 10:10:34 +00:00
|
|
|
// index.ts
|
|
|
|
fs.writeFileSync(this.indexPath, this.indexContent);
|
|
|
|
// packageMap.json
|
|
|
|
const packageMapContent = pluginInfos.reduce((memo, item) => {
|
|
|
|
memo[item.packageJsonName] = item.pluginFileName + '.ts';
|
|
|
|
return memo;
|
|
|
|
}, {});
|
|
|
|
fs.writeFileSync(this.packageMapPath, JSON.stringify(packageMapContent, null, 2));
|
|
|
|
// packages
|
|
|
|
fs.mkdirSync(this.packagesPath, { recursive: true });
|
|
|
|
pluginInfos.forEach((item) => {
|
|
|
|
const pluginPackagePath = path.join(this.packagesPath, item.pluginFileName + '.ts');
|
|
|
|
fs.writeFileSync(pluginPackagePath, item.exportStatement);
|
|
|
|
});
|
2023-08-01 16:07:52 +00:00
|
|
|
}
|
|
|
|
|
2023-09-12 14:39:23 +00:00
|
|
|
getContent(pluginsPath) {
|
|
|
|
const pluginFolders = glob
|
|
|
|
.sync(['*/package.json', '*/*/package.json'], { cwd: pluginsPath, onlyFiles: true, absolute: true })
|
|
|
|
.map((item) => path.dirname(item));
|
2023-08-20 10:10:34 +00:00
|
|
|
const pluginInfos = pluginFolders
|
2023-08-01 16:07:52 +00:00
|
|
|
.filter((folder) => {
|
2023-09-12 14:39:23 +00:00
|
|
|
const pluginPackageJsonPath = path.join(folder, 'package.json');
|
|
|
|
const pluginSrcClientPath = path.join(folder, 'src', 'client');
|
2023-08-01 16:07:52 +00:00
|
|
|
return fs.existsSync(pluginPackageJsonPath) && fs.existsSync(pluginSrcClientPath);
|
|
|
|
})
|
2023-08-20 10:10:34 +00:00
|
|
|
.map((folder) => {
|
2023-09-12 14:39:23 +00:00
|
|
|
const pluginPackageJsonPath = path.join(folder, 'package.json');
|
2023-08-01 16:07:52 +00:00
|
|
|
const pluginPackageJson = require(pluginPackageJsonPath);
|
|
|
|
const pluginSrcClientPath = path
|
2023-09-12 14:39:23 +00:00
|
|
|
.relative(this.packagesPath, path.join(folder, 'src', 'client'))
|
2023-08-01 16:07:52 +00:00
|
|
|
.replaceAll('\\', '/');
|
2023-09-12 14:39:23 +00:00
|
|
|
const pluginFileName = `${path.basename(pluginsPath)}_${path.basename(folder).replaceAll('-', '_')}`;
|
2023-08-20 10:10:34 +00:00
|
|
|
const exportStatement = `export { default } from '${pluginSrcClientPath}';`;
|
|
|
|
return { exportStatement, pluginFileName, packageJsonName: pluginPackageJson.name };
|
2023-08-01 16:07:52 +00:00
|
|
|
});
|
|
|
|
|
2023-08-20 10:10:34 +00:00
|
|
|
return pluginInfos;
|
2023-08-01 16:07:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-18 16:40:55 +00:00
|
|
|
exports.getUmiConfig = getUmiConfig;
|
|
|
|
exports.resolveNocobasePackagesAlias = resolveNocobasePackagesAlias;
|
2023-08-01 16:07:52 +00:00
|
|
|
exports.IndexGenerator = IndexGenerator;
|