translation system working now
This commit is contained in:
@ -1,37 +1,82 @@
|
||||
import { NextApiRequest, NextApiResponse } from 'next';
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import { NextApiRequest, NextApiResponse } from 'next';
|
||||
import common from "../../../src/helpers/common";
|
||||
|
||||
function flattenTranslations(data) {
|
||||
const result = {};
|
||||
|
||||
function recurse(cur, prop) {
|
||||
if (Object(cur) !== cur) {
|
||||
result[prop] = cur;
|
||||
} else if (Array.isArray(cur)) {
|
||||
for (let i = 0, l = cur.length; i < l; i++)
|
||||
recurse(cur[i], prop ? prop + "." + i : "" + i);
|
||||
if (l == 0)
|
||||
result[prop] = [];
|
||||
} else {
|
||||
let isEmpty = true;
|
||||
for (let p in cur) {
|
||||
isEmpty = false;
|
||||
recurse(cur[p], prop ? prop + "." + p : p);
|
||||
}
|
||||
if (isEmpty)
|
||||
result[prop] = {};
|
||||
}
|
||||
}
|
||||
recurse(data, "");
|
||||
return result;
|
||||
}
|
||||
|
||||
function unflattenTranslations(data) {
|
||||
const result = {};
|
||||
|
||||
for (let i in data) {
|
||||
const keys = i.split('.');
|
||||
keys.reduce((r, e, j) => {
|
||||
return r[e] || (r[e] = isNaN(Number(keys[j + 1])) ? (keys.length - 1 === j ? data[i] : {}) : []);
|
||||
}, result);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
||||
const { locale, type } = req.query;
|
||||
const baseFilePath = path.join(process.cwd(), `content/i18n/${locale}.json`);
|
||||
const { locale } = req.query;
|
||||
const filePath = path.join(process.cwd(), `content/i18n/${locale.join(".")}.json`);
|
||||
const modifiedFilePath = path.join(process.cwd(), `content/i18n/${locale}.modified.json`);
|
||||
|
||||
let translations = {};
|
||||
|
||||
try {
|
||||
translations = JSON.parse(fs.readFileSync(baseFilePath, 'utf8'));
|
||||
if (fs.existsSync(modifiedFilePath)) {
|
||||
const modifiedTranslations = JSON.parse(fs.readFileSync(modifiedFilePath, 'utf8'));
|
||||
translations = { ...translations, ...modifiedTranslations };
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Error loading translation files:', error);
|
||||
}
|
||||
|
||||
switch (req.method) {
|
||||
case 'GET':
|
||||
res.status(200).json(translations);
|
||||
let flat = common.parseBool(req.query.flat);
|
||||
try {
|
||||
const fileContents = fs.readFileSync(filePath, 'utf8');
|
||||
let translations = JSON.parse(fileContents);
|
||||
if (fs.existsSync(modifiedFilePath)) {
|
||||
const modifiedTranslations = JSON.parse(fs.readFileSync(modifiedFilePath, 'utf8'));
|
||||
translations = { ...translations, ...modifiedTranslations };
|
||||
}
|
||||
if (flat) {
|
||||
translations = flattenTranslations(translations);
|
||||
}
|
||||
res.status(200).json(translations);
|
||||
} catch (error) {
|
||||
console.error('Error reading translation file:', error);
|
||||
res.status(500).json({ error: 'Failed to read translation file' });
|
||||
}
|
||||
break;
|
||||
|
||||
case 'POST':
|
||||
try {
|
||||
fs.writeFileSync(modifiedFilePath, JSON.stringify(req.body, null, 2), 'utf8');
|
||||
const newTranslations = req.body;
|
||||
const reconstructedTranslations = unflattenTranslations(newTranslations);
|
||||
fs.writeFileSync(filePath, JSON.stringify(reconstructedTranslations, null, 2), 'utf8');
|
||||
res.status(200).json({ status: 'Updated' });
|
||||
} catch (error) {
|
||||
console.error('Error writing modified translation file:', error);
|
||||
console.error('Error writing translation file:', error);
|
||||
res.status(500).json({ error: 'Failed to update translation file' });
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
res.setHeader('Allow', ['GET', 'POST']);
|
||||
res.status(405).end(`Method ${req.method} Not Allowed`);
|
||||
|
Reference in New Issue
Block a user