mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-08 06:59:26 +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>
55 lines
1.5 KiB
TypeScript
55 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 { requireModule } from '@nocobase/utils';
|
|
|
|
const arr2obj = (items: any[]) => {
|
|
const obj = {};
|
|
for (const item of items) {
|
|
Object.assign(obj, item);
|
|
}
|
|
return obj;
|
|
};
|
|
|
|
export const getResource = (packageName: string, lang: string, isPlugin = true) => {
|
|
const resources = [];
|
|
const prefixes = [isPlugin ? 'dist' : 'lib'];
|
|
if (process.env.APP_ENV !== 'production') {
|
|
try {
|
|
require.resolve('@nocobase/client/src');
|
|
if (packageName === '@nocobase/plugin-client') {
|
|
packageName = '@nocobase/client';
|
|
}
|
|
} catch (error) {
|
|
// empty
|
|
}
|
|
prefixes.unshift('src');
|
|
}
|
|
for (const prefix of prefixes) {
|
|
try {
|
|
const file = `${packageName}/${prefix}/locale/${lang}`;
|
|
const f = require.resolve(file);
|
|
if (process.env.APP_ENV !== 'production') {
|
|
delete require.cache[f];
|
|
}
|
|
const resource = requireModule(file);
|
|
resources.push(resource);
|
|
} catch (error) {
|
|
// empty
|
|
}
|
|
if (resources.length) {
|
|
break;
|
|
}
|
|
}
|
|
if (resources.length === 0 && lang.replace('-', '_') !== lang) {
|
|
return getResource(packageName, lang.replace('-', '_'));
|
|
}
|
|
return arr2obj(resources);
|
|
};
|