2018-03-06 15:03:20 +01:00
|
|
|
// This will be used for pills for things like composing PMs
|
|
|
|
// or adding users to a stream/group.
|
|
|
|
|
|
|
|
exports.create_item_from_email = function (email, current_items) {
|
|
|
|
// For normal Zulip use, we need to validate the email for our realm.
|
2019-11-02 00:06:25 +01:00
|
|
|
const user = people.get_by_email(email);
|
2018-03-06 15:03:20 +01:00
|
|
|
|
|
|
|
if (!user) {
|
2018-03-07 13:34:05 +01:00
|
|
|
if (page_params.realm_is_zephyr_mirror_realm) {
|
2020-02-09 04:39:08 +01:00
|
|
|
const existing_emails = current_items.map(item => item.email);
|
2018-03-07 13:34:05 +01:00
|
|
|
|
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 (existing_emails.includes(email)) {
|
2018-03-07 13:34:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For Zephyr we can't assume any emails are invalid,
|
|
|
|
// so we just create a pill where the display value
|
|
|
|
// is the email itself.
|
|
|
|
return {
|
|
|
|
display_value: email,
|
|
|
|
email: email,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// The email is not allowed, so return.
|
2018-03-06 15:03:20 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-02-09 04:39:08 +01:00
|
|
|
const existing_ids = current_items.map(item => item.user_id);
|
2018-03-06 15:03:20 +01:00
|
|
|
|
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 (existing_ids.includes(user.user_id)) {
|
2018-03-06 15:03:20 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const avatar_url = people.small_avatar_url_for_person(user);
|
2018-06-27 20:55:56 +02:00
|
|
|
|
2018-03-06 15:03:20 +01:00
|
|
|
// We must supply display_value for the widget to work. Everything
|
|
|
|
// else is for our own use in callbacks.
|
2019-11-02 00:06:25 +01:00
|
|
|
const item = {
|
2018-03-06 15:03:20 +01:00
|
|
|
display_value: user.full_name,
|
|
|
|
user_id: user.user_id,
|
|
|
|
email: user.email,
|
2018-06-27 20:55:56 +02:00
|
|
|
img_src: avatar_url,
|
2018-03-06 15:03:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
return item;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.get_email_from_item = function (item) {
|
2018-05-06 21:43:17 +02:00
|
|
|
return item.email;
|
2018-03-06 15:03:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.append_person = function (opts) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const person = opts.person;
|
|
|
|
const pill_widget = opts.pill_widget;
|
|
|
|
const avatar_url = people.small_avatar_url_for_person(person);
|
2018-03-06 15:03:20 +01:00
|
|
|
|
|
|
|
pill_widget.appendValidatedData({
|
|
|
|
display_value: person.full_name,
|
|
|
|
user_id: person.user_id,
|
|
|
|
email: person.email,
|
2018-06-27 20:55:56 +02:00
|
|
|
img_src: avatar_url,
|
2018-03-06 15:03:20 +01:00
|
|
|
});
|
2018-08-26 21:41:49 +02:00
|
|
|
pill_widget.clear_text();
|
2018-03-06 15:03:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.get_user_ids = function (pill_widget) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const items = pill_widget.items();
|
2020-02-09 04:39:08 +01:00
|
|
|
let user_ids = items.map(item => item.user_id);
|
2020-02-08 03:33:46 +01:00
|
|
|
user_ids = user_ids.filter(Boolean); // be defensive about undefined users
|
2018-03-06 15:03:20 +01:00
|
|
|
|
|
|
|
return user_ids;
|
|
|
|
};
|
|
|
|
|
2018-09-18 01:40:27 +02:00
|
|
|
exports.has_unconverted_data = function (pill_widget) {
|
|
|
|
// This returns true if we either have text that hasn't been
|
|
|
|
// turned into pills or email-only pills (for Zephyr).
|
|
|
|
if (pill_widget.is_pending()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const items = pill_widget.items();
|
2020-02-08 04:08:04 +01:00
|
|
|
const has_unknown_items = items.some(item => item.user_id === undefined);
|
2018-09-18 01:40:27 +02:00
|
|
|
|
|
|
|
return has_unknown_items;
|
|
|
|
};
|
|
|
|
|
2018-03-06 15:03:20 +01:00
|
|
|
exports.typeahead_source = function (pill_widget) {
|
2020-03-21 19:53:16 +01:00
|
|
|
const persons = people.get_realm_users();
|
2020-01-08 15:51:04 +01:00
|
|
|
return exports.filter_taken_users(persons, pill_widget);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.filter_taken_users = function (items, pill_widget) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const taken_user_ids = exports.get_user_ids(pill_widget);
|
2020-02-08 03:33:46 +01:00
|
|
|
items = items.filter(item => !taken_user_ids.includes(item.user_id));
|
2018-03-06 15:03:20 +01:00
|
|
|
return items;
|
|
|
|
};
|
|
|
|
|
2018-05-09 13:42:10 +02:00
|
|
|
exports.append_user = function (user, pills) {
|
|
|
|
if (user) {
|
|
|
|
exports.append_person({
|
|
|
|
pill_widget: pills,
|
|
|
|
person: user,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
blueslip.warn('Undefined user in function append_user');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.create_pills = function (pill_container) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const pills = input_pill.create({
|
2018-05-09 13:42:10 +02:00
|
|
|
container: pill_container,
|
|
|
|
create_item_from_text: exports.create_item_from_email,
|
|
|
|
get_text_from_item: exports.get_email_from_item,
|
|
|
|
});
|
|
|
|
return pills;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.set_up_typeahead_on_pills = function (input, pills, update_func) {
|
|
|
|
input.typeahead({
|
|
|
|
items: 5,
|
|
|
|
fixed: true,
|
|
|
|
dropup: true,
|
|
|
|
source: function () {
|
|
|
|
return exports.typeahead_source(pills);
|
|
|
|
},
|
|
|
|
highlighter: function (item) {
|
|
|
|
return typeahead_helper.render_person(item);
|
|
|
|
},
|
|
|
|
matcher: function (item) {
|
2019-11-02 00:06:25 +01:00
|
|
|
let query = this.query.toLowerCase();
|
2018-07-25 22:11:17 +02:00
|
|
|
query = query.replace(/\u00A0/g, String.fromCharCode(32));
|
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
|
|
|
return item.email.toLowerCase().includes(query)
|
|
|
|
|| item.full_name.toLowerCase().includes(query);
|
2018-05-09 13:42:10 +02:00
|
|
|
},
|
|
|
|
sorter: function (matches) {
|
|
|
|
return typeahead_helper.sort_recipientbox_typeahead(
|
|
|
|
this.query, matches, "");
|
|
|
|
},
|
|
|
|
updater: function (user) {
|
|
|
|
exports.append_user(user, pills);
|
|
|
|
input.focus();
|
|
|
|
update_func();
|
|
|
|
},
|
|
|
|
stopAdvance: true,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-10-25 09:45:13 +02:00
|
|
|
window.user_pill = exports;
|