2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2021-02-05 21:20:14 +01:00
|
|
|
const {
|
|
|
|
differenceInMinutes,
|
|
|
|
differenceInCalendarDays,
|
|
|
|
format,
|
|
|
|
formatISO,
|
|
|
|
isValid,
|
|
|
|
parseISO,
|
|
|
|
startOfToday,
|
|
|
|
} = require("date-fns");
|
2020-07-28 00:26:58 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let next_timerender_id = 0;
|
2013-02-12 23:26:25 +01:00
|
|
|
|
2021-02-05 21:20:14 +01:00
|
|
|
// Given a Date object 'time', returns an object:
|
2017-05-17 23:33:47 +02:00
|
|
|
// {
|
|
|
|
// time_str: a string for the current human-formatted version
|
|
|
|
// formal_time_str: a string for the current formally formatted version
|
|
|
|
// e.g. "Monday, April 15, 2017"
|
|
|
|
// needs_update: a boolean for if it will need to be updated when the
|
|
|
|
// day changes
|
|
|
|
// }
|
2021-02-05 21:20:14 +01:00
|
|
|
exports.render_now = function (time, today = new Date()) {
|
2020-07-15 01:29:15 +02:00
|
|
|
let time_str = "";
|
2019-11-02 00:06:25 +01:00
|
|
|
let needs_update = false;
|
2017-05-16 09:44:46 +02:00
|
|
|
// render formal time to be used as title attr tooltip
|
2017-05-17 23:33:47 +02:00
|
|
|
// "\xa0" is U+00A0 NO-BREAK SPACE.
|
|
|
|
// Can't use as that represents the literal string " ".
|
2021-02-05 21:20:14 +01:00
|
|
|
const formal_time_str = format(time, "EEEE,\u00A0MMMM\u00A0d,\u00A0yyyy");
|
2017-05-16 09:44:46 +02:00
|
|
|
|
2013-02-12 23:26:25 +01:00
|
|
|
// How many days old is 'time'? 0 = today, 1 = yesterday, 7 = a
|
|
|
|
// week ago, -1 = tomorrow, etc.
|
|
|
|
|
|
|
|
// Presumably the result of diffDays will be an integer in this
|
2013-02-26 20:32:49 +01:00
|
|
|
// case, but round it to be sure before comparing to integer
|
|
|
|
// constants.
|
2021-02-05 21:20:14 +01:00
|
|
|
const days_old = differenceInCalendarDays(today, time);
|
2017-05-24 02:20:06 +02:00
|
|
|
|
2013-06-25 16:22:14 +02:00
|
|
|
if (days_old === 0) {
|
2017-05-17 23:33:47 +02:00
|
|
|
time_str = i18n.t("Today");
|
|
|
|
needs_update = true;
|
2013-06-25 16:22:14 +02:00
|
|
|
} else if (days_old === 1) {
|
2017-05-17 23:33:47 +02:00
|
|
|
time_str = i18n.t("Yesterday");
|
|
|
|
needs_update = true;
|
2021-02-05 21:20:14 +01:00
|
|
|
} else if (time.getFullYear() !== today.getFullYear()) {
|
2016-07-13 00:43:19 +02:00
|
|
|
// For long running servers, searching backlog can get ambiguous
|
2017-05-24 02:20:06 +02:00
|
|
|
// without a year stamp. Only show year if message is from an older year
|
2021-02-05 21:20:14 +01:00
|
|
|
time_str = format(time, "MMM\u00A0dd,\u00A0yyyy");
|
2017-05-17 23:33:47 +02:00
|
|
|
needs_update = false;
|
|
|
|
} else {
|
|
|
|
// For now, if we get a message from tomorrow, we don't bother
|
|
|
|
// rewriting the timestamp when it gets to be tomorrow.
|
2021-02-05 21:20:14 +01:00
|
|
|
time_str = format(time, "MMM\u00A0dd");
|
2017-05-17 23:33:47 +02:00
|
|
|
needs_update = false;
|
2013-02-12 23:26:25 +01:00
|
|
|
}
|
2017-05-17 23:33:47 +02:00
|
|
|
return {
|
2020-07-20 22:18:43 +02:00
|
|
|
time_str,
|
|
|
|
formal_time_str,
|
|
|
|
needs_update,
|
2017-05-17 23:33:47 +02:00
|
|
|
};
|
2016-07-26 20:35:03 +02:00
|
|
|
};
|
2013-02-12 23:26:25 +01:00
|
|
|
|
2017-05-12 20:16:39 +02:00
|
|
|
// Current date is passed as an argument for unit testing
|
2021-02-05 21:20:14 +01:00
|
|
|
exports.last_seen_status_from_date = function (last_active_date, current_date = new Date()) {
|
|
|
|
const minutes = differenceInMinutes(current_date, last_active_date);
|
2017-05-12 20:16:39 +02:00
|
|
|
if (minutes <= 2) {
|
2018-08-15 20:58:12 +02:00
|
|
|
return i18n.t("Just now");
|
2017-05-12 20:16:39 +02:00
|
|
|
}
|
|
|
|
if (minutes < 60) {
|
2020-07-20 22:18:43 +02:00
|
|
|
return i18n.t("__minutes__ minutes ago", {minutes});
|
2017-05-12 20:16:39 +02:00
|
|
|
}
|
2021-02-05 21:20:14 +01:00
|
|
|
|
|
|
|
const days_old = differenceInCalendarDays(current_date, last_active_date);
|
2019-11-02 00:06:25 +01:00
|
|
|
const hours = Math.floor(minutes / 60);
|
2020-10-02 11:46:25 +02:00
|
|
|
|
|
|
|
if (days_old === 0) {
|
|
|
|
if (hours === 1) {
|
|
|
|
return i18n.t("An hour ago");
|
|
|
|
}
|
2020-07-20 22:18:43 +02:00
|
|
|
return i18n.t("__hours__ hours ago", {hours});
|
2017-05-12 20:16:39 +02:00
|
|
|
}
|
|
|
|
|
2020-10-02 11:46:25 +02:00
|
|
|
if (days_old === 1) {
|
2020-02-12 11:49:02 +01:00
|
|
|
return i18n.t("Yesterday");
|
2017-05-12 20:16:39 +02:00
|
|
|
}
|
|
|
|
|
2020-10-02 11:46:25 +02:00
|
|
|
if (days_old < 90) {
|
|
|
|
return i18n.t("__days_old__ days ago", {days_old});
|
2021-02-05 21:20:14 +01:00
|
|
|
} else if (
|
|
|
|
days_old > 90 &&
|
|
|
|
days_old < 365 &&
|
|
|
|
last_active_date.getFullYear() === current_date.getFullYear()
|
|
|
|
) {
|
2020-12-22 11:26:39 +01:00
|
|
|
// Online more than 90 days ago, in the same year
|
|
|
|
return i18n.t("__last_active_date__", {
|
2021-02-05 21:20:14 +01:00
|
|
|
last_active_date: format(last_active_date, "MMM\u00A0dd"),
|
2020-12-22 11:26:39 +01:00
|
|
|
});
|
2019-03-13 19:23:57 +01:00
|
|
|
}
|
2020-07-15 00:34:28 +02:00
|
|
|
return i18n.t("__last_active_date__", {
|
2021-02-05 21:20:14 +01:00
|
|
|
last_active_date: format(last_active_date, "MMM\u00A0dd,\u00A0yyyy"),
|
2020-07-15 00:34:28 +02:00
|
|
|
});
|
2017-05-12 20:16:39 +02:00
|
|
|
};
|
|
|
|
|
2013-06-25 16:22:14 +02:00
|
|
|
// List of the dates that need to be updated when the day changes.
|
2013-02-12 23:26:25 +01:00
|
|
|
// Each timestamp is represented as a list of length 2:
|
2021-02-05 21:20:14 +01:00
|
|
|
// [id of the span element, Date representing the time]
|
2019-11-02 00:06:25 +01:00
|
|
|
let update_list = [];
|
2013-02-12 23:26:25 +01:00
|
|
|
|
2021-02-05 21:20:14 +01:00
|
|
|
// The time at the beginning of the day, when the timestamps were updated.
|
|
|
|
// Represented as a Date with hour, minute, second, millisecond 0.
|
|
|
|
let last_update;
|
2018-05-15 22:03:14 +02:00
|
|
|
exports.initialize = function () {
|
2021-02-05 21:20:14 +01:00
|
|
|
last_update = startOfToday();
|
2018-05-15 22:03:14 +02:00
|
|
|
};
|
2013-02-12 23:26:25 +01:00
|
|
|
|
2013-08-29 01:34:10 +02:00
|
|
|
// time_above is an optional argument, to support dates that look like:
|
|
|
|
// --- ▲ Yesterday ▲ ------ ▼ Today ▼ ---
|
2017-06-03 20:23:43 +02:00
|
|
|
function maybe_add_update_list_entry(entry) {
|
|
|
|
if (entry.needs_update) {
|
|
|
|
update_list.push(entry);
|
2013-06-25 16:22:14 +02:00
|
|
|
}
|
2013-02-12 23:26:25 +01:00
|
|
|
}
|
|
|
|
|
2017-05-17 23:33:47 +02:00
|
|
|
function render_date_span(elem, rendered_time, rendered_time_above) {
|
2013-08-29 01:34:10 +02:00
|
|
|
elem.text("");
|
2017-05-17 23:33:47 +02:00
|
|
|
if (rendered_time_above !== undefined) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const pieces = [
|
2018-10-15 15:52:54 +02:00
|
|
|
'<i class="date-direction fa fa-caret-up"></i>',
|
2017-06-02 16:50:23 +02:00
|
|
|
rendered_time_above.time_str,
|
|
|
|
'<hr class="date-line">',
|
2018-10-15 15:52:54 +02:00
|
|
|
'<i class="date-direction fa fa-caret-down"></i>',
|
2017-06-02 16:50:23 +02:00
|
|
|
rendered_time.time_str,
|
|
|
|
];
|
|
|
|
elem.append(pieces);
|
|
|
|
return elem;
|
2013-08-29 01:34:10 +02:00
|
|
|
}
|
2017-06-02 16:50:23 +02:00
|
|
|
elem.append(rendered_time.time_str);
|
2020-07-15 01:29:15 +02:00
|
|
|
return elem.attr("title", rendered_time.formal_time_str);
|
2013-08-29 01:34:10 +02:00
|
|
|
}
|
|
|
|
|
2021-02-05 21:20:14 +01:00
|
|
|
// Given an Date object 'time', return a DOM node that initially
|
2013-07-01 20:51:39 +02:00
|
|
|
// displays the human-formatted date, and is updated automatically as
|
|
|
|
// necessary (e.g. changing "Today" to "Yesterday" to "Jul 1").
|
2013-08-29 01:34:10 +02:00
|
|
|
// If two dates are given, it renders them as:
|
|
|
|
// --- ▲ Yesterday ▲ ------ ▼ Today ▼ ---
|
2013-01-14 17:26:50 +01:00
|
|
|
|
2013-02-12 23:26:25 +01:00
|
|
|
// (What's actually spliced into the message template is the contents
|
|
|
|
// of this DOM node as HTML, so effectively a copy of the node. That's
|
|
|
|
// okay since to update the time later we look up the node by its id.)
|
2017-05-18 21:18:11 +02:00
|
|
|
exports.render_date = function (time, time_above, today) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const className = "timerender" + next_timerender_id;
|
2016-11-30 19:05:04 +01:00
|
|
|
next_timerender_id += 1;
|
2019-11-02 00:06:25 +01:00
|
|
|
const rendered_time = exports.render_now(time, today);
|
2020-07-15 01:29:15 +02:00
|
|
|
let node = $("<span />").attr("class", className);
|
2013-08-29 01:34:10 +02:00
|
|
|
if (time_above !== undefined) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const rendered_time_above = exports.render_now(time_above, today);
|
2017-05-17 23:33:47 +02:00
|
|
|
node = render_date_span(node, rendered_time, rendered_time_above);
|
2013-08-29 01:34:10 +02:00
|
|
|
} else {
|
2017-05-17 23:33:47 +02:00
|
|
|
node = render_date_span(node, rendered_time);
|
2013-08-29 01:34:10 +02:00
|
|
|
}
|
2017-06-03 20:23:43 +02:00
|
|
|
maybe_add_update_list_entry({
|
2018-05-06 21:43:17 +02:00
|
|
|
needs_update: rendered_time.needs_update,
|
2020-07-20 22:18:43 +02:00
|
|
|
className,
|
|
|
|
time,
|
|
|
|
time_above,
|
2017-06-03 20:23:43 +02:00
|
|
|
});
|
2013-02-12 23:26:25 +01:00
|
|
|
return node;
|
2013-01-14 17:26:50 +01:00
|
|
|
};
|
|
|
|
|
2020-08-11 01:47:49 +02:00
|
|
|
// Renders the timestamp returned by the <time:> Markdown syntax.
|
2020-07-15 23:10:20 +02:00
|
|
|
exports.render_markdown_timestamp = function (time, text) {
|
2020-09-29 22:20:46 +02:00
|
|
|
const hourformat = page_params.twenty_four_hour_time ? "HH:mm" : "h:mm a";
|
|
|
|
const timestring = format(time, "E, MMM d yyyy, " + hourformat);
|
2018-02-13 00:33:36 +01:00
|
|
|
const titlestring = "This time is in your timezone. Original text was '" + text + "'.";
|
|
|
|
return {
|
|
|
|
text: timestring,
|
|
|
|
title: titlestring,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-02-26 20:44:44 +01:00
|
|
|
// This isn't expected to be called externally except manually for
|
|
|
|
// testing purposes.
|
|
|
|
exports.update_timestamps = function () {
|
2021-02-05 21:20:14 +01:00
|
|
|
const today = startOfToday();
|
|
|
|
if (today !== last_update) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const to_process = update_list;
|
2013-06-25 16:22:14 +02:00
|
|
|
update_list = [];
|
|
|
|
|
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
|
|
|
for (const entry of to_process) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const className = entry.className;
|
2021-02-03 23:23:32 +01:00
|
|
|
const elements = $(`.${CSS.escape(className)}`);
|
2013-06-25 16:22:14 +02:00
|
|
|
// The element might not exist any more (because it
|
|
|
|
// was in the zfilt table, or because we added
|
|
|
|
// messages above it and re-collapsed).
|
2017-06-03 20:10:09 +02:00
|
|
|
if (elements !== null) {
|
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
|
|
|
for (const element of elements) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const time = entry.time;
|
|
|
|
const time_above = entry.time_above;
|
2021-02-05 21:20:14 +01:00
|
|
|
const rendered_time = exports.render_now(time, today);
|
2017-06-03 20:23:43 +02:00
|
|
|
if (time_above) {
|
2021-02-05 21:20:14 +01:00
|
|
|
const rendered_time_above = exports.render_now(time_above, today);
|
2017-06-03 20:10:09 +02:00
|
|
|
render_date_span($(element), rendered_time, rendered_time_above);
|
|
|
|
} else {
|
|
|
|
render_date_span($(element), rendered_time);
|
|
|
|
}
|
2017-06-03 20:23:43 +02:00
|
|
|
maybe_add_update_list_entry({
|
|
|
|
needs_update: rendered_time.needs_update,
|
2020-07-20 22:18:43 +02:00
|
|
|
className,
|
|
|
|
time,
|
|
|
|
time_above,
|
2017-06-03 20:23:43 +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
|
|
|
}
|
2013-06-25 16:22:14 +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
|
|
|
}
|
2013-06-25 16:22:14 +02:00
|
|
|
|
2021-02-05 21:20:14 +01:00
|
|
|
last_update = today;
|
2013-02-12 23:26:25 +01:00
|
|
|
}
|
2013-02-26 20:44:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
setInterval(exports.update_timestamps, 60 * 1000);
|
2013-02-12 23:26:25 +01:00
|
|
|
|
2017-06-21 21:37:53 +02:00
|
|
|
// Transform a Unix timestamp into a ISO 8601 formatted date string.
|
|
|
|
// Example: 1978-10-31T13:37:42Z
|
2017-02-20 00:14:52 +01:00
|
|
|
exports.get_full_time = function (timestamp) {
|
2021-02-05 21:20:14 +01:00
|
|
|
return formatISO(timestamp * 1000);
|
2017-02-20 00:14:52 +01:00
|
|
|
};
|
|
|
|
|
2020-07-06 19:09:29 +02:00
|
|
|
exports.get_timestamp_for_flatpickr = (timestring) => {
|
|
|
|
let timestamp;
|
|
|
|
try {
|
|
|
|
// If there's already a valid time in the compose box,
|
|
|
|
// we use it to initialize the flatpickr instance.
|
2020-09-29 22:20:46 +02:00
|
|
|
timestamp = parseISO(timestring);
|
2020-07-06 19:09:29 +02:00
|
|
|
} finally {
|
|
|
|
// Otherwise, default to showing the current time.
|
2020-09-29 22:20:46 +02:00
|
|
|
if (!timestamp || !isValid(timestamp)) {
|
|
|
|
timestamp = new Date();
|
2020-07-06 19:09:29 +02:00
|
|
|
}
|
|
|
|
}
|
2020-09-29 22:20:46 +02:00
|
|
|
return timestamp;
|
2020-07-06 19:09:29 +02:00
|
|
|
};
|
|
|
|
|
2017-12-25 21:43:06 +01:00
|
|
|
exports.stringify_time = function (time) {
|
|
|
|
if (page_params.twenty_four_hour_time) {
|
2021-02-05 21:20:14 +01:00
|
|
|
return format(time, "HH:mm");
|
2017-12-25 21:43:06 +01:00
|
|
|
}
|
2021-02-05 21:20:14 +01:00
|
|
|
return format(time, "h:mm a");
|
2017-12-25 21:43:06 +01:00
|
|
|
};
|
2017-02-24 02:30:47 +01:00
|
|
|
|
|
|
|
// this is for rendering absolute time based off the preferences for twenty-four
|
|
|
|
// hour time in the format of "%mmm %d, %h:%m %p".
|
|
|
|
exports.absolute_time = (function () {
|
2019-11-02 00:06:25 +01:00
|
|
|
const MONTHS = [
|
2020-07-15 00:34:28 +02:00
|
|
|
"Jan",
|
|
|
|
"Feb",
|
|
|
|
"Mar",
|
|
|
|
"Apr",
|
|
|
|
"May",
|
|
|
|
"Jun",
|
|
|
|
"Jul",
|
|
|
|
"Aug",
|
|
|
|
"Sep",
|
|
|
|
"Oct",
|
|
|
|
"Nov",
|
|
|
|
"Dec",
|
2018-05-07 01:38:14 +02:00
|
|
|
];
|
2017-12-08 14:24:32 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const fmt_time = function (date, H_24) {
|
|
|
|
const payload = {
|
2017-02-24 02:30:47 +01:00
|
|
|
hours: date.getHours(),
|
|
|
|
minutes: date.getMinutes(),
|
|
|
|
};
|
|
|
|
|
|
|
|
if (payload.hours > 12 && !H_24) {
|
|
|
|
payload.hours -= 12;
|
|
|
|
payload.is_pm = true;
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let str = ("0" + payload.hours).slice(-2) + ":" + ("0" + payload.minutes).slice(-2);
|
2017-02-24 02:30:47 +01:00
|
|
|
|
|
|
|
if (!H_24) {
|
|
|
|
str += payload.is_pm ? " PM" : " AM";
|
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
|
|
|
};
|
|
|
|
|
2017-07-26 07:20:31 +02:00
|
|
|
return function (timestamp, today) {
|
2020-07-15 01:29:15 +02:00
|
|
|
if (typeof today === "undefined") {
|
2018-05-06 21:43:17 +02:00
|
|
|
today = new Date();
|
2017-07-26 07:20:31 +02:00
|
|
|
}
|
2019-11-02 00:06:25 +01:00
|
|
|
const date = new Date(timestamp);
|
|
|
|
const is_older_year = today.getFullYear() - date.getFullYear() > 0;
|
|
|
|
const H_24 = page_params.twenty_four_hour_time;
|
|
|
|
let str = MONTHS[date.getMonth()] + " " + date.getDate();
|
2017-07-26 07:20:31 +02:00
|
|
|
// include year if message date is from a previous year
|
|
|
|
if (is_older_year) {
|
|
|
|
str += ", " + date.getFullYear();
|
|
|
|
}
|
|
|
|
str += " " + fmt_time(date, H_24);
|
|
|
|
return str;
|
2017-02-24 02:30:47 +01:00
|
|
|
};
|
2020-07-16 22:35:58 +02:00
|
|
|
})();
|
2017-02-24 02:30:47 +01:00
|
|
|
|
2020-06-26 11:53:06 +02:00
|
|
|
exports.get_full_datetime = function (time) {
|
|
|
|
// Convert to number of hours ahead/behind UTC.
|
|
|
|
// The sign of getTimezoneOffset() is reversed wrt
|
|
|
|
// the conventional meaning of UTC+n / UTC-n
|
|
|
|
const tz_offset = -time.getTimezoneOffset() / 60;
|
|
|
|
return {
|
|
|
|
date: time.toLocaleDateString(),
|
2020-07-15 00:34:28 +02:00
|
|
|
time: time.toLocaleTimeString() + " (UTC" + (tz_offset < 0 ? "" : "+") + tz_offset + ")",
|
2020-06-26 11:53:06 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-02-05 21:20:14 +01:00
|
|
|
// Date.toLocaleDateString and Date.toLocaleTimeString are
|
2013-03-05 00:18:04 +01:00
|
|
|
// expensive, so we delay running the following code until we need
|
|
|
|
// the full date and time strings.
|
|
|
|
exports.set_full_datetime = function timerender_set_full_datetime(message, time_elem) {
|
|
|
|
if (message.full_date_str !== undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-05 21:20:14 +01:00
|
|
|
const time = new Date(message.timestamp * 1000);
|
2020-06-26 11:53:06 +02:00
|
|
|
const full_datetime = exports.get_full_datetime(time);
|
2013-03-05 00:18:04 +01:00
|
|
|
|
2020-06-26 11:53:06 +02:00
|
|
|
message.full_date_str = full_datetime.date;
|
|
|
|
message.full_time_str = full_datetime.time;
|
2013-03-05 00:18:04 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
time_elem.attr("title", message.full_date_str + " " + message.full_time_str);
|
2013-03-05 00:18:04 +01:00
|
|
|
};
|
|
|
|
|
2019-10-25 09:45:13 +02:00
|
|
|
window.timerender = exports;
|