2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-11-30 23:46:45 +01:00
|
|
|
const {strict: assert} = require("assert");
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
const {mock_esm, set_global, zrequire} = require("../zjsunit/namespace");
|
2020-12-01 00:39:47 +01:00
|
|
|
const {run_test} = require("../zjsunit/test");
|
2021-03-16 23:38:59 +01:00
|
|
|
const blueslip = require("../zjsunit/zblueslip");
|
2021-02-21 15:38:51 +01:00
|
|
|
const $ = require("../zjsunit/zjquery");
|
2020-12-01 00:02:16 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
set_global("document", {});
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
const noop = () => {};
|
2020-07-15 01:29:15 +02:00
|
|
|
const example_img_link = "http://example.com/example.png";
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2021-03-10 06:10:32 +01:00
|
|
|
mock_esm("../../static/js/ui_util", {
|
2018-03-07 20:46:13 +01:00
|
|
|
place_caret_at_end: noop,
|
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
set_global("getSelection", () => ({
|
2020-07-02 01:41:40 +02:00
|
|
|
anchorOffset: 0,
|
|
|
|
}));
|
2018-08-24 19:09:09 +02:00
|
|
|
|
2020-12-01 23:21:38 +01:00
|
|
|
const input_pill = zrequire("input_pill");
|
|
|
|
|
2022-07-11 04:34:15 +02:00
|
|
|
function pill_html(value, img_src, status_emoji_info) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const has_image = img_src !== undefined;
|
2022-02-05 19:15:30 +01:00
|
|
|
const has_status = status_emoji_info !== undefined;
|
2018-06-27 20:17:04 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const opts = {
|
2018-03-31 13:22:29 +02:00
|
|
|
display_value: value,
|
2020-07-20 22:18:43 +02:00
|
|
|
has_image,
|
2022-02-05 19:15:30 +01:00
|
|
|
has_status,
|
2018-03-31 13:22:29 +02:00
|
|
|
};
|
|
|
|
|
2018-06-27 20:17:04 +02:00
|
|
|
if (has_image) {
|
|
|
|
opts.img_src = img_src;
|
|
|
|
}
|
|
|
|
|
2022-02-05 19:15:30 +01:00
|
|
|
if (has_status) {
|
|
|
|
opts.status_emoji_info = status_emoji_info;
|
|
|
|
}
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
return require("../../static/templates/input_pill.hbs")(opts);
|
2018-03-07 20:46:13 +01:00
|
|
|
}
|
|
|
|
|
2022-07-11 04:34:15 +02:00
|
|
|
run_test("basics", ({mock_template}) => {
|
2021-06-28 00:41:05 +02:00
|
|
|
mock_template("input_pill.hbs", true, (data, html) => {
|
2021-06-27 15:13:19 +02:00
|
|
|
assert.equal(data.display_value, "JavaScript");
|
|
|
|
return html;
|
|
|
|
});
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const config = {};
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
blueslip.expect("error", "Pill needs container.");
|
2018-03-07 20:46:13 +01:00
|
|
|
input_pill.create(config);
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $pill_input = $.create("pill_input");
|
|
|
|
const $container = $.create("container");
|
|
|
|
$container.set_find_results(".input", $pill_input);
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
blueslip.expect("error", "Pill needs create_item_from_text");
|
2022-01-25 11:36:19 +01:00
|
|
|
config.$container = $container;
|
2018-03-07 20:46:13 +01:00
|
|
|
input_pill.create(config);
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
blueslip.expect("error", "Pill needs get_text_from_item");
|
2018-03-07 20:46:13 +01:00
|
|
|
config.create_item_from_text = noop;
|
|
|
|
input_pill.create(config);
|
|
|
|
|
|
|
|
config.get_text_from_item = noop;
|
2022-02-05 19:15:30 +01:00
|
|
|
config.pill_config = {
|
|
|
|
show_user_status_emoji: true,
|
|
|
|
};
|
2019-11-02 00:06:25 +01:00
|
|
|
const widget = input_pill.create(config);
|
2022-02-05 19:15:30 +01:00
|
|
|
const status_emoji_info = {emoji_code: 5};
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2021-04-27 16:56:20 +02:00
|
|
|
// type for a pill can be any string but it needs to be
|
|
|
|
// defined while creating any pill.
|
2019-11-02 00:06:25 +01:00
|
|
|
const item = {
|
2020-07-15 01:29:15 +02:00
|
|
|
display_value: "JavaScript",
|
|
|
|
language: "js",
|
2021-04-27 16:56:20 +02:00
|
|
|
type: "language",
|
2018-06-27 20:17:04 +02:00
|
|
|
img_src: example_img_link,
|
2022-02-05 19:15:30 +01:00
|
|
|
status_emoji_info,
|
2018-03-07 20:46:13 +01:00
|
|
|
};
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let inserted_before;
|
2022-07-11 04:34:15 +02:00
|
|
|
const expected_html = pill_html("JavaScript", example_img_link, status_emoji_info);
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$pill_input.before = ($elem) => {
|
2018-03-07 20:46:13 +01:00
|
|
|
inserted_before = true;
|
2022-01-25 11:36:19 +01:00
|
|
|
assert.equal($elem.html(), expected_html);
|
2018-03-07 20:46:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
widget.appendValidatedData(item);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(inserted_before);
|
2018-03-07 20:46:13 +01:00
|
|
|
|
|
|
|
assert.deepEqual(widget.items(), [item]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2018-08-24 17:47:26 +02:00
|
|
|
function set_up() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const items = {
|
2018-03-07 20:46:13 +01:00
|
|
|
blue: {
|
2020-07-15 01:29:15 +02:00
|
|
|
display_value: "BLUE",
|
|
|
|
description: "color of the sky",
|
2021-04-27 16:56:20 +02:00
|
|
|
type: "color",
|
2018-06-27 20:17:04 +02:00
|
|
|
img_src: example_img_link,
|
2018-03-07 20:46:13 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
red: {
|
2020-07-15 01:29:15 +02:00
|
|
|
display_value: "RED",
|
2021-04-27 16:56:20 +02:00
|
|
|
type: "color",
|
2020-07-15 01:29:15 +02:00
|
|
|
description: "color of stop signs",
|
2018-03-07 20:46:13 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
yellow: {
|
2020-07-15 01:29:15 +02:00
|
|
|
display_value: "YELLOW",
|
2021-04-27 16:56:20 +02:00
|
|
|
type: "color",
|
2020-07-15 01:29:15 +02:00
|
|
|
description: "color of bananas",
|
2018-03-07 20:46:13 +01:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $pill_input = $.create("pill_input");
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$pill_input[0] = {};
|
|
|
|
$pill_input.before = () => {};
|
2018-08-26 13:40:22 +02:00
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
const create_item_from_text = (text) => items[text];
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $container = $.create("container");
|
|
|
|
$container.set_find_results(".input", $pill_input);
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const config = {
|
2022-01-25 11:36:19 +01:00
|
|
|
$container,
|
2020-07-20 22:18:43 +02:00
|
|
|
create_item_from_text,
|
2018-08-26 17:01:06 +02:00
|
|
|
get_text_from_item: (item) => item.display_value,
|
2018-03-07 20:46:13 +01:00
|
|
|
};
|
|
|
|
|
2018-08-24 17:47:26 +02:00
|
|
|
return {
|
2020-07-20 22:18:43 +02:00
|
|
|
config,
|
2022-01-25 11:36:19 +01:00
|
|
|
$pill_input,
|
2020-07-20 22:18:43 +02:00
|
|
|
items,
|
2022-01-25 11:36:19 +01:00
|
|
|
$container,
|
2018-08-24 17:47:26 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-07-11 04:34:15 +02:00
|
|
|
run_test("copy from pill", ({mock_template}) => {
|
2021-06-28 00:41:05 +02:00
|
|
|
mock_template("input_pill.hbs", true, (data, html) => {
|
2021-06-27 15:13:19 +02:00
|
|
|
assert.ok(["BLUE", "RED"].includes(data.display_value));
|
2022-07-11 04:27:00 +02:00
|
|
|
$(html)[0] = `<pill-stub ${data.display_value}>`;
|
2021-06-27 15:13:19 +02:00
|
|
|
return html;
|
|
|
|
});
|
|
|
|
|
2018-08-26 17:01:06 +02:00
|
|
|
const info = set_up();
|
|
|
|
const config = info.config;
|
2022-01-25 11:36:19 +01:00
|
|
|
const $container = info.$container;
|
2018-08-26 17:01:06 +02:00
|
|
|
|
|
|
|
const widget = input_pill.create(config);
|
2020-07-15 01:29:15 +02:00
|
|
|
widget.appendValue("blue,red");
|
2018-08-26 17:01:06 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const copy_handler = $container.get_on_handler("copy", ".pill");
|
2018-08-26 17:01:06 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let copied_text;
|
2018-08-26 17:01:06 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $pill_stub = {
|
2022-07-11 04:34:15 +02:00
|
|
|
[0]: "<pill-stub RED>",
|
2018-08-26 17:01:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const e = {
|
|
|
|
originalEvent: {
|
|
|
|
clipboardData: {
|
|
|
|
setData: (format, text) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(format, "text/plain");
|
2018-08-26 17:01:06 +02:00
|
|
|
copied_text = text;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
preventDefault: noop,
|
|
|
|
};
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$container.set_find_results(":focus", $pill_stub);
|
2018-08-26 17:01:06 +02:00
|
|
|
|
|
|
|
copy_handler(e);
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(copied_text, "RED");
|
2018-08-26 17:01:06 +02:00
|
|
|
});
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
run_test("paste to input", ({mock_template}) => {
|
|
|
|
mock_template("input_pill.hbs", true, (data, html) => {
|
2021-06-27 15:13:19 +02:00
|
|
|
assert.equal(typeof data.has_image, "boolean");
|
|
|
|
return html;
|
|
|
|
});
|
|
|
|
|
2018-08-26 17:15:12 +02:00
|
|
|
const info = set_up();
|
|
|
|
const config = info.config;
|
2022-01-25 11:36:19 +01:00
|
|
|
const $container = info.$container;
|
2018-08-26 17:15:12 +02:00
|
|
|
const items = info.items;
|
|
|
|
|
|
|
|
const widget = input_pill.create(config);
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const paste_handler = $container.get_on_handler("paste", ".input");
|
2018-08-26 17:15:12 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const paste_text = "blue,yellow";
|
2018-08-26 17:15:12 +02:00
|
|
|
|
|
|
|
const e = {
|
|
|
|
originalEvent: {
|
|
|
|
clipboardData: {
|
|
|
|
getData: (format) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(format, "text/plain");
|
2018-08-26 17:15:12 +02:00
|
|
|
return paste_text;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
preventDefault: noop,
|
|
|
|
};
|
|
|
|
|
|
|
|
document.execCommand = (cmd, _, text) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(cmd, "insertText");
|
2022-01-25 11:36:19 +01:00
|
|
|
$container.find(".input").text(text);
|
2018-08-26 17:15:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
paste_handler(e);
|
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(widget.items(), [items.blue, items.yellow]);
|
2020-05-15 01:27:15 +02:00
|
|
|
|
|
|
|
let entered = false;
|
2020-07-02 01:45:54 +02:00
|
|
|
widget.createPillonPaste(() => {
|
2020-05-15 01:27:15 +02:00
|
|
|
entered = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
paste_handler(e);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(entered);
|
2018-08-26 17:15:12 +02:00
|
|
|
});
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
run_test("arrows on pills", ({mock_template}) => {
|
|
|
|
mock_template("input_pill.hbs", true, (data, html) => {
|
2021-06-27 15:13:19 +02:00
|
|
|
assert.equal(typeof data.has_image, "boolean");
|
|
|
|
return html;
|
|
|
|
});
|
|
|
|
|
2018-08-26 21:16:46 +02:00
|
|
|
const info = set_up();
|
|
|
|
const config = info.config;
|
2022-01-25 11:36:19 +01:00
|
|
|
const $container = info.$container;
|
2018-08-26 21:16:46 +02:00
|
|
|
|
|
|
|
const widget = input_pill.create(config);
|
2020-07-15 01:29:15 +02:00
|
|
|
widget.appendValue("blue,red");
|
2018-08-26 21:16:46 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const key_handler = $container.get_on_handler("keydown", ".pill");
|
2018-08-26 21:16:46 +02:00
|
|
|
|
|
|
|
function test_key(c) {
|
|
|
|
key_handler({
|
2021-05-29 22:06:13 +02:00
|
|
|
key: c,
|
2018-08-26 21:16:46 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let prev_focused = false;
|
|
|
|
let next_focused = false;
|
2018-08-26 21:16:46 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $pill_stub = {
|
2020-07-02 01:41:40 +02:00
|
|
|
prev: () => ({
|
2020-07-20 21:24:26 +02:00
|
|
|
trigger: (type) => {
|
|
|
|
if (type === "focus") {
|
|
|
|
prev_focused = true;
|
|
|
|
}
|
2020-07-02 01:41:40 +02:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
next: () => ({
|
2020-07-20 21:24:26 +02:00
|
|
|
trigger: (type) => {
|
|
|
|
if (type === "focus") {
|
|
|
|
next_focused = true;
|
|
|
|
}
|
2020-07-02 01:41:40 +02:00
|
|
|
},
|
|
|
|
}),
|
2018-08-26 21:16:46 +02:00
|
|
|
};
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$container.set_find_results(".pill:focus", $pill_stub);
|
2018-08-26 21:16:46 +02:00
|
|
|
|
|
|
|
// We use the same stub to test both arrows, since we don't
|
|
|
|
// actually cause any real state changes here. We stub out
|
|
|
|
// the only interaction, which is to move the focus.
|
2021-05-29 22:06:13 +02:00
|
|
|
test_key("ArrowLeft");
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(prev_focused);
|
2018-08-26 21:16:46 +02:00
|
|
|
|
2021-05-29 22:06:13 +02:00
|
|
|
test_key("ArrowRight");
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(next_focused);
|
2018-08-26 21:16:46 +02:00
|
|
|
});
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
run_test("left arrow on input", ({mock_template}) => {
|
|
|
|
mock_template("input_pill.hbs", true, (data, html) => {
|
2021-06-27 15:13:19 +02:00
|
|
|
assert.equal(typeof data.display_value, "string");
|
|
|
|
return html;
|
|
|
|
});
|
|
|
|
|
2018-08-24 19:09:09 +02:00
|
|
|
const info = set_up();
|
|
|
|
const config = info.config;
|
2022-01-25 11:36:19 +01:00
|
|
|
const $container = info.$container;
|
2018-08-24 19:09:09 +02:00
|
|
|
|
|
|
|
const widget = input_pill.create(config);
|
2020-07-15 01:29:15 +02:00
|
|
|
widget.appendValue("blue,red");
|
2018-08-24 19:09:09 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const key_handler = $container.get_on_handler("keydown", ".input");
|
2018-08-24 19:09:09 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let last_pill_focused = false;
|
2018-08-24 19:09:09 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$container.set_find_results(".pill", {
|
2020-07-02 01:41:40 +02:00
|
|
|
last: () => ({
|
2020-07-20 21:24:26 +02:00
|
|
|
trigger: (type) => {
|
|
|
|
if (type === "focus") {
|
|
|
|
last_pill_focused = true;
|
|
|
|
}
|
2020-07-02 01:41:40 +02:00
|
|
|
},
|
|
|
|
}),
|
2018-08-24 19:09:09 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
key_handler({
|
2021-05-29 22:06:13 +02:00
|
|
|
key: "ArrowLeft",
|
2018-08-24 19:09:09 +02:00
|
|
|
});
|
|
|
|
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(last_pill_focused);
|
2018-08-24 19:09:09 +02:00
|
|
|
});
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
run_test("comma", ({mock_template}) => {
|
|
|
|
mock_template("input_pill.hbs", true, (data, html) => {
|
2021-06-27 15:13:19 +02:00
|
|
|
assert.equal(typeof data.display_value, "string");
|
|
|
|
return html;
|
|
|
|
});
|
|
|
|
|
2018-08-24 18:58:02 +02:00
|
|
|
const info = set_up();
|
|
|
|
const config = info.config;
|
|
|
|
const items = info.items;
|
2022-01-25 11:36:19 +01:00
|
|
|
const $pill_input = info.$pill_input;
|
|
|
|
const $container = info.$container;
|
2018-08-24 18:58:02 +02:00
|
|
|
|
|
|
|
const widget = input_pill.create(config);
|
2020-07-15 01:29:15 +02:00
|
|
|
widget.appendValue("blue,red");
|
2018-08-24 18:58:02 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(widget.items(), [items.blue, items.red]);
|
2018-08-24 18:58:02 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const key_handler = $container.get_on_handler("keydown", ".input");
|
2018-08-24 18:58:02 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$pill_input.text(" yel");
|
2018-08-24 18:58:02 +02:00
|
|
|
|
|
|
|
key_handler({
|
2021-05-29 22:06:13 +02:00
|
|
|
key: ",",
|
2018-08-24 18:58:02 +02:00
|
|
|
preventDefault: noop,
|
|
|
|
});
|
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(widget.items(), [items.blue, items.red]);
|
2018-08-24 18:58:02 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$pill_input.text(" yellow");
|
2018-08-24 18:58:02 +02:00
|
|
|
|
|
|
|
key_handler({
|
2021-05-29 22:06:13 +02:00
|
|
|
key: ",",
|
2020-06-01 02:42:46 +02:00
|
|
|
preventDefault: noop,
|
2018-08-24 18:58:02 +02:00
|
|
|
});
|
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(widget.items(), [items.blue, items.red, items.yellow]);
|
2018-08-24 18:58:02 +02:00
|
|
|
});
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
run_test("Enter key with text", ({mock_template}) => {
|
|
|
|
mock_template("input_pill.hbs", true, (data, html) => {
|
2021-06-27 15:13:19 +02:00
|
|
|
assert.equal(typeof data.display_value, "string");
|
|
|
|
return html;
|
|
|
|
});
|
|
|
|
|
2018-08-24 18:09:57 +02:00
|
|
|
const info = set_up();
|
|
|
|
const config = info.config;
|
|
|
|
const items = info.items;
|
2022-01-25 11:36:19 +01:00
|
|
|
const $container = info.$container;
|
2018-08-24 18:09:57 +02:00
|
|
|
|
|
|
|
const widget = input_pill.create(config);
|
2020-07-15 01:29:15 +02:00
|
|
|
widget.appendValue("blue,red");
|
2018-08-24 18:09:57 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(widget.items(), [items.blue, items.red]);
|
2018-08-24 18:09:57 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const key_handler = $container.get_on_handler("keydown", ".input");
|
2018-08-24 18:09:57 +02:00
|
|
|
|
|
|
|
key_handler({
|
2021-05-29 22:06:13 +02:00
|
|
|
key: "Enter",
|
2018-08-24 18:09:57 +02:00
|
|
|
preventDefault: noop,
|
|
|
|
stopPropagation: noop,
|
|
|
|
target: {
|
2020-10-07 10:15:47 +02:00
|
|
|
textContent: " yellow ",
|
2018-08-24 18:09:57 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(widget.items(), [items.blue, items.red, items.yellow]);
|
2018-08-24 18:09:57 +02:00
|
|
|
});
|
|
|
|
|
2022-07-11 04:34:15 +02:00
|
|
|
run_test("insert_remove", ({mock_template}) => {
|
2021-06-28 00:41:05 +02:00
|
|
|
mock_template("input_pill.hbs", true, (data, html) => {
|
2021-06-27 15:13:19 +02:00
|
|
|
assert.equal(typeof data.display_value, "string");
|
|
|
|
assert.ok(html.startsWith, "<div class='pill'");
|
2022-07-11 04:27:00 +02:00
|
|
|
$(html)[0] = `<pill-stub ${data.display_value}>`;
|
2021-06-27 15:13:19 +02:00
|
|
|
return html;
|
|
|
|
});
|
|
|
|
|
2018-08-24 17:47:26 +02:00
|
|
|
const info = set_up();
|
|
|
|
|
|
|
|
const config = info.config;
|
2022-01-25 11:36:19 +01:00
|
|
|
const $pill_input = info.$pill_input;
|
2018-08-24 17:47:26 +02:00
|
|
|
const items = info.items;
|
2022-01-25 11:36:19 +01:00
|
|
|
const $container = info.$container;
|
2018-08-24 17:47:26 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const inserted_html = [];
|
2022-01-25 11:36:19 +01:00
|
|
|
$pill_input.before = ($elem) => {
|
|
|
|
inserted_html.push($elem.html());
|
2018-08-24 17:47:26 +02:00
|
|
|
};
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const widget = input_pill.create(config);
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let created;
|
|
|
|
let removed;
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
widget.onPillCreate(() => {
|
2018-03-07 20:46:13 +01:00
|
|
|
created = true;
|
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
widget.onPillRemove(() => {
|
2018-03-07 20:46:13 +01:00
|
|
|
removed = true;
|
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
widget.appendValue("blue,chartreuse,red,yellow,mauve");
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(created);
|
|
|
|
assert.ok(!removed);
|
2018-03-07 20:46:13 +01:00
|
|
|
|
|
|
|
assert.deepEqual(inserted_html, [
|
2022-07-11 04:34:15 +02:00
|
|
|
pill_html("BLUE", example_img_link),
|
|
|
|
pill_html("RED"),
|
|
|
|
pill_html("YELLOW"),
|
2018-03-07 20:46:13 +01:00
|
|
|
]);
|
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(widget.items(), [items.blue, items.red, items.yellow]);
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
assert.equal($pill_input.text(), "chartreuse, mauve");
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2018-09-18 01:25:38 +02:00
|
|
|
assert.equal(widget.is_pending(), true);
|
2018-03-07 20:46:13 +01:00
|
|
|
widget.clear_text();
|
2022-01-25 11:36:19 +01:00
|
|
|
assert.equal($pill_input.text(), "");
|
2018-09-18 01:25:38 +02:00
|
|
|
assert.equal(widget.is_pending(), false);
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2021-02-25 16:07:04 +01:00
|
|
|
let color_removed;
|
|
|
|
function set_colored_removed_func(color) {
|
|
|
|
return () => {
|
|
|
|
color_removed = color;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const pills = widget._get_pills_for_testing();
|
|
|
|
for (const pill of pills) {
|
|
|
|
pill.$element.remove = set_colored_removed_func(pill.item.display_value);
|
|
|
|
}
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
let key_handler = $container.get_on_handler("keydown", ".input");
|
2018-03-07 20:46:13 +01:00
|
|
|
|
|
|
|
key_handler({
|
2021-05-29 22:06:13 +02:00
|
|
|
key: "Backspace",
|
2018-03-07 20:46:13 +01:00
|
|
|
target: {
|
2020-10-07 10:15:47 +02:00
|
|
|
textContent: "",
|
2018-03-07 20:46:13 +01:00
|
|
|
},
|
|
|
|
preventDefault: noop,
|
|
|
|
});
|
|
|
|
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(removed);
|
2021-02-25 16:07:04 +01:00
|
|
|
assert.equal(color_removed, "YELLOW");
|
2018-03-07 20:46:13 +01:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(widget.items(), [items.blue, items.red]);
|
2018-08-24 15:42:48 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let next_pill_focused = false;
|
2018-08-24 15:42:48 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $next_pill_stub = {
|
2020-07-20 21:24:26 +02:00
|
|
|
trigger: (type) => {
|
|
|
|
if (type === "focus") {
|
|
|
|
next_pill_focused = true;
|
|
|
|
}
|
2018-08-24 15:42:48 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $focus_pill_stub = {
|
|
|
|
next: () => $next_pill_stub,
|
2022-07-11 04:27:00 +02:00
|
|
|
[0]: "<pill-stub BLUE>",
|
2018-08-24 15:42:48 +02:00
|
|
|
};
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$container.set_find_results(".pill:focus", $focus_pill_stub);
|
2018-08-24 15:42:48 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
key_handler = $container.get_on_handler("keydown", ".pill");
|
2018-08-24 15:42:48 +02:00
|
|
|
key_handler({
|
2021-05-29 22:06:13 +02:00
|
|
|
key: "Backspace",
|
2018-08-24 15:42:48 +02:00
|
|
|
preventDefault: noop,
|
|
|
|
});
|
|
|
|
|
2021-02-25 16:07:04 +01:00
|
|
|
assert.equal(color_removed, "BLUE");
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(next_pill_focused);
|
2018-08-25 23:22:46 +02:00
|
|
|
});
|
|
|
|
|
2022-07-11 04:34:15 +02:00
|
|
|
run_test("exit button on pill", ({mock_template}) => {
|
2021-06-28 00:41:05 +02:00
|
|
|
mock_template("input_pill.hbs", true, (data, html) => {
|
2021-06-27 15:13:19 +02:00
|
|
|
assert.equal(typeof data.display_value, "string");
|
|
|
|
assert.ok(html.startsWith, "<div class='pill'");
|
2022-07-11 04:27:00 +02:00
|
|
|
$(html)[0] = `<pill-stub ${data.display_value}>`;
|
2021-06-27 15:13:19 +02:00
|
|
|
return html;
|
|
|
|
});
|
2022-09-26 21:01:43 +02:00
|
|
|
$(".narrow_to_compose_recipients").toggleClass = noop;
|
2021-06-27 15:13:19 +02:00
|
|
|
|
2018-08-25 23:22:46 +02:00
|
|
|
const info = set_up();
|
|
|
|
|
|
|
|
const config = info.config;
|
|
|
|
const items = info.items;
|
2022-01-25 11:36:19 +01:00
|
|
|
const $container = info.$container;
|
2018-08-25 23:22:46 +02:00
|
|
|
|
|
|
|
const widget = input_pill.create(config);
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
widget.appendValue("blue,red");
|
2018-08-25 23:22:46 +02:00
|
|
|
|
2021-02-25 16:07:04 +01:00
|
|
|
const pills = widget._get_pills_for_testing();
|
|
|
|
for (const pill of pills) {
|
|
|
|
pill.$element.remove = () => {};
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let next_pill_focused = false;
|
2018-08-25 23:22:46 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $next_pill_stub = {
|
2020-07-20 21:24:26 +02:00
|
|
|
trigger: (type) => {
|
|
|
|
if (type === "focus") {
|
|
|
|
next_pill_focused = true;
|
|
|
|
}
|
2018-08-25 23:22:46 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $curr_pill_stub = {
|
|
|
|
next: () => $next_pill_stub,
|
2022-07-11 04:27:00 +02:00
|
|
|
[0]: "<pill-stub BLUE>",
|
2018-08-25 23:22:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const exit_button_stub = {
|
2020-07-02 01:41:40 +02:00
|
|
|
to_$: () => ({
|
|
|
|
closest: (sel) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(sel, ".pill");
|
2022-01-25 11:36:19 +01:00
|
|
|
return $curr_pill_stub;
|
2020-07-02 01:41:40 +02:00
|
|
|
},
|
|
|
|
}),
|
2018-08-25 23:22:46 +02:00
|
|
|
};
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const e = {
|
2018-11-02 16:00:43 +01:00
|
|
|
stopPropagation: noop,
|
|
|
|
};
|
2022-01-25 11:36:19 +01:00
|
|
|
const exit_click_handler = $container.get_on_handler("click", ".exit");
|
2018-08-25 23:22:46 +02:00
|
|
|
|
2020-02-12 01:35:16 +01:00
|
|
|
exit_click_handler.call(exit_button_stub, e);
|
2018-08-25 23:22:46 +02:00
|
|
|
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(next_pill_focused);
|
2018-08-25 23:22:46 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(widget.items(), [items.red]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-08-26 21:29:25 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
run_test("misc things", () => {
|
2018-08-26 21:29:25 +02:00
|
|
|
const info = set_up();
|
|
|
|
|
|
|
|
const config = info.config;
|
2022-01-25 11:36:19 +01:00
|
|
|
const $container = info.$container;
|
|
|
|
const $pill_input = info.$pill_input;
|
2018-08-26 21:29:25 +02:00
|
|
|
|
|
|
|
const widget = input_pill.create(config);
|
|
|
|
|
|
|
|
// animation
|
2022-01-25 11:36:19 +01:00
|
|
|
const animation_end_handler = $container.get_on_handler("animationend", ".input");
|
2018-08-26 21:29:25 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let shake_class_removed = false;
|
2018-08-26 21:29:25 +02:00
|
|
|
|
|
|
|
const input_stub = {
|
2020-07-02 01:41:40 +02:00
|
|
|
to_$: () => ({
|
|
|
|
removeClass: (cls) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(cls, "shake");
|
2020-07-02 01:41:40 +02:00
|
|
|
shake_class_removed = true;
|
|
|
|
},
|
|
|
|
}),
|
2018-08-26 21:29:25 +02:00
|
|
|
};
|
|
|
|
|
2020-02-12 01:35:16 +01:00
|
|
|
animation_end_handler.call(input_stub);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(shake_class_removed);
|
2018-08-26 21:29:25 +02:00
|
|
|
|
|
|
|
// bad data
|
2020-07-15 01:29:15 +02:00
|
|
|
blueslip.expect("error", "no display_value returned");
|
|
|
|
widget.appendValidatedData("this-has-no-item-attribute");
|
2018-08-26 21:29:25 +02:00
|
|
|
|
2021-04-27 16:56:20 +02:00
|
|
|
blueslip.expect("error", "no type defined for the item");
|
|
|
|
widget.appendValidatedData({
|
|
|
|
display_value: "This item has no type.",
|
|
|
|
language: "js",
|
|
|
|
img_src: example_img_link,
|
|
|
|
});
|
|
|
|
|
2018-08-26 21:29:25 +02:00
|
|
|
// click on container
|
2022-01-25 11:36:19 +01:00
|
|
|
const container_click_handler = $container.get_on_handler("click");
|
2018-08-26 21:29:25 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $stub = $.create("the-pill-container");
|
|
|
|
$stub.set_find_results(".input", $pill_input);
|
|
|
|
$stub.is = (sel) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(sel, ".pill-container");
|
2018-08-26 21:29:25 +02:00
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
const this_ = {
|
2022-01-25 11:36:19 +01:00
|
|
|
to_$: () => $stub,
|
2018-08-26 21:29:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
container_click_handler.call(this_, {target: this_});
|
|
|
|
});
|
2021-02-25 17:31:33 +01:00
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
run_test("appendValue/clear", ({mock_template}) => {
|
|
|
|
mock_template("input_pill.hbs", true, (data, html) => {
|
2021-06-27 15:13:19 +02:00
|
|
|
assert.equal(typeof data.display_value, "string");
|
|
|
|
assert.ok(html.startsWith, "<div class='pill'");
|
|
|
|
return html;
|
|
|
|
});
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $pill_input = $.create("pill_input");
|
|
|
|
const $container = $.create("container");
|
|
|
|
$container.set_find_results(".input", $pill_input);
|
2021-02-25 17:31:33 +01:00
|
|
|
|
|
|
|
const config = {
|
2022-01-25 11:36:19 +01:00
|
|
|
$container,
|
2021-04-27 16:56:20 +02:00
|
|
|
create_item_from_text: (s) => ({type: "color", display_value: s}),
|
2022-04-09 23:44:38 +02:00
|
|
|
get_text_from_item: /* istanbul ignore next */ (s) => s.display_value,
|
2021-02-25 17:31:33 +01:00
|
|
|
};
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$pill_input.before = () => {};
|
|
|
|
$pill_input[0] = {};
|
2021-02-25 17:31:33 +01:00
|
|
|
|
|
|
|
const widget = input_pill.create(config);
|
|
|
|
|
2021-03-05 17:48:22 +01:00
|
|
|
// First test some early-exit code.
|
|
|
|
widget.appendValue("");
|
|
|
|
assert.deepEqual(widget._get_pills_for_testing(), []);
|
|
|
|
|
|
|
|
// Now set up real data.
|
2021-02-25 17:31:33 +01:00
|
|
|
widget.appendValue("red,yellow,blue");
|
|
|
|
|
|
|
|
const pills = widget._get_pills_for_testing();
|
|
|
|
|
|
|
|
const removed_colors = [];
|
|
|
|
for (const pill of pills) {
|
|
|
|
pill.$element.remove = () => {
|
|
|
|
removed_colors.push(pill.item.display_value);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
widget.clear();
|
|
|
|
|
|
|
|
// Note that we remove colors in the reverse order that we inserted.
|
|
|
|
assert.deepEqual(removed_colors, ["blue", "yellow", "red"]);
|
2022-01-25 11:36:19 +01:00
|
|
|
assert.equal($pill_input[0].textContent, "");
|
2021-02-25 17:31:33 +01:00
|
|
|
});
|