]> git.mxchange.org Git - friendica.git/blobdiff - js/autocomplete.js
Decode function is now there as well.
[friendica.git] / js / autocomplete.js
index 6c75f17ca645b7f31b4d893bd1108965e8d1a934..f31161ff834e2574f161a117cacfee583a8ffe0a 100644 (file)
  */
 
 
-function contact_search(term, callback, backend_url, type) {
+function contact_search(term, callback, backend_url, type, mode) {
 
        // Check if there is a conversation id to include the unkonwn contacts of the conversation
        var conv_id = document.activeElement.id.match(/\d+$/);
 
-
        // Check if there is a cached result that contains the same information we would get with a full server-side search
        var bt = backend_url+type;
        if(!(bt in contact_search.cache)) contact_search.cache[bt] = {};
@@ -25,7 +24,7 @@ function contact_search(term, callback, backend_url, type) {
                if(lterm.indexOf(t) >= 0) { // A more broad search has been performed already, so use those results
                        // Filter old results locally
                        var matching = contact_search.cache[bt][t].filter(function (x) { return (x.name.toLowerCase().indexOf(lterm) >= 0 || (typeof x.nick !== 'undefined' && x.nick.toLowerCase().indexOf(lterm) >= 0)); }); // Need to check that nick exists because groups don't have one
-                       matching.unshift({taggable:false, text: term, replace: term});
+                       matching.unshift({forum:false, text: term, replace: term});
                        setTimeout(function() { callback(matching); } , 1); // Use "pseudo-thread" to avoid some problems
                        return;
                }
@@ -41,6 +40,9 @@ function contact_search(term, callback, backend_url, type) {
        if(conv_id !== null)
                postdata['conversation'] = conv_id[0];
 
+       if(mode !== null)
+               postdata['mode'] = mode;
+
 
        $.ajax({
                type:'POST',
@@ -66,9 +68,10 @@ function contact_format(item) {
        // Show contact information if not explicitly told to show something else
        if(typeof item.text === 'undefined') {
                var desc = ((item.label) ? item.nick + ' ' + item.label : item.nick);
+               var forum = ((item.forum) ? 'forum' : '');
                if(typeof desc === 'undefined') desc = '';
                if(desc) desc = ' ('+desc+')';
-               return "<div class='{0}' title='{4}'><img class='acpopup-img' src='{1}'><span class='acpopup-contactname'>{2}</span><span class='acpopup-sub-text'>{3}</span><div class='clear'></div></div>".format(item.taggable, item.photo, item.name, desc, item.link);
+               return "<div class='{0}' title='{4}'><img class='acpopup-img' src='{1}'><span class='acpopup-contactname'>{2}</span><span class='acpopup-sub-text'>{3}</span><div class='clear'></div></div>".format(forum, item.photo, item.name, desc, item.link);
        }
        else
                return "<div>" + item.text + "</div>";
@@ -126,6 +129,7 @@ function submit_form(e) {
                        template: contact_format,
                };
 
+               // Autocomplete smilies e.g. ":like"
                smilies = {
                        match: /(^|\s)(:[a-z]{2,})$/,
                        index: 2,
@@ -134,6 +138,7 @@ function submit_form(e) {
                        replace: function(item) { return "$1" + item.text + ' '; },
                };
 
+               // Autocomplete BBTags
                bbtags = {
                        match: /\[(\w*)$/,
                        index: 1,
@@ -154,12 +159,21 @@ function submit_form(e) {
                contacts = {
                        match: /(^@)([^\n]{2,})$/,
                        index: 2,
-                       search: function(term, callback) { contact_search(term, callback, backend_url, 'x'); },
+                       search: function(term, callback) { contact_search(term, callback, backend_url, 'x', 'contact'); },
+                       replace: basic_replace,
+                       template: contact_format,
+               };
+
+               // Autocomplete forum accounts
+               community = {
+                       match: /(^!)([^\n]{2,})$/,
+                       index: 2,
+                       search: function(term, callback) { contact_search(term, callback, backend_url, 'x', 'community'); },
                        replace: basic_replace,
                        template: contact_format,
                };
                this.attr('autocomplete', 'off');
-               var a = this.textcomplete([contacts], {className:'acpopup', maxCount:100, zIndex: 1020, appendTo:'nav'});
+               var a = this.textcomplete([contacts, community], {className:'acpopup', maxCount:100, zIndex: 1020, appendTo:'#nav-search-box'});
                a.on('textComplete:select', function(e, value, strategy) { submit_form(this); });
        };
 })( jQuery );