You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB
JavaScript

"use strict";
/*globals $, app, ajaxify, socket*/
define('persona/quickreply', ['components'], function(components) {
var QuickReply = {};
QuickReply.init = function() {
var element = components.get('topic/quickreply/text');
var data = {
element: element,
strategies: [],
options: {
zIndex: 100,
listPosition: function(position) {
this.$el.css(this._applyPlacement(position));
this.$el.css('position', 'absolute');
return this;
}
}
};
$(window).trigger('composer:autocomplete:init', data);
data.element.textcomplete(data.strategies, data.options);
$('.textcomplete-wrapper').css('height', '100%').find('textarea').css('height', '100%');
components.get('topic/quickreply/button').on('click', function(e) {
var replyMsg = components.get('topic/quickreply/text').val();
var replyData = {
tid: ajaxify.data.tid,
handle: undefined,
content: replyMsg
};
socket.emit('posts.reply', replyData, function(err, data) {
if (err) {
app.alertError(err.message);
}
components.get('topic/quickreply/text').val('');
});
});
};
return QuickReply;
});