mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 21:43:21 +00:00
And convert the corresponding function expressions to arrow style
while we’re here.
import * as babelParser from "recast/parsers/babel";
import * as recast from "recast";
import * as tsParser from "recast/parsers/typescript";
import { builders as b, namedTypes as n } from "ast-types";
import K from "ast-types/gen/kinds";
import fs from "fs";
import path from "path";
import process from "process";
const checkExpression = (node: n.Node): node is K.ExpressionKind =>
n.Expression.check(node);
for (const file of process.argv.slice(2)) {
console.log("Parsing", file);
const ast = recast.parse(fs.readFileSync(file, { encoding: "utf8" }), {
parser: path.extname(file) === ".ts" ? tsParser : babelParser,
});
let changed = false;
recast.visit(ast, {
visitCallExpression(path) {
const { callee, arguments: args } = path.node;
if (
n.MemberExpression.check(callee) &&
!callee.computed &&
n.Identifier.check(callee.object) &&
callee.object.name === "_" &&
n.Identifier.check(callee.property) &&
callee.property.name === "map" &&
args.length === 2 &&
checkExpression(args[0]) &&
checkExpression(args[1])
) {
const [arr, fn] = args;
path.replace(
b.callExpression(b.memberExpression(arr, b.identifier("map")), [
n.FunctionExpression.check(fn) ||
n.ArrowFunctionExpression.check(fn)
? b.arrowFunctionExpression(
fn.params,
n.BlockStatement.check(fn.body) &&
fn.body.body.length === 1 &&
n.ReturnStatement.check(fn.body.body[0])
? fn.body.body[0].argument || b.identifier("undefined")
: fn.body
)
: fn,
])
);
changed = true;
}
this.traverse(path);
},
});
if (changed) {
console.log("Writing", file);
fs.writeFileSync(file, recast.print(ast).code, { encoding: "utf8" });
}
}
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
exports.t = function (str, context) {
|
|
// HAPPY PATH: most translations are a simple string:
|
|
if (context === undefined) {
|
|
return 'translated: ' + str;
|
|
}
|
|
|
|
/*
|
|
context will be an ordinary JS object like this:
|
|
|
|
{minutes: minutes.toString()}
|
|
|
|
This supports use cases like the following:
|
|
|
|
i18n.t("__minutes__ min to edit", {minutes: minutes.toString()})
|
|
|
|
We have to munge in the context here.
|
|
*/
|
|
const keyword_regex = /__(- )?(\w)+__/g;
|
|
const keys_in_str = str.match(keyword_regex) || [];
|
|
const substitutions = keys_in_str.map(key => {
|
|
let prefix_length;
|
|
if (key.startsWith("__- ")) {
|
|
prefix_length = 4;
|
|
} else {
|
|
prefix_length = 2;
|
|
}
|
|
return {
|
|
keyword: key.slice(prefix_length, key.length - 2),
|
|
prefix: key.slice(0, prefix_length),
|
|
suffix: key.slice(key.length - 2, key.length),
|
|
};
|
|
});
|
|
|
|
for (const item of substitutions) {
|
|
str = str.replace(item.prefix + item.keyword + item.suffix,
|
|
context[item.keyword]);
|
|
}
|
|
|
|
return 'translated: ' + str;
|
|
};
|