2017-11-09 17:32:28 +01:00
|
|
|
zrequire('compose_ui');
|
|
|
|
|
2017-12-08 16:17:20 +01:00
|
|
|
set_global('document', {
|
|
|
|
execCommand: function () { return false; },
|
|
|
|
});
|
|
|
|
|
|
|
|
set_global('$', global.make_zjquery());
|
|
|
|
set_global('blueslip', {});
|
|
|
|
|
|
|
|
var noop = function () {};
|
|
|
|
|
2017-11-09 17:32:28 +01:00
|
|
|
function make_textbox(s) {
|
|
|
|
// Simulate a jQuery textbox for testing purposes.
|
|
|
|
var widget = {};
|
|
|
|
|
|
|
|
widget.s = s;
|
|
|
|
widget.focused = false;
|
|
|
|
|
|
|
|
widget.caret = function (arg) {
|
|
|
|
if (typeof arg === 'number') {
|
|
|
|
widget.pos = arg;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (arg) {
|
|
|
|
widget.insert_pos = widget.pos;
|
|
|
|
widget.insert_text = arg;
|
|
|
|
var before = widget.s.slice(0, widget.pos);
|
|
|
|
var after = widget.s.slice(widget.pos);
|
|
|
|
widget.s = before + arg + after;
|
|
|
|
widget.pos += arg.length;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return widget.pos;
|
|
|
|
};
|
|
|
|
|
|
|
|
widget.focus = function () {
|
|
|
|
widget.focused = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
widget.blur = function () {
|
|
|
|
widget.focused = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
widget.val = function () {
|
|
|
|
return widget.s;
|
|
|
|
};
|
|
|
|
|
2017-11-22 04:43:45 +01:00
|
|
|
widget.trigger = function () {
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
2017-11-09 17:32:28 +01:00
|
|
|
return widget;
|
|
|
|
}
|
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('insert_syntax_and_focus', () => {
|
2017-12-08 16:17:20 +01:00
|
|
|
blueslip.error = noop;
|
|
|
|
blueslip.log = noop;
|
|
|
|
$('#compose-textarea').val("xyz ");
|
|
|
|
$('#compose-textarea').caret = function (syntax) {
|
|
|
|
if (syntax !== undefined) {
|
|
|
|
$('#compose-textarea').val($('#compose-textarea').val() + syntax);
|
|
|
|
} else {
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
compose_ui.insert_syntax_and_focus(':octopus:');
|
|
|
|
assert.equal($('#compose-textarea').caret(), 4);
|
2018-03-04 18:24:41 +01:00
|
|
|
assert.equal($('#compose-textarea').val(), 'xyz :octopus: ');
|
2017-12-08 16:17:20 +01:00
|
|
|
assert($("#compose-textarea").is_focused());
|
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-12-08 16:17:20 +01:00
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('smart_insert', () => {
|
2018-03-04 18:24:41 +01:00
|
|
|
var textbox = make_textbox('abc');
|
2017-11-09 17:32:28 +01:00
|
|
|
textbox.caret(4);
|
|
|
|
|
|
|
|
compose_ui.smart_insert(textbox, ':smile:');
|
|
|
|
assert.equal(textbox.insert_pos, 4);
|
2018-03-04 18:24:41 +01:00
|
|
|
assert.equal(textbox.insert_text, ' :smile: ');
|
|
|
|
assert.equal(textbox.val(), 'abc :smile: ');
|
2017-11-09 17:32:28 +01:00
|
|
|
assert(textbox.focused);
|
|
|
|
|
|
|
|
textbox.blur();
|
|
|
|
compose_ui.smart_insert(textbox, ':airplane:');
|
2018-03-04 18:24:41 +01:00
|
|
|
assert.equal(textbox.insert_text, ':airplane: ');
|
|
|
|
assert.equal(textbox.val(), 'abc :smile: :airplane: ');
|
2017-11-09 17:47:54 +01:00
|
|
|
assert(textbox.focused);
|
|
|
|
|
|
|
|
textbox.caret(0);
|
|
|
|
textbox.blur();
|
|
|
|
compose_ui.smart_insert(textbox, ':octopus:');
|
2017-11-09 17:57:59 +01:00
|
|
|
assert.equal(textbox.insert_text, ':octopus: ');
|
2018-03-04 18:24:41 +01:00
|
|
|
assert.equal(textbox.val(), ':octopus: abc :smile: :airplane: ');
|
2017-11-09 17:32:28 +01:00
|
|
|
assert(textbox.focused);
|
|
|
|
|
2017-11-09 17:57:59 +01:00
|
|
|
textbox.caret(textbox.val().length);
|
|
|
|
textbox.blur();
|
|
|
|
compose_ui.smart_insert(textbox, ':heart:');
|
2018-03-04 18:24:41 +01:00
|
|
|
assert.equal(textbox.insert_text, ':heart: ');
|
|
|
|
assert.equal(textbox.val(), ':octopus: abc :smile: :airplane: :heart: ');
|
2017-11-09 17:57:59 +01:00
|
|
|
assert(textbox.focused);
|
|
|
|
|
|
|
|
// Note that we don't have any special logic for strings that are
|
|
|
|
// already surrounded by spaces, since we are usually inserting things
|
|
|
|
// like emojis and file links.
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-11-09 17:32:28 +01:00
|
|
|
|