]> git.mxchange.org Git - friendica.git/blob - view/js/autocomplete.js
Merge pull request #8792 from MrPetovan/task/share-block-guid
[friendica.git] / view / js / autocomplete.js
1 // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
2 /**
3  * Friendica people autocomplete
4  *
5  * require jQuery, jquery.textcomplete
6  *
7  * for further documentation look at:
8  * http://yuku-t.com/jquery-textcomplete/
9  *
10  * https://github.com/yuku-t/jquery-textcomplete/blob/master/doc/how_to_use.md
11  */
12
13
14 function contact_search(term, callback, backend_url, type, mode) {
15
16         // Check if there is a conversation id to include the unkonwn contacts of the conversation
17         var conv_id = document.activeElement.id.match(/\d+$/);
18
19         // Check if there is a cached result that contains the same information we would get with a full server-side search
20         var bt = backend_url+type;
21         if(!(bt in contact_search.cache)) contact_search.cache[bt] = {};
22
23         var lterm = term.toLowerCase(); // Ignore case
24         for(var t in contact_search.cache[bt]) {
25                 if(lterm.indexOf(t) >= 0) { // A more broad search has been performed already, so use those results
26                         // Filter old results locally
27                         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
28                         matching.unshift({forum:false, text: term, replace: term});
29                         setTimeout(function() { callback(matching); } , 1); // Use "pseudo-thread" to avoid some problems
30                         return;
31                 }
32         }
33
34         var postdata = {
35                 start:0,
36                 count:100,
37                 search:term,
38                 type:type,
39         };
40
41         if(conv_id !== null)
42                 postdata['conversation'] = conv_id[0];
43
44         if(mode !== null)
45                 postdata['smode'] = mode;
46
47
48         $.ajax({
49                 type:'POST',
50                 url: backend_url,
51                 data: postdata,
52                 dataType: 'json',
53                 success: function(data){
54                         // Cache results if we got them all (more information would not improve results)
55                         // data.count represents the maximum number of items
56                         if(data.items.length -1 < data.count) {
57                                 contact_search.cache[bt][lterm] = data.items;
58                         }
59                         var items = data.items.slice(0);
60                         items.unshift({taggable:false, text: term, replace: term});
61                         callback(items);
62                 },
63         }).fail(function () {callback([]); }); // Callback must be invoked even if something went wrong.
64 }
65 contact_search.cache = {};
66
67
68 function contact_format(item) {
69         // Show contact information if not explicitly told to show something else
70         if(typeof item.text === 'undefined') {
71                 var desc = ((item.label) ? item.nick + ' ' + item.label : item.nick);
72                 var forum = ((item.forum) ? 'forum' : '');
73                 if(typeof desc === 'undefined') desc = '';
74                 if(desc) desc = ' ('+desc+')';
75                 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);
76         }
77         else
78                 return "<div>" + item.text + "</div>";
79 }
80
81 function tag_format(item) {
82         return "<div class='dropdown-item'>" + '#' + item.text + "</div>";
83 }
84
85 function editor_replace(item) {
86         if (typeof item.replace !== 'undefined') {
87                 return '$1$2' + item.replace;
88         }
89
90         if (typeof item.addr !== 'undefined') {
91                 return '$1$2' + item.addr + ' ';
92         }
93
94         // $2 ensures that prefix (@,@!) is preserved
95         var id = item.id;
96
97         // don't add the id if it is empty (the id empty eg. if there are unknow contacts in thread)
98         if (id.length < 1) {
99                 return '$1$2' + item.nick.replace(' ', '') + ' ';
100         }
101         // 16 chars of hash should be enough. Full hash could be used if it can be done in a visually appealing way.
102         // 16 chars is also the minimum length in the backend (otherwise it's interpreted as a local id).
103         if (id.length > 16) {
104                 id = item.id.substring(0,16);
105         }
106         return '$1$2' + item.nick.replace(' ', '') + '+' + id + ' ';
107 }
108
109 function basic_replace(item) {
110         if(typeof item.replace !== 'undefined')
111                 return '$1'+item.replace;
112
113         return '$1'+item.name+' ';
114 }
115
116 function webbie_replace(item) {
117         if(typeof item.replace !== 'undefined')
118                 return '$1'+item.replace;
119
120         return '$1'+item.nick+' ';
121 }
122
123 function trim_replace(item) {
124         if(typeof item.replace !== 'undefined')
125                 return '$1'+item.replace;
126
127         return '$1'+item.name;
128 }
129
130
131 function submit_form(e) {
132         $(e).parents('form').submit();
133 }
134
135 function getWord(text, caretPos) {
136         var index = text.indexOf(caretPos);
137         var postText = text.substring(caretPos, caretPos+8);
138         if ((postText.indexOf("[/list]") > 0) || postText.indexOf("[/ul]") > 0 || postText.indexOf("[/ol]") > 0) {
139                 return postText;
140         }
141 }
142
143 function getCaretPosition(ctrl) {
144         var CaretPos = 0;   // IE Support
145         if (document.selection) {
146                 ctrl.focus();
147                 var Sel = document.selection.createRange();
148                 Sel.moveStart('character', -ctrl.value.length);
149                 CaretPos = Sel.text.length;
150         }
151         // Firefox support
152         else if (ctrl.selectionStart || ctrl.selectionStart == '0')
153                 CaretPos = ctrl.selectionStart;
154         return (CaretPos);
155 }
156
157 function setCaretPosition(ctrl, pos){
158         if(ctrl.setSelectionRange) {
159                 ctrl.focus();
160                 ctrl.setSelectionRange(pos,pos);
161         }
162         else if (ctrl.createTextRange) {
163                 var range = ctrl.createTextRange();
164                 range.collapse(true);
165                 range.moveEnd('character', pos);
166                 range.moveStart('character', pos);
167                 range.select();
168         }
169 }
170
171 function listNewLineAutocomplete(id) {
172         var text = document.getElementById(id);
173         var caretPos = getCaretPosition(text)
174         var word = getWord(text.value, caretPos);
175         if (word != null) {
176                 var textBefore = text.value.substring(0, caretPos);
177                 var textAfter  = text.value.substring(caretPos, text.length);
178                 $('#' + id).val(textBefore + '\r\n[*] ' + textAfter).trigger('change');
179                 setCaretPosition(text, caretPos + 5);
180                 return true;
181         }
182         else {
183                 return false;
184         }
185 }
186
187 function string2bb(element) {
188         if(element == 'bold') return 'b';
189         else if(element == 'italic') return 'i';
190         else if(element == 'underline') return 'u';
191         else if(element == 'overline') return 'o';
192         else if(element == 'strike') return 's';
193         else return element;
194 }
195
196 /**
197  * jQuery plugin 'editor_autocomplete'
198  */
199 (function( $ ) {
200         /**
201          * This function should be called immediately after $.textcomplete() to prevent the escape key press to propagate
202          * after the autocompletion dropdown has closed.
203          * This avoids the input textarea to lose focus, the modal window to close, etc... when the expected behavior is
204          * to just close the autocomplete dropdown.
205          *
206          * The custom event listener name allows removing this specific event listener, the "real" event this listens to
207          * is the part before the first dot.
208          *
209          * @returns {*}
210          */
211         $.fn.fixTextcompleteEscape = function () {
212                 if (this.data('textcompleteEscapeFixed')) {
213                         return this;
214                 }
215
216                 this.data('textcompleteEscapeFixed', true);
217
218                 return this.on({
219                         'textComplete:show': function (e) {
220                                 $(this).on('keydown.friendica.escape', function (e) {
221                                         if (e.key === 'Escape') {
222                                                 e.stopPropagation();
223                                         }
224                                 });
225                         },
226                         'textComplete:hide': function (e) {
227                                 $(this).off('keydown.friendica.escape');
228                         },
229                 });
230         }
231
232         $.fn.editor_autocomplete = function(backend_url) {
233
234                 // Autocomplete contacts
235                 contacts = {
236                         match: /(^|\s)(@\!*)([^ \n]+)$/,
237                         index: 3,
238                         search: function(term, callback) { contact_search(term, callback, backend_url, 'c'); },
239                         replace: editor_replace,
240                         template: contact_format,
241                 };
242
243                 // Autocomplete forums
244                 forums = {
245                         match: /(^|\s)(!\!*)([^ \n]+)$/,
246                         index: 3,
247                         search: function(term, callback) { contact_search(term, callback, backend_url, 'f'); },
248                         replace: editor_replace,
249                         template: contact_format,
250                 };
251
252                 // Autocomplete hashtags
253                 tags = {
254                         match: /(^|\s)(\#)([^ \n]{2,})$/,
255                         index: 3,
256                         search: function(term, callback) {
257                                 $.getJSON(baseurl + '/hashtag/' + '?t=' + term)
258                                 .done(function(data) {
259                                         callback($.map(data, function(entry) {
260                                                 // .toLowerCase() enables case-insensitive search
261                                                 return entry.text.toLowerCase().indexOf(term.toLowerCase()) === 0 ? entry : null;
262                                         }));
263                                 });
264                         },
265                         replace: function(item) { return "$1$2" + item.text + ' '; },
266                         template: tag_format
267                 };
268
269                 // Autocomplete smilies e.g. ":like"
270                 smilies = {
271                         match: /(^|\s)(:[a-z]{2,})$/,
272                         index: 2,
273                         search: function(term, callback) { $.getJSON('smilies/json').done(function(data) { callback($.map(data, function(entry) { return entry.text.indexOf(term) === 0 ? entry : null; })); }); },
274                         template: function(item) { return item.icon + ' ' + item.text; },
275                         replace: function(item) { return "$1" + item.text + ' '; },
276                 };
277
278                 this.attr('autocomplete','off');
279                 this.textcomplete([contacts, forums, smilies, tags], {className:'acpopup', zIndex:10000});
280                 this.fixTextcompleteEscape();
281         };
282 })( jQuery );
283
284 /**
285  * jQuery plugin 'search_autocomplete'
286  */
287 (function( $ ) {
288         $.fn.search_autocomplete = function(backend_url) {
289                 // Autocomplete contacts
290                 contacts = {
291                         match: /(^@)([^\n]{2,})$/,
292                         index: 2,
293                         search: function(term, callback) { contact_search(term, callback, backend_url, 'x', 'contact'); },
294                         replace: webbie_replace,
295                         template: contact_format,
296                 };
297
298                 // Autocomplete forum accounts
299                 community = {
300                         match: /(^!)([^\n]{2,})$/,
301                         index: 2,
302                         search: function(term, callback) { contact_search(term, callback, backend_url, 'x', 'community'); },
303                         replace: webbie_replace,
304                         template: contact_format,
305                 };
306
307                 // Autocomplete hashtags
308                 tags = {
309                         match: /(^|\s)(\#)([^ \n]{2,})$/,
310                         index: 3,
311                         search: function(term, callback) { $.getJSON(baseurl + '/hashtag/' + '?t=' + term).done(function(data) { callback($.map(data, function(entry) { return entry.text.indexOf(term) === 0 ? entry : null; })); }); },
312                         replace: function(item) { return "$1$2" + item.text; },
313                         template: tag_format
314                 };
315
316                 this.attr('autocomplete', 'off');
317                 this.textcomplete([contacts, community, tags], {className:'acpopup', maxCount:100, zIndex: 10000, appendTo:'nav'});
318                 this.fixTextcompleteEscape();
319                 this.on('textComplete:select', function(e, value, strategy) { submit_form(this); });
320         };
321 })( jQuery );
322
323 (function( $ ) {
324         $.fn.name_autocomplete = function(backend_url, typ, autosubmit, onselect) {
325                 if(typeof typ === 'undefined') typ = '';
326                 if(typeof autosubmit === 'undefined') autosubmit = false;
327
328                 // Autocomplete contacts
329                 names = {
330                         match: /(^)([^\n]+)$/,
331                         index: 2,
332                         search: function(term, callback) { contact_search(term, callback, backend_url, typ); },
333                         replace: trim_replace,
334                         template: contact_format,
335                 };
336
337                 this.attr('autocomplete','off');
338                 this.textcomplete([names], {className:'acpopup', zIndex:10000});
339                 this.fixTextcompleteEscape();
340
341                 if(autosubmit) {
342                         this.on('textComplete:select', function(e,value,strategy) { submit_form(this); });
343                 }
344
345                 if(typeof onselect !== 'undefined') {
346                         this.on('textComplete:select', function(e, value, strategy) { onselect(value); });
347                 }
348         };
349 })( jQuery );
350
351 (function( $ ) {
352         $.fn.bbco_autocomplete = function(type) {
353                 if (type === 'bbcode') {
354                         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'];
355                         var open_elements = ['*', 'hr'];
356
357                         var elements = open_close_elements.concat(open_elements);
358                 }
359
360                 bbco = {
361                         match: /\[(\w*\**)$/,
362                         search: function (term, callback) {
363                                 callback($.map(elements, function (element) {
364                                         return element.indexOf(term) === 0 ? element : null;
365                                 }));
366                         },
367                         index: 1,
368                         replace: function (element) {
369                                 element = string2bb(element);
370                                 if(open_elements.indexOf(element) < 0) {
371                                         if(element === 'list' || element === 'ol' || element === 'ul') {
372                                                 return ['\[' + element + '\]' + '\n\[*\] ', '\n\[/' + element + '\]'];
373                                         }
374                                         else if(element === 'table') {
375                                                 return ['\[' + element + '\]' + '\n\[tr\]', '\[/tr\]\n\[/' + element + '\]'];
376                                         }
377                                         else {
378                                                 return ['\[' + element + '\]', '\[/' + element + '\]'];
379                                         }
380                                 }
381                                 else {
382                                         return '\[' + element + '\] ';
383                                 }
384                         }
385                 };
386
387                 this.attr('autocomplete','off');
388                 this.textcomplete([bbco], {className:'acpopup', zIndex:10000});
389                 this.fixTextcompleteEscape();
390
391                 this.on('textComplete:select', function(e, value, strategy) { value; });
392
393                 this.keypress(function(e){
394                         if (e.keyCode == 13) {
395                                 var x = listNewLineAutocomplete(this.id);
396                                 if(x) {
397                                         e.stopImmediatePropagation();
398                                         e.preventDefault();
399                                 }
400                         }
401                 });
402         };
403 })( jQuery );
404 // @license-end