mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-07 14:39:25 +08:00
* fix: add license code * fix: bug * fix: bug * fix: upgrade * fix: improve * chore: add copyright information to the file header * fix: d.ts bug * fix: bug * fix: e2e bug * fix: merge main --------- Co-authored-by: chenos <chenlinxh@gmail.com>
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
import { importModule } from '@nocobase/utils';
|
|
import { existsSync } from 'fs';
|
|
import { readdir } from 'fs/promises';
|
|
import { cloneDeep, isPlainObject } from 'lodash';
|
|
import path from 'path';
|
|
|
|
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(async (fileName) => {
|
|
const mod = await importModule(path.join(this.directory, fileName));
|
|
return typeof mod === 'function' ? mod() : mod;
|
|
});
|
|
|
|
return (await Promise.all(modules)).filter((module) => isPlainObject(module)).map((module) => cloneDeep(module));
|
|
}
|
|
}
|