summaryrefslogtreecommitdiff
path: root/lib/scripts/linkwiz.js
blob: e9a1d71b34a78b1e580ae7d847642629a83d5bad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
/**
 * The Link Wizard
 *
 * @author Andreas Gohr <gohr@cosmocode.de>
 * @author Pierre Spring <pierre.spring@caillou.ch>
 */
(function($){
    $.fn.extend({
        linkwiz: function(editor) {

            var wiz;
            var entry;
            var result;
            var timer;
            var textArea;
            var selected;
            var selection;

            /**
             * Initialize the linkwizard by creating the needed HTML
             * and attaching the eventhandlers
             */
            var init = function(textAreaElement){


                // create HTML Structure
                wiz = document.createElement('div');
                wiz.style.position = 'absolute';
                wiz.id = 'link__wiz';
                wiz.className     = 'picker';
                wiz.style.top  = (findPosY(textAreaElement)+20)+'px';
                wiz.style.left = (findPosX(textAreaElement)+80)+'px';
                wiz.style.marginLeft = '-10000px';
                wiz.style.marginTop  = '-10000px';

                wiz.innerHTML =
                     '<div id="link__wiz_header">'+
                     '<img src="'+DOKU_BASE+'lib/images/close.png" width="16" height="16" align="right" alt="" id="link__wiz_close" />'+
                     LANG['linkwiz']+'</div>'+
                     '<div>'+LANG['linkto']+' <input type="text" class="edit" id="link__wiz_entry" autocomplete="off" /></div>'+
                     '<div id="link__wiz_result"></div>';
                $('#dw__editform')[0].parentNode.appendChild(wiz);
                textArea = textAreaElement;
                result = $('#link__wiz_result')[0];
                entry = $('#link__wiz_entry')[0];

                // attach event handlers
                var obj;
                var obj = $('#link__wiz_close')[0];
                obj.onclick = hide;

                addEvent(entry,'keyup',onEntry);
                addEvent(result,'click',onResultClick);

                $(wiz).draggable({handle: '#link__wiz_header'});

            };

            /**
             * handle all keyup events in the entry field
             */
            var onEntry = function(e){
                if(e.keyCode == 37 || e.keyCode == 39){ //left/right
                    return true; //ignore
                }
                if(e.keyCode == 27){
                    hide();
                    e.preventDefault();
                    e.stopPropagation();
                    return false;
                }
                if(e.keyCode == 38){ //Up
                    select(selected -1);
                    e.preventDefault();
                    e.stopPropagation();
                    return false;
                }
                if(e.keyCode == 40){ //Down
                    select(selected +1);
                    e.preventDefault();
                    e.stopPropagation();
                    return false;
                }
                if(e.keyCode == 13){ //Enter
                    if(selected > -1){
                        var obj = getResult(selected);
                        if(obj){
                            var a = $(obj).find('a')[0];
                            resultClick(a);
                        }
                    }else if(entry.value){
                        insertLink(entry.value);
                    }

                    e.preventDefault();
                    e.stopPropagation();
                    return false;
                }
                autocomplete();
            };

            /**
             * Get one of the result by index
             *
             * @param int result div to return
             * @returns DOMObject or null
             */
            var getResult = function(num){
                var obj;
                var childs = $(result).find('div');
                var obj = childs[num];
                if(obj){
                    return obj;
                }else{
                    return null;
                }
            };

            /**
             * Select the given result
             */
            var select = function(num){
                if(num < 0){
                    deselect();
                    return;
                }

                var obj = getResult(num);
                if(obj){
                    deselect();
                    obj.className += ' selected';

                    // make sure the item is viewable in the scroll view
                    // FIXME check IE compatibility
                    if(obj.offsetTop > result.scrollTop + result.clientHeight){
                        result.scrollTop += obj.clientHeight;
                    }else if(obj.offsetTop - result.clientHeight < result.scrollTop){ // this works but isn't quite right, fixes welcome
                        result.scrollTop -= obj.clientHeight;
                    }
                    // now recheck - if still not in view, the user used the mouse to scroll
                    if( (obj.offsetTop > result.scrollTop + result.clientHeight) ||
                        (obj.offsetTop < result.scrollTop) ){
                        obj.scrollIntoView();
                    }

                    selected = num;
                }
            };

            /**
             * deselect a result if any is selected
             */
            var deselect = function(){
                if(selected > -1){
                    var obj = getResult(selected);
                    if(obj){
                        obj.className = obj.className.replace(/ ?selected/,'');
                    }
                }
                selected = -1;
            };

            /**
             * Handle clicks in the result set an dispatch them to
             * resultClick()
             */
            var onResultClick = function(e){
                if(e.target.tagName != 'A') return;
                e.stopPropagation();
                e.preventDefault();
                resultClick(e.target);
                return false;
            };

            /**
             * Handles the "click" on a given result anchor
             */
            var resultClick = function(a){
                var id = a.title;
                if(id == '' || id.substr(id.length-1) == ':'){
                    entry.value = id;
                    autocomplete_exec();
                }else{
                    entry.value = id;
                    if(a.nextSibling && a.nextSibling.tagName == 'SPAN'){
                        insertLink(a.nextSibling.innerHTML);
                    }else{
                        insertLink('');
                    }
                }
            };

            /**
             * Insert the id currently in the entry box to the textarea,
             * replacing the current selection or at the curso postion.
             * When no selection is available the given title will be used
             * as link title instead
             */
            var insertLink = function(title){
                if(!entry.value) return;

                var sel = getSelection(textArea);
                if(sel.start == 0 && sel.end == 0) sel = selection;

                var stxt = sel.getText();

                // don't include trailing space in selection
                if(stxt.charAt(stxt.length - 1) == ' '){
                    sel.end--;
                    var stxt = sel.getText();
                }

                if(!stxt && !DOKU_UHC) stxt=title;

                // prepend colon inside namespaces for non namespace pages
                if(textArea.form['id'].value.indexOf(':') != -1 &&
                   entry.value.indexOf(':') == -1){
                    entry.value = ':'+entry.value;
                }

                var link = '[['+entry.value+'|';
                if(stxt) link += stxt;
                link += ']]';

                var so = entry.value.length+3;
                var eo = 2;

                pasteText(sel,link,{startofs: so, endofs: eo});
                hide();
                // reset the entry to the parent namespace and remove : at the beginning
                entry.value = entry.value.replace(/(^:)?[^:]*$/, '');
            };

            /**
             * Start the page/namespace lookup timer
             *
             * Calls autocomplete_exec when the timer runs out
             */
            var autocomplete = function(){
                if(timer !== null){
                    window.clearTimeout(timer);
                    timer = null;
                }

                timer = window.setTimeout(autocomplete_exec,350);
            };

            /**
             * Executes the AJAX call for the page/namespace lookup
             */
            var autocomplete_exec = function(){
                deselect();
                result.innerHTML = '<img src="'+DOKU_BASE+'lib/images/throbber.gif" alt="" width="16" height="16" />';

                // because we need to use POST, we
                // can not use the .load() function.
                $.post(
                    DOKU_BASE + 'lib/exe/ajax.php',
                    {
                        call: 'linkwiz',
                        q: entry.value
                    },
                    function (data) {
                        result.innerHTML = data;
                    },
                    'html'
                );
            };

            /**
             * Clears the result area
             */
            var clear = function(){
                result.innerHTML = 'Search for a matching page name above, or browse through the pages on the right';
                entry.value = '';
            };

            /**
             * Show the linkwizard
             */
            var show = function(){
                selection  = getSelection(textArea);
                wiz.style.marginLeft = '0px';
                wiz.style.marginTop = '0px';
                entry.focus();
                autocomplete();
            };

            /**
             * Hide the link wizard
             */
            var hide = function(){
                wiz.style.marginLeft = '-10000px';
                wiz.style.marginTop  = '-10000px';
                textArea.focus();
            };

            /**
             * Toggle the link wizard
             */
            var toggle = function(){
                if(wiz.style.marginLeft == '-10000px'){
                    show();
                }else{
                    hide();
                }
            };

            init($(editor)[0]);

            return this.each(function() {
                $(this).click(function (e) {
                    e.preventDefault();
                    toggle();
                });
            });
        }
    });
})(jQuery);