mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 16:44:07 -08:00
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import { join, dirname } from 'path';
|
|
import { readdir } from 'fs/promises';
|
|
import type { Dirent } from 'fs';
|
|
|
|
const ALLOWED_VERSIONED_DIRNAME_LENGTH = [2, 3]; // e.g. v1, v10
|
|
|
|
function isVersionedDirname(dirent: Dirent) {
|
|
if (!dirent.isDirectory()) return false;
|
|
|
|
return (
|
|
ALLOWED_VERSIONED_DIRNAME_LENGTH.includes(dirent.name.length) &&
|
|
dirent.name.toLowerCase().startsWith('v')
|
|
);
|
|
}
|
|
|
|
async function getMaxVersion(from: string) {
|
|
const entries = await readdir(from, { withFileTypes: true });
|
|
|
|
const dirnames = entries.reduce<string[]>((acc, cur) => {
|
|
if (isVersionedDirname(cur)) acc.push(cur.name);
|
|
return acc;
|
|
}, []);
|
|
|
|
if (!dirnames.length) return null;
|
|
|
|
return Math.max(...dirnames.map((d) => parseInt(d.charAt(1), 10)));
|
|
}
|
|
|
|
/**
|
|
* Get the full path to a node translation file in `/dist`.
|
|
*/
|
|
export async function getNodeTranslationPath({
|
|
nodeSourcePath,
|
|
longNodeType,
|
|
locale,
|
|
}: {
|
|
nodeSourcePath: string;
|
|
longNodeType: string;
|
|
locale: string;
|
|
}): Promise<string> {
|
|
const nodeDir = dirname(nodeSourcePath);
|
|
const maxVersion = await getMaxVersion(nodeDir);
|
|
const nodeType = longNodeType.replace('n8n-nodes-base.', '');
|
|
|
|
return maxVersion
|
|
? join(nodeDir, `v${maxVersion}`, 'translations', locale, `${nodeType}.json`)
|
|
: join(nodeDir, 'translations', locale, `${nodeType}.json`);
|
|
}
|