2020-07-25 02:02:35 +02:00
|
|
|
import _ from "lodash";
|
|
|
|
|
2020-07-23 13:52:05 +02:00
|
|
|
const contributors_list = page_params.contributors;
|
2017-11-17 19:50:55 +01:00
|
|
|
|
2020-07-23 13:37:28 +02:00
|
|
|
const repo_name_to_tab_name = {
|
|
|
|
zulip: "server",
|
|
|
|
"zulip-desktop": "desktop",
|
|
|
|
"zulip-mobile": "mobile",
|
|
|
|
"python-zulip-api": "python-zulip-api",
|
|
|
|
"zulip-js": "zulip-js",
|
|
|
|
zulipbot: "zulipbot",
|
|
|
|
"zulip-terminal": "terminal",
|
|
|
|
"zulip-ios-legacy": "",
|
|
|
|
"zulip-android": "",
|
|
|
|
};
|
2017-11-17 19:50:55 +01:00
|
|
|
|
2018-08-25 20:12:12 +02:00
|
|
|
// Remember the loaded repositories so that HTML is not redundantly edited
|
|
|
|
// if a user leaves and then revisits the same tab.
|
2019-11-02 00:06:25 +01:00
|
|
|
const loaded_repos = [];
|
2018-08-25 20:12:12 +02:00
|
|
|
|
2020-07-23 13:53:50 +02:00
|
|
|
function calculate_total_commits(contributor) {
|
2019-11-02 00:06:25 +01:00
|
|
|
let commits = 0;
|
2020-07-23 13:37:28 +02:00
|
|
|
Object.keys(repo_name_to_tab_name).forEach((repo_name) => {
|
|
|
|
commits += contributor[repo_name] || 0;
|
2017-11-17 19:50:55 +01:00
|
|
|
});
|
|
|
|
return commits;
|
|
|
|
}
|
|
|
|
|
2020-07-24 13:45:27 +02:00
|
|
|
function get_profile_url(contributor, tab_name) {
|
|
|
|
const commit_email_linked_to_github = "github_username" in contributor;
|
|
|
|
|
|
|
|
if (commit_email_linked_to_github) {
|
|
|
|
return "https://github.com/" + contributor.github_username;
|
|
|
|
}
|
|
|
|
|
|
|
|
const email = contributor.email;
|
|
|
|
|
|
|
|
if (tab_name) {
|
|
|
|
return `https://github.com/zulip/${tab_name}/commits?author=${email}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const repo_name in repo_name_to_tab_name) {
|
|
|
|
if (repo_name in contributor) {
|
|
|
|
return `https://github.com/zulip/${repo_name}/commits?author=${email}`;
|
|
|
|
}
|
|
|
|
}
|
2020-09-24 07:50:36 +02:00
|
|
|
|
|
|
|
return undefined;
|
2020-07-24 13:45:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function get_display_name(contributor) {
|
|
|
|
if (contributor.github_username) {
|
|
|
|
return "@" + contributor.github_username;
|
|
|
|
}
|
|
|
|
return contributor.name;
|
|
|
|
}
|
|
|
|
|
2017-11-17 19:50:55 +01:00
|
|
|
// TODO (for v2 of /team contributors):
|
|
|
|
// - Make tab header responsive.
|
2020-10-23 02:43:28 +02:00
|
|
|
// - Display full name instead of GitHub username.
|
2017-11-17 19:50:55 +01:00
|
|
|
export default function render_tabs() {
|
2020-07-15 01:29:15 +02:00
|
|
|
const template = _.template($("#contributors-template").html());
|
2020-02-26 09:27:17 +01:00
|
|
|
const total_tab_html = contributors_list
|
2020-07-02 01:45:54 +02:00
|
|
|
.map((c) => ({
|
2020-07-24 13:45:27 +02:00
|
|
|
name: get_display_name(c),
|
|
|
|
github_username: c.github_username,
|
2020-07-02 01:45:54 +02:00
|
|
|
avatar: c.avatar,
|
2020-07-24 13:45:27 +02:00
|
|
|
profile_url: get_profile_url(c),
|
2020-07-23 13:53:50 +02:00
|
|
|
commits: calculate_total_commits(c),
|
2020-07-02 01:45:54 +02:00
|
|
|
}))
|
2020-02-26 09:27:17 +01:00
|
|
|
.sort((a, b) => (a.commits < b.commits ? 1 : a.commits > b.commits ? -1 : 0))
|
2020-07-02 01:45:54 +02:00
|
|
|
.map((c) => template(c))
|
2020-07-15 01:29:15 +02:00
|
|
|
.join("");
|
2017-11-17 19:50:55 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#tab-total").html(total_tab_html);
|
2017-11-17 19:50:55 +01:00
|
|
|
|
2020-07-23 13:37:28 +02:00
|
|
|
for (const repo_name of Object.keys(repo_name_to_tab_name)) {
|
|
|
|
const tab_name = repo_name_to_tab_name[repo_name];
|
|
|
|
if (!tab_name) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-08-25 20:12:12 +02:00
|
|
|
// Set as the loading template for now, and load when clicked.
|
2020-07-23 13:37:28 +02:00
|
|
|
$("#tab-" + tab_name).html($("#loading-template").html());
|
2018-08-25 20:12:12 +02:00
|
|
|
|
2020-07-23 13:37:28 +02:00
|
|
|
$("#" + tab_name).on("click", () => {
|
|
|
|
if (!loaded_repos.includes(repo_name)) {
|
2020-02-26 09:27:17 +01:00
|
|
|
const html = contributors_list
|
|
|
|
.filter((c) => c[repo_name])
|
|
|
|
.sort((a, b) =>
|
|
|
|
a[repo_name] < b[repo_name] ? 1 : a[repo_name] > b[repo_name] ? -1 : 0,
|
|
|
|
)
|
2020-07-15 00:34:28 +02:00
|
|
|
.map((c) =>
|
|
|
|
template({
|
2020-07-24 13:45:27 +02:00
|
|
|
name: get_display_name(c),
|
|
|
|
github_username: c.github_username,
|
2020-07-15 00:34:28 +02:00
|
|
|
avatar: c.avatar,
|
2020-07-24 13:45:27 +02:00
|
|
|
profile_url: get_profile_url(c),
|
2020-07-23 13:37:28 +02:00
|
|
|
commits: c[repo_name],
|
2020-07-15 00:34:28 +02:00
|
|
|
}),
|
|
|
|
)
|
2020-07-15 01:29:15 +02:00
|
|
|
.join("");
|
2018-08-25 20:12:12 +02:00
|
|
|
|
2020-07-23 13:37:28 +02:00
|
|
|
$("#tab-" + tab_name).html(html);
|
2017-11-17 19:50:55 +01:00
|
|
|
|
2020-07-23 13:37:28 +02:00
|
|
|
loaded_repos.push(repo_name);
|
2018-08-25 20:12:12 +02:00
|
|
|
}
|
|
|
|
});
|
js: Automatically convert _.each to for…of.
This commit was automatically generated by the following script,
followed by lint --fix and a few small manual lint-related cleanups.
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 { Context } from "ast-types/lib/path-visitor";
import K from "ast-types/gen/kinds";
import { NodePath } from "ast-types/lib/node-path";
import assert from "assert";
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);
const checkStatement = (node: n.Node): node is K.StatementKind =>
n.Statement.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;
let inLoop = false;
let replaceReturn = false;
const visitLoop = (...args: string[]) =>
function(this: Context, path: NodePath) {
for (const arg of args) {
this.visit(path.get(arg));
}
const old = { inLoop };
inLoop = true;
this.visit(path.get("body"));
inLoop = old.inLoop;
return false;
};
recast.visit(ast, {
visitDoWhileStatement: visitLoop("test"),
visitExpressionStatement(path) {
const { expression, comments } = path.node;
let valueOnly;
if (
n.CallExpression.check(expression) &&
n.MemberExpression.check(expression.callee) &&
!expression.callee.computed &&
n.Identifier.check(expression.callee.object) &&
expression.callee.object.name === "_" &&
n.Identifier.check(expression.callee.property) &&
["each", "forEach"].includes(expression.callee.property.name) &&
[2, 3].includes(expression.arguments.length) &&
checkExpression(expression.arguments[0]) &&
(n.FunctionExpression.check(expression.arguments[1]) ||
n.ArrowFunctionExpression.check(expression.arguments[1])) &&
[1, 2].includes(expression.arguments[1].params.length) &&
n.Identifier.check(expression.arguments[1].params[0]) &&
((valueOnly = expression.arguments[1].params[1] === undefined) ||
n.Identifier.check(expression.arguments[1].params[1])) &&
(expression.arguments[2] === undefined ||
n.ThisExpression.check(expression.arguments[2]))
) {
const old = { inLoop, replaceReturn };
inLoop = false;
replaceReturn = true;
this.visit(
path
.get("expression")
.get("arguments")
.get(1)
.get("body")
);
inLoop = old.inLoop;
replaceReturn = old.replaceReturn;
const [right, { body, params }] = expression.arguments;
const loop = b.forOfStatement(
b.variableDeclaration("let", [
b.variableDeclarator(
valueOnly ? params[0] : b.arrayPattern([params[1], params[0]])
),
]),
valueOnly
? right
: b.callExpression(
b.memberExpression(right, b.identifier("entries")),
[]
),
checkStatement(body) ? body : b.expressionStatement(body)
);
loop.comments = comments;
path.replace(loop);
changed = true;
}
this.traverse(path);
},
visitForStatement: visitLoop("init", "test", "update"),
visitForInStatement: visitLoop("left", "right"),
visitForOfStatement: visitLoop("left", "right"),
visitFunction(path) {
this.visit(path.get("params"));
const old = { replaceReturn };
replaceReturn = false;
this.visit(path.get("body"));
replaceReturn = old.replaceReturn;
return false;
},
visitReturnStatement(path) {
if (replaceReturn) {
assert(!inLoop); // could use labeled continue if this ever fires
const { argument, comments } = path.node;
if (argument === null) {
const s = b.continueStatement();
s.comments = comments;
path.replace(s);
} else {
const s = b.expressionStatement(argument);
s.comments = comments;
path.replace(s, b.continueStatement());
}
return false;
}
this.traverse(path);
},
visitWhileStatement: visitLoop("test"),
});
if (changed) {
console.log("Writing", file);
fs.writeFileSync(file, recast.print(ast).code, { encoding: "utf8" });
}
}
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-02-06 06:19:47 +01:00
|
|
|
}
|
2017-11-17 19:50:55 +01:00
|
|
|
}
|