2019-01-14 20:26:32 +01:00
|
|
|
export function detect_user_os() {
|
2018-09-15 21:09:35 +02:00
|
|
|
if (/Android/i.test(navigator.userAgent)) {
|
|
|
|
return "android";
|
|
|
|
}
|
|
|
|
if (/iPhone|iPad|iPod/i.test(navigator.userAgent)) {
|
|
|
|
return "ios";
|
|
|
|
}
|
2019-06-10 09:09:04 +02:00
|
|
|
if (common.has_mac_keyboard()) {
|
2018-09-15 21:09:35 +02:00
|
|
|
return "mac";
|
|
|
|
}
|
|
|
|
if (/Win/i.test(navigator.userAgent)) {
|
|
|
|
return "windows";
|
|
|
|
}
|
|
|
|
if (/Linux/i.test(navigator.userAgent)) {
|
|
|
|
return "linux";
|
|
|
|
}
|
|
|
|
return "mac"; // if unable to determine OS return Mac by default
|
|
|
|
}
|
|
|
|
|
2019-01-14 20:26:32 +01:00
|
|
|
export function activate_correct_tab($codeSection) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const user_os = detect_user_os();
|
|
|
|
const desktop_os = ["mac", "linux", "windows"];
|
2018-09-15 21:09:35 +02:00
|
|
|
const $li = $codeSection.find("ul.nav li");
|
|
|
|
const $blocks = $codeSection.find(".blocks div");
|
|
|
|
|
|
|
|
$li.each(function () {
|
|
|
|
const language = this.dataset.language;
|
|
|
|
$(this).removeClass("active");
|
|
|
|
if (language === user_os) {
|
|
|
|
$(this).addClass("active");
|
|
|
|
}
|
|
|
|
|
js: Convert a.indexOf(…) !== -1 to a.includes(…).
Babel polyfills this for us for Internet Explorer.
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, {
visitBinaryExpression(path) {
const { operator, left, right } = path.node;
if (
n.CallExpression.check(left) &&
n.MemberExpression.check(left.callee) &&
!left.callee.computed &&
n.Identifier.check(left.callee.property) &&
left.callee.property.name === "indexOf" &&
left.arguments.length === 1 &&
checkExpression(left.arguments[0]) &&
((["===", "!==", "==", "!=", ">", "<="].includes(operator) &&
n.UnaryExpression.check(right) &&
right.operator == "-" &&
n.Literal.check(right.argument) &&
right.argument.value === 1) ||
([">=", "<"].includes(operator) &&
n.Literal.check(right) &&
right.value === 0))
) {
const test = b.callExpression(
b.memberExpression(left.callee.object, b.identifier("includes")),
[left.arguments[0]]
);
path.replace(
["!==", "!=", ">", ">="].includes(operator)
? test
: b.unaryExpression("!", test)
);
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>
2020-02-08 04:55:06 +01:00
|
|
|
if (desktop_os.includes(user_os) && language === "desktop-web") {
|
2018-09-15 21:09:35 +02:00
|
|
|
$(this).addClass("active");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$blocks.each(function () {
|
|
|
|
const language = this.dataset.language;
|
|
|
|
$(this).removeClass("active");
|
|
|
|
if (language === user_os) {
|
|
|
|
$(this).addClass("active");
|
|
|
|
}
|
|
|
|
|
js: Convert a.indexOf(…) !== -1 to a.includes(…).
Babel polyfills this for us for Internet Explorer.
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, {
visitBinaryExpression(path) {
const { operator, left, right } = path.node;
if (
n.CallExpression.check(left) &&
n.MemberExpression.check(left.callee) &&
!left.callee.computed &&
n.Identifier.check(left.callee.property) &&
left.callee.property.name === "indexOf" &&
left.arguments.length === 1 &&
checkExpression(left.arguments[0]) &&
((["===", "!==", "==", "!=", ">", "<="].includes(operator) &&
n.UnaryExpression.check(right) &&
right.operator == "-" &&
n.Literal.check(right.argument) &&
right.argument.value === 1) ||
([">=", "<"].includes(operator) &&
n.Literal.check(right) &&
right.value === 0))
) {
const test = b.callExpression(
b.memberExpression(left.callee.object, b.identifier("includes")),
[left.arguments[0]]
);
path.replace(
["!==", "!=", ">", ">="].includes(operator)
? test
: b.unaryExpression("!", test)
);
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>
2020-02-08 04:55:06 +01:00
|
|
|
if (desktop_os.includes(user_os) && language === "desktop-web") {
|
2018-09-15 21:09:35 +02:00
|
|
|
$(this).addClass("active");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// if no tab was activated, just activate the first one
|
2019-11-02 00:06:25 +01:00
|
|
|
const active_list_items = $li.filter(".active");
|
2018-09-15 21:09:35 +02:00
|
|
|
if (!active_list_items.length) {
|
|
|
|
$li.first().addClass("active");
|
2019-11-02 00:06:25 +01:00
|
|
|
const language = $li.first()[0].dataset.language;
|
2018-09-15 21:09:35 +02:00
|
|
|
$blocks.filter("[data-language=" + language + "]").addClass("active");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$(".code-section").each(function () {
|
|
|
|
activate_correct_tab($(this));
|
|
|
|
});
|