]> git.mxchange.org Git - friendica.git/commitdiff
Replace jquery-textcomplete with yuku/old-textcomplete
authorHypolite Petovan <hypolite@mrpetovan.com>
Wed, 22 Jul 2020 14:48:02 +0000 (10:48 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Wed, 22 Jul 2020 14:48:02 +0000 (10:48 -0400)
- Add a jQuery wrapper to minimize code changes
- Improve local autocomplete jQuery plugin to allow chaining

view/js/autocomplete.js
view/templates/head.tpl
view/theme/frio/templates/head.tpl

index 7f5f36cfd7b731803b22b7cef12b1491961dbc67..c3993603b4bacf619238d8d740a382d277e18e8d 100644 (file)
@@ -197,6 +197,23 @@ function string2bb(element) {
  * jQuery plugin 'editor_autocomplete'
  */
 (function( $ ) {
+       let textcompleteObjects = [];
+
+       // jQuery wrapper for yuku/old-textcomplete
+       // uses a local object directory to avoid recreating Textcomplete objects
+       $.fn.textcomplete = function (strategies, options) {
+               if (!(this.data('textcompleteId') in textcompleteObjects)) {
+                       let editor = new Textcomplete.editors.Textarea(this.get(0));
+
+                       this.data('textcompleteId', textcompleteObjects.length);
+                       textcompleteObjects.push(new Textcomplete(editor, options));
+               }
+
+               textcompleteObjects[this.data('textcompleteId')].register(strategies);
+
+               return this;
+       };
+
        /**
         * This function should be called immediately after $.textcomplete() to prevent the escape key press to propagate
         * after the autocompletion dropdown has closed.
@@ -278,13 +295,10 @@ function string2bb(element) {
                this.attr('autocomplete','off');
                this.textcomplete([contacts, forums, smilies, tags], {className:'acpopup', zIndex:10000});
                this.fixTextcompleteEscape();
+
+               return this;
        };
-})( jQuery );
 
-/**
- * jQuery plugin 'search_autocomplete'
- */
-(function( $ ) {
        $.fn.search_autocomplete = function(backend_url) {
                // Autocomplete contacts
                contacts = {
@@ -317,10 +331,10 @@ function string2bb(element) {
                this.textcomplete([contacts, community, tags], {className:'acpopup', maxCount:100, zIndex: 10000, appendTo:'nav'});
                this.fixTextcompleteEscape();
                this.on('textComplete:select', function(e, value, strategy) { submit_form(this); });
+
+               return this;
        };
-})( jQuery );
 
-(function( $ ) {
        $.fn.name_autocomplete = function(backend_url, typ, autosubmit, onselect) {
                if(typeof typ === 'undefined') typ = '';
                if(typeof autosubmit === 'undefined') autosubmit = false;
@@ -345,10 +359,10 @@ function string2bb(element) {
                if(typeof onselect !== 'undefined') {
                        this.on('textComplete:select', function(e, value, strategy) { onselect(value); });
                }
+
+               return this;
        };
-})( jQuery );
 
-(function( $ ) {
        $.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', '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'];
@@ -399,6 +413,8 @@ function string2bb(element) {
                                }
                        }
                });
+
+               return this;
        };
 })( jQuery );
 // @license-end
index f1ffcf69a5f22ddfdf702ee3b04b0b87dc7f82ed..ed87017dc4b92cccdbe90acaaf344eae44159915 100644 (file)
@@ -35,7 +35,7 @@
 <script type="text/javascript" src="view/js/modernizr.js?v={{$smarty.const.FRIENDICA_VERSION}}" ></script>
 <script type="text/javascript" src="view/asset/jquery/dist/jquery.min.js?v={{$smarty.const.FRIENDICA_VERSION}}" ></script>
 <script type="text/javascript" src="view/js/jquery.textinputs.js?v={{$smarty.const.FRIENDICA_VERSION}}" ></script>
-<script type="text/javascript" src="view/js/jquery-textcomplete/jquery.textcomplete.min.js?v={{$smarty.const.FRIENDICA_VERSION}}" ></script>
+<script type="text/javascript" src="view/asset/textcomplete/dist/textcomplete.min.js?v={{$smarty.const.FRIENDICA_VERSION}}" ></script>
 <script type="text/javascript" src="view/js/autocomplete.js?v={{$smarty.const.FRIENDICA_VERSION}}" ></script>
 <script type="text/javascript" src="view/asset/jquery-colorbox/jquery.colorbox-min.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
 <script type="text/javascript" src="view/asset/jgrowl/jquery.jgrowl.min.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
index 9ad0c8a7e93ff832355f7b6619dca2a10f5c954b..4015a325a5901855b719d484b7f0a6207528e581 100644 (file)
@@ -56,7 +56,7 @@
 <script type="text/javascript" src="view/js/modernizr.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
 <script type="text/javascript" src="view/asset/jquery/dist/jquery.min.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
 <script type="text/javascript" src="view/js/jquery.textinputs.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
-<script type="text/javascript" src="view/js/jquery-textcomplete/jquery.textcomplete.min.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
+<script type="text/javascript" src="view/asset/textcomplete/dist/textcomplete.min.js?v={{$smarty.const.FRIENDICA_VERSION}}" ></script>
 <script type="text/javascript" src="view/js/autocomplete.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
 <script type="text/javascript" src="view/asset/jquery-colorbox/jquery.colorbox-min.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
 <script type="text/javascript" src="view/asset/jgrowl/jquery.jgrowl.min.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>