mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-09 15:39:24 +08:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import path from 'path';
|
|
import { readdir } from 'fs/promises';
|
|
import { cloneDeep, isPlainObject } from 'lodash';
|
|
import { requireModule } from '@nocobase/utils';
|
|
|
|
export type ImportFileExtension = 'js' | 'ts' | 'json';
|
|
|
|
export class ImporterReader {
|
|
directory: string;
|
|
extensions: Set<string>;
|
|
|
|
constructor(directory: string, extensions?: ImportFileExtension[]) {
|
|
this.directory = directory;
|
|
|
|
if (!extensions) {
|
|
extensions = ['js', 'ts', 'json'];
|
|
}
|
|
|
|
this.extensions = new Set(extensions);
|
|
}
|
|
|
|
async read() {
|
|
const files = await readdir(this.directory, {
|
|
encoding: 'utf-8',
|
|
});
|
|
const modules = files
|
|
.filter((fileName) => {
|
|
if (fileName.endsWith('.d.ts')) {
|
|
return false;
|
|
}
|
|
const ext = path.parse(fileName).ext.replace('.', '');
|
|
return this.extensions.has(ext);
|
|
})
|
|
.map((fileName) => {
|
|
const mod = requireModule(path.join(this.directory, fileName));
|
|
return typeof mod === 'function' ? mod() : mod;
|
|
});
|
|
|
|
return (await Promise.all(modules)).filter((module) => isPlainObject(module)).map((module) => cloneDeep(module));
|
|
}
|
|
}
|