mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
ES and TypeScript modules are strict by default and don’t need this directive. ESLint will remind us to add it to new CommonJS files and remove it from ES and TypeScript modules. Signed-off-by: Anders Kaseorg <anders@zulip.com>
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
"use strict";
|
|
|
|
exports.create_item_from_search_string = function (search_string) {
|
|
const operator = Filter.parse(search_string);
|
|
const description = Filter.describe(operator);
|
|
return {
|
|
display_value: search_string,
|
|
description,
|
|
};
|
|
};
|
|
|
|
exports.get_search_string_from_item = function (item) {
|
|
return item.display_value;
|
|
};
|
|
|
|
exports.create_pills = function (pill_container) {
|
|
const pills = input_pill.create({
|
|
container: pill_container,
|
|
create_item_from_text: exports.create_item_from_search_string,
|
|
get_text_from_item: exports.get_search_string_from_item,
|
|
});
|
|
return pills;
|
|
};
|
|
|
|
exports.append_search_string = function (search_string, pill_widget) {
|
|
const operators = Filter.parse(search_string);
|
|
for (const operator of operators) {
|
|
const input = Filter.unparse([operator]);
|
|
pill_widget.appendValue(input);
|
|
}
|
|
if (pill_widget.clear_text !== undefined) {
|
|
pill_widget.clear_text();
|
|
}
|
|
};
|
|
|
|
exports.get_search_string_for_current_filter = function (pill_widget) {
|
|
const items = pill_widget.items();
|
|
const search_strings = items.map((item) => item.display_value);
|
|
return search_strings.join(" ");
|
|
};
|
|
|
|
window.search_pill = exports;
|