2018-06-21 15:11:21 +02:00
|
|
|
exports.create_item_from_search_string = function (search_string) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const operator = Filter.parse(search_string);
|
|
|
|
const description = Filter.describe(operator);
|
2018-06-21 15:11:21 +02:00
|
|
|
return {
|
2018-07-14 16:10:00 +02:00
|
|
|
display_value: search_string,
|
2020-07-20 22:18:43 +02:00
|
|
|
description,
|
2018-06-21 15:11:21 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.get_search_string_from_item = function (item) {
|
2018-07-14 16:10:00 +02:00
|
|
|
return item.display_value;
|
2018-06-21 15:11:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.create_pills = function (pill_container) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const pills = input_pill.create({
|
2018-06-21 15:11:21 +02:00
|
|
|
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) {
|
2020-06-19 18:09:37 +02:00
|
|
|
const operators = Filter.parse(search_string);
|
|
|
|
for (const operator of operators) {
|
|
|
|
const input = Filter.unparse([operator]);
|
|
|
|
pill_widget.appendValue(input);
|
|
|
|
}
|
2018-06-21 15:11:21 +02:00
|
|
|
if (pill_widget.clear_text !== undefined) {
|
|
|
|
pill_widget.clear_text();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.get_search_string_for_current_filter = function (pill_widget) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const items = pill_widget.items();
|
2020-07-02 01:39:34 +02:00
|
|
|
const search_strings = items.map((item) => item.display_value);
|
2020-07-15 01:29:15 +02:00
|
|
|
return search_strings.join(" ");
|
2018-06-21 15:11:21 +02:00
|
|
|
};
|
|
|
|
|
2019-10-25 09:45:13 +02:00
|
|
|
window.search_pill = exports;
|