2018-03-06 15:07:55 +01:00
|
|
|
exports.initialize_pill = function () {
|
|
|
|
var container = $("#private_message_recipient").parent();
|
|
|
|
|
2019-10-26 00:11:05 +02:00
|
|
|
const pill = input_pill.create({
|
2018-03-06 15:07:55 +01:00
|
|
|
container: container,
|
|
|
|
create_item_from_text: user_pill.create_item_from_email,
|
|
|
|
get_text_from_item: user_pill.get_email_from_item,
|
|
|
|
});
|
|
|
|
|
|
|
|
return pill;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.initialize = function () {
|
2018-07-23 02:20:57 +02:00
|
|
|
exports.widget = exports.initialize_pill();
|
2018-03-06 15:07:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.clear = function () {
|
2018-07-23 02:20:57 +02:00
|
|
|
exports.widget.clear();
|
2018-03-06 15:07:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.set_from_typeahead = function (person) {
|
|
|
|
// We expect person to be an object returned from people.js.
|
|
|
|
user_pill.append_person({
|
2018-07-23 02:20:57 +02:00
|
|
|
pill_widget: exports.widget,
|
2018-03-06 15:07:55 +01:00
|
|
|
person: person,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.set_from_emails = function (value) {
|
|
|
|
// value is something like "alice@example.com,bob@example.com"
|
|
|
|
exports.clear();
|
2018-07-23 02:20:57 +02:00
|
|
|
exports.widget.appendValue(value);
|
2018-03-06 15:07:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.get_user_ids = function () {
|
2018-07-23 02:20:57 +02:00
|
|
|
return user_pill.get_user_ids(exports.widget);
|
2018-03-06 15:07:55 +01:00
|
|
|
};
|
|
|
|
|
2018-09-18 01:40:27 +02:00
|
|
|
exports.has_unconverted_data = function () {
|
|
|
|
return user_pill.has_unconverted_data(exports.widget);
|
|
|
|
};
|
|
|
|
|
2018-08-25 17:06:59 +02:00
|
|
|
exports.get_user_ids_string = function () {
|
|
|
|
var user_ids = exports.get_user_ids();
|
|
|
|
var sorted_user_ids = util.sorted_ids(user_ids);
|
|
|
|
var user_ids_string = sorted_user_ids.join(',');
|
|
|
|
return user_ids_string;
|
|
|
|
};
|
|
|
|
|
2018-03-06 15:07:55 +01:00
|
|
|
exports.get_emails = function () {
|
|
|
|
// return something like "alice@example.com,bob@example.com"
|
|
|
|
var user_ids = exports.get_user_ids();
|
|
|
|
var emails = user_ids.map(function (id) {
|
|
|
|
return people.get_person_from_user_id(id).email;
|
|
|
|
}).join(",");
|
|
|
|
return emails;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.get_typeahead_items = function () {
|
2018-07-23 02:20:57 +02:00
|
|
|
return user_pill.typeahead_source(exports.widget);
|
2018-03-06 15:07:55 +01:00
|
|
|
};
|
|
|
|
|
2019-10-25 09:45:13 +02:00
|
|
|
window.compose_pm_pill = exports;
|