-
Notifications
You must be signed in to change notification settings - Fork 3
/
script.js
223 lines (204 loc) · 8.03 KB
/
script.js
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
/* DOKUWIKI:include_once vendor/jquery.textcomplete.min.js */
function linksuggest_escape(text) {
return jQuery('<div/>').text(text).html();
}
function charAfterCursor() {
let editor = jQuery('#wiki__text');
let position = editor.prop('selectionStart');
return editor.prop('value').substring(position, position+1);
}
function appendTitle(title) {
return (title && JSINFO["append_header"] === 1 && charAfterCursor() !== '|')? '|' + title : '';
}
function appendSubtitle(title) {
return (title && charAfterCursor() !== '|')? '|' + title : '';
}
function appendClosing() {
return (charAfterCursor() === ']' || charAfterCursor() === '|')? '' : ']]';
}
jQuery(function () {
let $editor = jQuery('#wiki__text');
$editor.textcomplete([
{ //page search
match: /\[{2}([\w\-.:~]*)$/,
search: function (term, callback) {
if ($editor.data('linksuggest_off') === 1) {
callback([]);
return;
}
jQuery.post(
DOKU_BASE + 'lib/exe/ajax.php',
{
call: 'plugin_linksuggest',
q: term,
ns: JSINFO['namespace'],
id: JSINFO['id'],
},
function (data) {
data = JSON.parse(data);
callback(jQuery.map(data.data, function (item) {
let id = item.id;
if (item.type === 'd') {
id = id + ':';
}
return {
id: id,
ns: item.ns,
title: item.title,
type: item.type,
rootns: item.rootns
};
}));
}
);
},
template: function (item) { //dropdown list
let image;
let title = item.title ? ' (' + linksuggest_escape(item.title) + ')' : '';
let alt = item.type === 'd' ? 'ns' : 'page';
let value = item.id;
if (item.rootns) { //page is in root namespace
value = ':' + value;
}
if (item.type === 'd') { //namespace
image = 'ns.png';
} else { //file
image = 'page.png';
}
return '<img alt="' + alt + '" src="' + DOKU_BASE + 'lib/images/' + image + '"> ' + linksuggest_escape(value) + title;
},
index: 1,
replace: function (item) { //returns what will be put to editor
let id = item.id;
if (item.ns) { //prefix with already entered ns
id = item.ns + id;
}
if (item.type === 'd') { //namespace
setTimeout(function () {
$editor.trigger('keyup');
}, 200);
return '[[' + id;
} else { //file
$editor.data('linksuggest_off', 1);
setTimeout(function () {
$editor.data('linksuggest_off', 0);
}, 500);
return ['[[' + id, appendTitle(item.title) + appendClosing()];
}
},
cache: false
}, { //Page Section Search
match: /\[\[([\w\-.:~]+#[\w\-.:]*)$/,
index: 1,
search: function (term, callback) {
if ($editor.data('linksuggest_off') === 1) {
callback([]);
return;
}
jQuery.post(
DOKU_BASE + 'lib/exe/ajax.php',
{
call: 'plugin_linksuggest',
q: term,
ns: JSINFO['namespace'],
id: JSINFO['id'],
},
function (data) {
data = JSON.parse(data);
callback(jQuery.map(data.data, function (item) {
return {
'link': data.link,
'toc': item
};
}));
}
);
},
template: function (item) { //dropdown list
let toc = item.toc;
let title = toc.title ? ' (' + linksuggest_escape(toc.title) + ')' : '';
return linksuggest_escape(toc.hid) + title;
},
replace: function (item) { //returns what will be put to editor
let link = item.link;
let toc = item.toc;
$editor.data('linksuggest_off', 1);
setTimeout(function () {
$editor.data('linksuggest_off', 0);
}, 500);
return '[[' + link + '#' + toc.hid + appendSubtitle(toc.title) + appendClosing();
},
cache: false
}, { //media search
match: /\{{2}([\w\-.:~]*)$/,
search: function (term, callback) {
if ($editor.data('linksuggest_off') === 1) {
callback([]);
return;
}
jQuery.post(
DOKU_BASE + 'lib/exe/ajax.php',
{
call: 'plugin_imglinksuggest',
q: term,
ns: JSINFO['namespace'],
id: JSINFO['id'],
},
function (data) {
data = JSON.parse(data);
callback(jQuery.map(data.data, function (item) {
let id = item.id;
if (item.type === 'd') {
id = id + ':';
}
return {
id: id,
ns: item.ns,
type: item.type,
rootns: item.rootns
};
}));
}
);
},
template: function (item) { //dropdown list
let image;
let value = item.id;
let alt = item.type === 'd' ? 'ns' : 'media';
if (item.rootns) { //page is in root namespace
value = ':' + value;
}
if (item.type === 'd') { //namespace
image = 'ns.png';
} else { //file
image = 'media_link_nolnk.png';
}
return '<img alt="' + alt + '" src="' + DOKU_BASE + 'lib/images/' + image + '"> ' + linksuggest_escape(value);
},
index: 1,
replace: function (item) { //returns what will be put to editor
let id = item.id;
if (item.ns) { //prefix with already entered ns
id = item.ns + id;
}
if (item.type === 'd') { //namespace
setTimeout(function () {
$editor.trigger('keyup');
}, 200);
return '{{' + id;
} else { //file
$editor.data('linksuggest_off', 1);
setTimeout(function () {
$editor.data('linksuggest_off', 0);
}, 500);
return ['{{' + id, '}}'];
}
},
cache: false
}],{
appendTo: 'body',
maxCount: 50,
//header:'test',
//footer: 'schließen'
});
});