Revert "refactor: 🦺 replace js-yaml with yaml"

This reverts commit 837a45bd98.
This commit is contained in:
ThatOneCalculator 2023-06-16 14:09:42 -07:00
parent c921d5117b
commit 35445f8591
No known key found for this signature in database
GPG key ID: 8703CACD01000000
5 changed files with 64 additions and 81 deletions

View file

@ -2,79 +2,59 @@
* Languages Loader
*/
const fs = require("fs");
const yaml = require("yaml");
const fs = require('fs');
const yaml = require('js-yaml');
let languages = []
let languages_custom = []
const languages = [];
const languages_custom = [];
const merge = (...args) => args.reduce((a, c) => ({
...a,
...c,
...Object.entries(a)
.filter(([k]) => c && typeof c[k] === 'object')
.reduce((a, [k, v]) => (a[k] = merge(v, c[k]), a), {})
}), {});
const merge = (...args) =>
args.reduce(
(a, c) => ({
...a,
...c,
...Object.entries(a)
.filter(([k]) => c && typeof c[k] === "object")
.reduce((a, [k, v]) => ((a[k] = merge(v, c[k])), a), {}),
}),
{}
);
fs.readdirSync(__dirname).forEach((file) => {
if (file.includes(".yml")) {
locale = file.slice(0, file.indexOf("."));
languages.push(locale);
if (file.includes('.yml')){
file = file.slice(0, file.indexOf('.'))
languages.push(file);
}
});
})
fs.readdirSync(`${__dirname}/../custom/locales`).forEach((file) => {
if (file.includes(".yml")) {
customLocale = file.slice(0, file.indexOf("."));
languages_custom.push(customLocale);
fs.readdirSync(__dirname + '/../custom/locales').forEach((file) => {
if (file.includes('.yml')){
file = file.slice(0, file.indexOf('.'))
languages_custom.push(file);
}
});
})
const primaries = {
en: "US",
ja: "JP",
zh: "CN",
'en': 'US',
'ja': 'JP',
'zh': 'CN',
};
const locales = languages.reduce(
(a, c) =>
(a[c] = yaml.parse(fs.readFileSync(`${__dirname}/${c}.yml`, "utf-8"))) ||
{},
a
);
const locales_custom = languages_custom.reduce(
(a, c) =>
(a[c] = yaml.parse(
fs.readFileSync(`${__dirname}/../custom/locales/${c}.yml`, "utf-8")
)) || {},
a
);
Object.assign(locales, locales_custom);
// 何故か文字列にバックスペース文字が混入することがあり、YAMLが壊れるので取り除く
const clean = (text) => text.replace(new RegExp(String.fromCodePoint(0x08), 'g'), '');
module.exports = Object.entries(locales).reduce(
(a, [k, v]) => (
(a[k] = (() => {
const [lang] = k.split("-");
switch (k) {
case "ja-JP":
return v;
case "ja-KS":
case "en-US":
return merge(locales["ja-JP"], v);
default:
return merge(
locales["ja-JP"],
locales["en-US"],
locales[`${lang}-${primaries[lang]}`] || {},
v
);
}
})()),
a
),
{}
);
const locales = languages.reduce((a, c) => (a[c] = yaml.load(clean(fs.readFileSync(`${__dirname}/${c}.yml`, 'utf-8'))) || {}, a), {});
const locales_custom = languages_custom.reduce((a, c) => (a[c] = yaml.load(clean(fs.readFileSync(`${__dirname}/../custom/locales/${c}.yml`, 'utf-8'))) || {}, a), {});
Object.assign(locales, locales_custom)
module.exports = Object.entries(locales)
.reduce((a, [k ,v]) => (a[k] = (() => {
const [lang] = k.split('-');
switch (k) {
case 'ja-JP': return v;
case 'ja-KS':
case 'en-US': return merge(locales['ja-JP'], v);
default: return merge(
locales['ja-JP'],
locales['en-US'],
locales[`${lang}-${primaries[lang]}`] || {},
v
);
}
})(), a), {});

View file

@ -40,8 +40,8 @@
"@bull-board/ui": "5.2.0",
"@napi-rs/cli": "^2.16.1",
"@tensorflow/tfjs": "^3.21.0",
"seedrandom": "^3.0.5",
"yaml": "^2.3.1"
"js-yaml": "4.1.0",
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@types/gulp": "4.0.10",

View file

@ -75,6 +75,7 @@
"ioredis": "5.3.2",
"ip-cidr": "3.0.11",
"is-svg": "4.3.2",
"js-yaml": "4.1.0",
"jsdom": "20.0.3",
"jsonld": "8.2.0",
"jsrsasign": "10.6.1",
@ -136,8 +137,7 @@
"uuid": "9.0.0",
"web-push": "3.6.1",
"websocket": "1.0.34",
"xev": "3.0.2",
"yaml": "^2.3.1"
"xev": "3.0.2"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
@ -148,6 +148,7 @@
"@types/cbor": "6.0.0",
"@types/escape-regexp": "0.0.1",
"@types/fluent-ffmpeg": "2.1.20",
"@types/js-yaml": "4.0.5",
"@types/jsdom": "20.0.1",
"@types/jsonld": "1.5.8",
"@types/jsrsasign": "10.5.4",

View file

@ -5,7 +5,7 @@
import * as fs from "node:fs";
import { fileURLToPath } from "node:url";
import { dirname } from "node:path";
import { parse } from "yaml";
import * as yaml from "js-yaml";
import type { Source, Mixin } from "./types.js";
const _filename = fileURLToPath(import.meta.url);
@ -32,7 +32,7 @@ export default function load() {
"utf-8",
),
);
const config = parse(fs.readFileSync(path, "utf-8")) as Source;
const config = yaml.load(fs.readFileSync(path, "utf-8")) as Source;
const mixin = {} as Mixin;

View file

@ -23,12 +23,12 @@ importers:
'@tensorflow/tfjs':
specifier: ^3.21.0
version: 3.21.0(seedrandom@3.0.5)
js-yaml:
specifier: 4.1.0
version: 4.1.0
seedrandom:
specifier: ^3.0.5
version: 3.0.5
yaml:
specifier: ^2.3.1
version: 2.3.1
devDependencies:
'@types/gulp':
specifier: 4.0.10
@ -216,6 +216,9 @@ importers:
is-svg:
specifier: 4.3.2
version: 4.3.2
js-yaml:
specifier: 4.1.0
version: 4.1.0
jsdom:
specifier: 20.0.3
version: 20.0.3
@ -402,9 +405,6 @@ importers:
xev:
specifier: 3.0.2
version: 3.0.2
yaml:
specifier: ^2.3.1
version: 2.3.1
optionalDependencies:
'@swc/core-android-arm64':
specifier: 1.3.11
@ -437,6 +437,9 @@ importers:
'@types/fluent-ffmpeg':
specifier: 2.1.20
version: 2.1.20
'@types/js-yaml':
specifier: 4.0.5
version: 4.0.5
'@types/jsdom':
specifier: 20.0.1
version: 20.0.1
@ -3274,6 +3277,10 @@ packages:
pretty-format: 27.5.1
dev: true
/@types/js-yaml@4.0.5:
resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==}
dev: true
/@types/jsdom@20.0.1:
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
dependencies:
@ -15722,11 +15729,6 @@ packages:
resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
dev: false
/yaml@2.3.1:
resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
engines: {node: '>= 14'}
dev: false
/yargs-parser@18.1.3:
resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
engines: {node: '>=6'}