X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=js%2Fautocomplete.js;h=219ad794bc86a4b18a34626ad4c691bf36a3b18b;hb=6212b3d287a2ed3a1accdeb487b63f9479685360;hp=8020478722413cf47937e6f88d6268cccabb62b3;hpb=3d3cde2aed602514d69d192f66ff33c3f4678f48;p=friendica.git diff --git a/js/autocomplete.js b/js/autocomplete.js index 8020478722..219ad794bc 100644 --- a/js/autocomplete.js +++ b/js/autocomplete.js @@ -2,10 +2,10 @@ * @brief Friendica people autocomplete * * require jQuery, jquery.textcomplete - * + * * for further documentation look at: * http://yuku-t.com/jquery-textcomplete/ - * + * * https://github.com/yuku-t/jquery-textcomplete/blob/master/doc/how_to_use.md */ @@ -41,7 +41,7 @@ function contact_search(term, callback, backend_url, type, mode) { postdata['conversation'] = conv_id[0]; if(mode !== null) - postdata['mode'] = mode; + postdata['smode'] = mode; $.ajax({ @@ -78,22 +78,26 @@ function contact_format(item) { } function editor_replace(item) { - if(typeof item.replace !== 'undefined') { + if (typeof item.replace !== 'undefined') { return '$1$2' + item.replace; } + if (typeof item.addr !== 'undefined') { + return '$1$2' + item.addr + ' '; + } + // $2 ensures that prefix (@,@!) is preserved var id = item.id; // don't add the id if it is empty (the id empty eg. if there are unknow contacts in thread) - if(id.length < 1) + if (id.length < 1) { return '$1$2' + item.nick.replace(' ', '') + ' '; - + } // 16 chars of hash should be enough. Full hash could be used if it can be done in a visually appealing way. // 16 chars is also the minimum length in the backend (otherwise it's interpreted as a local id). - if(id.length > 16) + if (id.length > 16) { id = item.id.substring(0,16); - + } return '$1$2' + item.nick.replace(' ', '') + '+' + id + ' '; } @@ -166,7 +170,7 @@ function listNewLineAutocomplete(id) { if (word != null) { var textBefore = text.value.substring(0, caretPos); var textAfter = text.value.substring(caretPos, text.length); - $('#' + id).val(textBefore + '\r\n[*] ' + textAfter); + $('#' + id).val(textBefore + '\r\n[*] ' + textAfter).trigger('change'); setCaretPosition(text, caretPos + 5); return true; } @@ -199,6 +203,15 @@ function string2bb(element) { template: contact_format, }; + // Autocomplete forums + forums = { + match: /(^|\s)(!\!*)([^ \n]+)$/, + index: 3, + search: function(term, callback) { contact_search(term, callback, backend_url, 'f'); }, + replace: editor_replace, + template: contact_format, + }; + // Autocomplete smilies e.g. ":like" smilies = { match: /(^|\s)(:[a-z]{2,})$/, @@ -209,7 +222,7 @@ function string2bb(element) { }; this.attr('autocomplete','off'); - this.textcomplete([contacts,smilies], {className:'acpopup', zIndex:10000}); + this.textcomplete([contacts, forums, smilies], {className:'acpopup', zIndex:10000}); }; })( jQuery ); @@ -296,7 +309,7 @@ function string2bb(element) { $.fn.bbco_autocomplete = function(type) { if(type=='bbcode') { - var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'quote', 'code', 'spoiler', 'map', 'img', 'url', 'audio', 'video', 'youtube', 'vimeo', 'list', 'ul', 'ol', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'nobb', 'noparse', 'pre', 'abstract']; + var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'quote', 'code', 'spoiler', 'map', 'img', 'url', 'audio', 'video', 'embed', 'youtube', 'vimeo', 'list', 'ul', 'ol', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'nobb', 'noparse', 'pre', 'abstract']; var open_elements = ['*', 'hr']; var elements = open_close_elements.concat(open_elements); @@ -347,61 +360,38 @@ function string2bb(element) { })( jQuery ); /** - * Friendica people autocomplete legacy - * code which is needed for tinymce + * Friendica people autocomplete legacy code * * require jQuery, jquery.textareas */ - -function ACPopup(elm,backend_url){ - this.idsel=-1; +function ACPopup(elm, backend_url){ + this.idsel = -1; this.element = elm; - this.searchText=""; - this.ready=true; + this.searchText = ''; + this.ready = true; this.kp_timer = false; this.url = backend_url; this.conversation_id = null; var conv_id = this.element.id.match(/\d+$/); - if (conv_id) this.conversation_id = conv_id[0]; - console.log("ACPopup elm id",this.element.id,"conversation",this.conversation_id); - - var w = 530; - var h = 130; - - - if(tinyMCE.activeEditor == null) { - style = $(elm).offset(); - w = $(elm).width(); - h = $(elm).height(); - } - else { - // I can't find an "official" way to get the element who get all - // this fraking thing that is tinyMCE. - // This code will broke again at some point... - var container = $(tinyMCE.activeEditor.getContainer()).find("table"); - style = $(container).offset(); - w = $(container).width(); - h = $(container).height(); + if (conv_id) { + this.conversation_id = conv_id[0]; } - style.top=style.top+h; + var w = $(elm).width(); + var h = $(elm).height(); + + var style = $(elm).offset(); + style.top = style.top + h; style.width = w; style.position = 'absolute'; - /* style['max-height'] = '150px'; - style.border = '1px solid red'; - style.background = '#cccccc'; - - style.overflow = 'auto'; - style['z-index'] = '100000'; - */ style.display = 'none'; - this.cont = $("
"); + this.cont = $('
'); this.cont.css(style); - $("body").append(this.cont); - } + $('body').append(this.cont); +} ACPopup.prototype.close = function(){ $(this.cont).remove(); @@ -449,48 +439,42 @@ ACPopup.prototype._search = function(){ } ACPopup.prototype.add = function(label, value){ - var that=this; - var elm = $("
"+label+"
"); + var that = this; + var elm = $('
' + label + '
'); elm.click(function(e){ - t = $(this).attr('title').replace(new RegExp(' \- .*'),''); - if(typeof(that.element.container) === "undefined") { - el=$(that.element); - sel = el.getSelection(); - sel.start = sel.start- that.searchText.length; - el.setSelection(sel.start,sel.end).replaceSelectedText(t+' ').collapseSelection(false); - that.close(); - } - else { - txt = tinyMCE.activeEditor.getContent(); - // alert(that.searchText + ':' + t); - newtxt = txt.replace('@' + that.searchText,'@' + t +' '); - tinyMCE.activeEditor.setContent(newtxt); - tinyMCE.activeEditor.focus(); - that.close(); - } + t = $(this).attr('title').replace(new RegExp(' \- .*'), ''); + el = $(that.element); + sel = el.getSelection(); + sel.start = sel.start - that.searchText.length; + el.setSelection(sel.start, sel.end).replaceSelectedText(t + ' ').collapseSelection(false); + that.close(); }); $(this.cont).append(elm); } ACPopup.prototype.onkey = function(event){ if (event.keyCode == '13') { - if(this.idsel>-1) { + if(this.idsel > -1) { this.cont.children()[this.idsel].click(); event.preventDefault(); - } - else + } else { this.close(); + } } if (event.keyCode == '38') { //cursor up - cmax = this.cont.children().size()-1; + var cmax = this.cont.children().size() - 1; this.idsel--; - if (this.idsel<0) this.idsel=cmax; + if (this.idsel < 0) { + this.idsel = cmax; + } event.preventDefault(); } if (event.keyCode == '40' || event.keyCode == '9') { //cursor down - cmax = this.cont.children().size()-1; + var cmax = this.cont.children().size() - 1; this.idsel++; - if (this.idsel>cmax) this.idsel=0; + if (this.idsel > cmax) { + this.idsel = 0; + } event.preventDefault(); }