mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-07 06:29:25 +08:00
* fix: client lib require wrapper * fix: bug * fix: add tsconfig.paths.json * fix: collection dir not exists * fix: improve... * fix: update yarn.lock * fix: db.sync * fix: bugs * fix: bugs * fix: bugs * fix: bugs && allow user custom build config * docs: user custom config docs * refactor: custom user build config * fix: bugs * fix: build plugin-client bug --------- Co-authored-by: chenos <chenlinxh@gmail.com>
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import path from 'path';
|
|
import { existsSync } from 'fs';
|
|
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() {
|
|
if (!existsSync(this.directory)) {
|
|
return [];
|
|
}
|
|
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));
|
|
}
|
|
}
|