mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 00:43:50 +01:00
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
// API用翻訳ファイル自動生成
|
|
import { locales } from "@/nuxt.config";
|
|
import * as misskey from "misskey-js";
|
|
import yaml from "js-yaml";
|
|
import fs from "fs";
|
|
import path from "path";
|
|
import { parse } from "@babel/parser";
|
|
|
|
// オブジェクト obj1 にないキーだけを、元オブジェクトにマージする関数
|
|
function mergeObjects(obj1: Record<string, any>, obj2: Record<string, any>): Record<string, any> {
|
|
for (var key in obj2) {
|
|
if (!obj1.hasOwnProperty(key)) {
|
|
obj1[key] = obj2[key];
|
|
} else if (typeof obj1[key] === 'object' && typeof obj2[key] === 'object') {
|
|
mergeObjects(obj1[key], obj2[key]);
|
|
}
|
|
}
|
|
return obj1;
|
|
}
|
|
|
|
export function genApiTranslationFiles() {
|
|
|
|
const out: Record<string, any> = {
|
|
_permissions: {},
|
|
_entities: {},
|
|
};
|
|
|
|
// 権限
|
|
misskey.permissions.forEach((permission) => {
|
|
out._permissions[permission] = 'Untranslated / 未翻訳';
|
|
});
|
|
|
|
const endpointDTSPath = require.resolve('misskey-js', { paths: ['/built/api.types.d.ts'] });
|
|
/*
|
|
const ep = fs.readFileSync(endpointDTSPath, "utf-8");
|
|
const parsedEP = parse(ep, {
|
|
sourceType: "module",
|
|
plugins: [[
|
|
"typescript", {
|
|
dts: true,
|
|
},
|
|
]],
|
|
});
|
|
|
|
console.log(JSON.stringify(parsedEP));
|
|
*/
|
|
}
|