Wiki source code of Suggest Widget

Version 81.1 by Marius Dumitru Florea on 2019/06/21

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc start="2"/}}
3 {{/box}}
4
5 The suggest widget is implemented using [[Selectize.js>>http://selectize.github.io/selectize.js/]] with its Bootstrap skin and is bundled by default in XWiki platform.
6
7 == Predefined Suggesters ==
8
9 A couple of suggesters are available by default in XWiki. Each suggester provides:
10
11 * dedicated helper Velocity macros (to import required resources and to output the required HTML)
12 * a jQuery plugin to activate the suggest behavior on any input or select element
13 * a CSS class that activates the suggest behavior automatically
14
15 The dedicated Velocity macros are in fact loading a JavaScript code that calls the dedicated jQuery plugin on all the elements (input or select) that are marked with the dedicated CSS class. Here's the list of available suggesters:
16
17 |=Data|=Velocity Macros|=jQuery Plugin|=CSS Class
18 |Pages|pagePicker, pagePicker_import|suggestPages|suggest-pages
19 |Attachments|attachmentPicker, attachmentPicker_import|suggestAttachments|suggest-attachments
20 |Users|userPicker, userPicker_input, userPicker_import|suggestUsers|suggest-users
21 |Groups|groupPicker|suggestGroups|suggest-groups
22 |Property Values|xpropertySuggestInputDisplayer|suggestPropertyValues|suggest-propertyValues
23
24 === Usage ===
25
26 There are 3 ways in which you can activate a predefined suggester:
27
28 * from Velocity (by calling the dedicated Velocity macro)
29 * from JavaScript (by calling the dedicated jQyery plugin)
30 * from HTML (by marking form fields with the dedicated CSS class)
31
32 Use the one that suits you the best.
33
34 ==== From Velocity ====
35
36 You can do this by putting the following code in the content of a wiki page. Here we're calling the dedicated ##pagePicker## Velocity macro. Note that you can pass configuration options. Most of these settings are translated into HTML attributes (of the generated suggest input element) read by the dedicated jQuery plugin. You can use the ##data-xwiki-selectize## parameter to pass configuration options to the [[Selectize.js>>https://github.com/selectize/selectize.js/blob/master/docs/usage.md#configuration]] widget. Each predefined suggester might also have custom parameters you can set, check their documentation below.
37
38 {{code language="none"}}
39 {{velocity}}
40 {{html}}
41 #set ($pagePickerParams = {
42 'name': 'targetPages',
43 'value': ['Path.To.Alice', 'Path.To.Bob'],
44 'multiple': 'multiple'
45 })
46 #pagePicker($pagePickerParams)
47 {{/html}}
48 {{/velocity}}
49 {{/code}}
50
51 ==== From JavaScript ====
52
53 You can do this from a JavaScript Skin extension. First you need to configure the path to the suggester you want to use and then you need to call the dedicated jQuery plugin (##suggestAttachments##) from a require block. Note that you can pass configuration options when activating the suggester. These configuration options are either generic (for the [[Selectize>>https://github.com/selectize/selectize.js/blob/master/docs/usage.md#configuration]] widget) or specific to each suggester (see below).
54
55 {{code language="js"}}
56 require.config({
57 paths: {
58 'xwiki-suggestAttachments': "$xwiki.getSkinFile('uicomponents/suggest/suggestAttachments.js', true)" +
59 "?v=$escapetool.url($xwiki.version)"
60 }
61 });
62
63 require(['jquery', 'xwiki-suggestAttachments'], function($) {
64 $('input[name="logo"]').suggestAttachments({
65 accept: 'image/,.mp4,.pdf',
66 uploadAllowed: true
67 });
68 });
69 {{/code}}
70
71 Of course, you still need to load your skin extension code (from the content of a wiki page):
72
73 {{code language="none"}}
74 {{velocity}}
75 {{html}}
76 #set ($discard = $xwiki.jsx.use('Path.To.Your.JSX'))
77 <input type="text" name="logo" value="Sandbox.WebHome@XWikiLogo.png"/>
78 {{/html}}
79 {{/velocity}}
80 {{/code}}
81
82 ==== From HTML ====
83
84 Put the following code in the content of a wiki page. First you need to import the resources required by the suggester and then you need to mark the form fields you wish to enhance (using the dedicated CSS class, ##suggest-users## here). Note that you can use the ##data-xwiki-selectize## attribute to pass configuration options in JSON format to the [[Selectize.js>>https://github.com/selectize/selectize.js/blob/master/docs/usage.md#configuration]] widget. Each predefined suggester might also have custom attributes you can set, check their documentation below.
85
86 {{code language="none"}}
87 {{velocity output="false"}}
88 #userPicker_import
89 {{/velocity}}
90
91 {{html}}
92 <input type="text" name="manager" value="XWiki.mflorea" class="suggest-users"/>
93 {{/html}}
94 {{/code}}
95
96 === Suggest Pages ===
97
98 This suggester displays the page rendered title and the page location. The value that is saved in the end is the page reference. The hidden page user preference is taken into account.
99
100 {{code language="none"}}
101 {{velocity}}
102 {{html}}
103 #set ($pagePickerParams = {
104 ...
105 })
106 #pagePicker($pagePickerParams)
107 {{/html}}
108 {{/velocity}}
109 {{/code}}
110
111 {{image reference="pagePicker.png"/}}
112
113 Custom configuration parameters:
114
115 |=Name|=Description|=Default Value
116 |data-suggest-space|Restrict the suggestions to a specific location|None
117
118 === Suggest Attachments ===
119
120 This suggester displays the attachment (file) name and the attachment location. The suggestion icon is either a preview, if the attachment is an image or an icon that depends on the attachment media type. The value that is saved in the end is the attachment reference. The hidden page user preference is taken into account (e.g. attachments from hidden pages are not displayed by default).
121
122 {{code language="none"}}
123 {{velocity}}
124 {{html}}
125 #set ($attachmentPickerParams = {
126 ...
127 })
128 #attachmentPicker($attachmentPickerParams)
129 {{/html}}
130 {{/velocity}}
131 {{/code}}
132
133 {{image reference="attachmentPicker.png"/}}
134
135 It supports local file upload, either by selecting the files from the file browser or by dropping them on the suggest input. It also supports drag and drop of attachment links from the Attachment tab at the bottom of the wiki page.
136
137 Custom configuration parameters:
138
139 |=Name|=Description|=Default Value
140 |data-document-reference|The document where the selected values are saved and where new files are being uploaded. Stored attachment references will be relative this document.|Current page
141 |data-search-scope|(((Where to look for attachments. The following is supported:
142 * "wiki:wikiName" look for attachments in the specified wiki
143 * "space:spaceReference": look for attachments in the specified space
144 * "document:documentReference" look for attachments in the specified document)))|Current wiki
145 |data-upload-allowed|Whether to allow the user to upload files|false
146 |data-accept|(((Indicates the type of files that can be selected or uploaded. The value is a comma separated list of:
147 * file name extensions (e.g. .png,.pdf)
148 * complete or partial media types (e.g. image/,video/mpeg)
149
150 If nothing is specified then no restriction is applied.)))|None
151
152 === Suggest Users ===
153
154 This suggester displays the user avatar and their name. The value that is saved in the end is the user reference (the reference of the user profile page).
155
156 {{code language="none"}}
157 {{velocity}}
158 {{html}}
159 #set ($userPickerParams = {
160 ...
161 })
162 #userPicker($userPickerParams)
163 {{/html}}
164 {{/velocity}}
165 {{/code}}
166
167 {{image reference="userPicker.png"/}}
168
169 Custom configuration parameters:
170
171 |=Name|=Description|=Default Value
172 |data-userScope|Where to retrieve the user suggestions from. Supported values are: LOCAL_ONLY, GLOBAL_ONLY, LOCAL_AND_GLOBAL|User scope of the current wiki
173
174 === Suggest Groups ===
175
176 The suggester displays the group logo and its name. The group logo is the first image attachment found on the group page. The value that is saved in the end is the group reference (the reference of the group page).
177
178 {{code language="none"}}
179 {{velocity}}
180 {{html}}
181 #set ($groupPickerParams = {
182 ...
183 })
184 #groupPicker($groupPickerParams)
185 {{/html}}
186 {{/velocity}}
187 {{/code}}
188
189 {{image reference="groupPicker.png"/}}
190
191 Custom configuration parameters:
192
193 |=Name|=Description|=Default Value
194 |data-userScope|Where to retrieve the group suggestions from. Supported values are: LOCAL_ONLY, GLOBAL_ONLY, LOCAL_AND_GLOBAL. Note that GLOBAL_ONLY has the same effect as LOCAL_AND_GLOBAL because a wiki with only global users can have local groups|User scope of the current wiki
195
196 === Suggest Property Values ===
197
198 This suggester displays the label assocaited with a property value and saves the raw property value. The following property types are supported by this suggester: Static List and Database List. Note that these property types have default custom displayers associated that load the suggest widget when the "Use suggest" meta property is on. So normally the only thing you need to do is to display the property.
199
200 {{code language="none"}}
201 {{velocity}}
202 $doc.display('myDatabaseListProperty')
203 {{/velocity}}
204 {{/code}}
205
206 {{image reference="propertyValuePicker.png"/}}
207
208 If you don't have a property to display then you can also enable this suggester by calling the generic ##suggestInput## macro like this:
209
210 {{code language="none"}}
211 {{velocity}}
212 {{html}}
213 #set ($discard = $xwiki.jsfx.use('uicomponents/suggest/suggestPropertyValues.js',
214 {'forceSkinAction': true, 'language': $xcontext.locale}))
215 #set ($suggestParams = {
216 'class': 'suggest-propertyValues',
217 'placeholder': 'Select the movie director',
218 'data-className': 'Help.Applications.Movies.Code.MoviesClass',
219 'data-propertyName': 'databaseList1'
220 })
221 #suggestInput($suggestParams)
222 {{/html}}
223 {{/velocity}}
224 {{/code}}
225
226 Custom configuration parameters:
227
228 |=Name|=Description|=Default Value
229 |data-className|The class where the property is defined|None
230 |data-propertyName|The property whose values are to be retrieved as suggestions|None
231 |data-freeText|Whether free text is allowed or forbidden. Possible values are: allowed, forbidden|None
232
233 == Custom Suggesters ==
234
235 === Suggest from Static Data ===
236
237 Let's see how you can use the suggest widget with static data (i.e. data that is available when the web page is loaded).
238
239 {{html wiki="true"}}
240 <div>
241 <ul class="nav nav-tabs" role="tablist">
242 <li role="presentation" class="active">
243 <a href="#staticDataV1" aria-controls="staticDataV1" role="tab" data-toggle="tab">V1: The Basics</a>
244 </li>
245 <li role="presentation">
246 <a href="#staticDataV2" aria-controls="staticDataV2" role="tab" data-toggle="tab">V2: Separate Data</a>
247 </li>
248 <li role="presentation">
249 <a href="#staticDataV3" aria-controls="staticDataV3" role="tab" data-toggle="tab">V3: Helper Macros</a>
250 </li>
251 <li role="presentation">
252 <a href="#staticDataV4" aria-controls="staticDataV4" role="tab" data-toggle="tab">V4: Reusable Code</a>
253 </li>
254 </ul>
255
256 <div class="tab-content">
257 <div role="tabpanel" class="tab-pane active" id="staticDataV1">
258 <p>The following code:</p>
259
260 * loads the resources (JavaScript and CSS) needed by the suggest widget
261 * outputs the HTML (select element) needed by the suggest widget
262
263 <p>Note that the select element is marked with the ##xwiki-selectize## CSS class which activates the suggest widget.</p>
264
265 {{code language="none"}}
266 {{velocity}}
267 #set ($discard = $xwiki.linkx.use($services.webjars.url('selectize.js', 'css/selectize.bootstrap3.css'),
268 {'type': 'text/css', 'rel': 'stylesheet'}))
269 #set ($discard = $xwiki.ssfx.use('uicomponents/suggest/xwiki.selectize.css', true))
270 #set ($discard = $xwiki.jsfx.use('uicomponents/suggest/xwiki.selectize.js', true))
271 {{/velocity}}
272
273 {{html}}
274 <select class="xwiki-selectize">
275 <option value="">Select the country</option>
276 <option value="fr">France</option>
277 <option value="de">Germany</option>
278 <option value="ro">Romania</option>
279 </select>
280 {{/html}}
281 {{/code}}
282
283 </div>
284
285 <div role="tabpanel" class="tab-pane" id="staticDataV2">
286 <p>In this version we separate the code that generates the data used to provide suggestions. The data is usually retrieved from the database.</p>
287
288 {{code language="none"}}
289 {{velocity}}
290 {{html}}
291 #set ($discard = $xwiki.linkx.use($services.webjars.url('selectize.js', 'css/selectize.bootstrap3.css'),
292 {'type': 'text/css', 'rel': 'stylesheet'}))
293 #set ($discard = $xwiki.ssfx.use('uicomponents/suggest/xwiki.selectize.css', true))
294 #set ($discard = $xwiki.jsfx.use('uicomponents/suggest/xwiki.selectize.js', true))
295 #set ($countries = [
296 {'name': 'France', 'code': 'fr'},
297 {'name': 'Germany', 'code': 'de'},
298 {'name': 'Romania', 'code': 'ro'}
299 ])
300 ## See https://github.com/selectize/selectize.js/blob/master/docs/usage.md#configuration
301 #set ($selectizeSettings = {})
302 <select class="xwiki-selectize" data-xwiki-selectize="$escapetool.xml($jsontool.serialize($selectizeSettings))">
303 <option value="">Select the country</option>
304 #foreach ($country in $countries)
305 <option value="$!escapetool.xml($country.code)">$!escapetool.xml($country.name)</option>
306 #end
307 </select>
308 {{/html}}
309 {{/velocity}}
310 {{/code}}
311
312 </div>
313
314 <div role="tabpanel" class="tab-pane" id="staticDataV3">
315 <p>In this version we use some helper Velocity macros: ##picker_import## and ##suggestInput##. Notice the way we specify the selected value and the placeholder by passing parameters to the ##suggestInput## macro.</p>
316
317 {{code language="none"}}
318 {{velocity output="false"}}
319 #set ($countries = [
320 {'name': 'France', 'code': 'fr'},
321 {'name': 'Germany', 'code': 'de'},
322 {'name': 'Romania', 'code': 'ro'}
323 ])
324
325 #macro (countryPicker_displayOptions $selectedValues)
326 #foreach ($country in $countries)
327 <option value="$!escapetool.xml($country.code)"#if ($selectedValues.contains($country.code)) selected="selected"#end
328 >$!escapetool.xml($country.name)</option>
329 #end
330 #end
331 {{/velocity}}
332
333 {{velocity}}
334 {{html}}
335 #picker_import
336 #set ($discard = $xwiki.jsfx.use('uicomponents/suggest/xwiki.selectize.js', true))
337 ## See https://github.com/selectize/selectize.js/blob/master/docs/usage.md#configuration
338 #set ($selectizeSettings = {})
339 #set ($suggestInputAttributes = {
340 'name': 'country',
341 'class': 'xwiki-selectize',
342 'data-xwiki-selectize': $selectizeSettings,
343 'value': 'ro',
344 'placeholder': 'Select the country'
345 })
346 #suggestInput($suggestInputAttributes 'countryPicker_displayOptions')
347 {{/html}}
348 {{/velocity}}
349 {{/code}}
350
351 </div>
352
353 <div role="tabpanel" class="tab-pane" id="staticDataV4">
354 <p>In this last version we make the code reusable by creating the ##countryPicker## and ##countryPicker_import## Velocity macros.</p>
355
356 {{code language="none"}}
357 {{velocity output="false"}}
358 #set ($countries = [
359 {'name': 'France', 'code': 'fr'},
360 {'name': 'Germany', 'code': 'de'},
361 {'name': 'Romania', 'code': 'ro'}
362 ])
363
364 #macro (countryPicker_displayOptions $selectedValues)
365 #foreach ($country in $countries)
366 <option value="$!escapetool.xml($country.code)"#if ($selectedValues.contains($country.code)) selected="selected"#end
367 >$!escapetool.xml($country.name)</option>
368 #end
369 #end
370
371 #macro (countryPicker_import)
372 #picker_import
373 #set ($discard = $xwiki.jsfx.use('uicomponents/suggest/xwiki.selectize.js', true))
374 #end
375
376 #macro (countryPicker $parameters)
377 #countryPicker_import
378 #if ("$!parameters" == "")
379 #set ($parameters = {})
380 #end
381 #set ($discard = $parameters.put('class', "$!parameters.get('class') xwiki-selectize suggest-countries"))
382 #if (!$parameters.containsKey('placeholder'))
383 #set ($parameters.placeholder = 'Select the country')
384 #end
385 #suggestInput($parameters 'countryPicker_displayOptions')
386 #end
387 {{/velocity}}
388
389 {{velocity}}
390 {{html}}
391 #set ($countryPickerParams = {
392 'name': 'country',
393 'value': 'ro'
394 })
395 #countryPicker($countryPickerParams)
396 {{/html}}
397 {{/velocity}}
398 {{/code}}
399
400 </div>
401 </div>
402 </div>
403 {{/html}}
404
405 === Suggest from Remote Data ===
406
407 Most of the time you will want to retrive suggestions when the user types rather than loading all the suggestions on page load. Let's see how you can do this.
408
409 {{html wiki="true"}}
410 <div>
411 <ul class="nav nav-tabs" role="tablist">
412 <li role="presentation" class="active">
413 <a href="#remoteDataV1" aria-controls="remoteDataV1" role="tab" data-toggle="tab">V1: The Basics</a>
414 </li>
415 <li role="presentation">
416 <a href="#remoteDataV2" aria-controls="remoteDataV2" role="tab" data-toggle="tab">V2: Reusable Code</a>
417 </li>
418 </ul>
419
420 <div class="tab-content">
421 <div role="tabpanel" class="tab-pane active" id="remoteDataV1">
422 <p>In order to retrieve suggestions as you type you need to write some JavaScript code that makes an asynchronous HTTP request to retrive the data. You can put this code in a JavaScript Skin extension object. Then you need to load this JavaScript code on the page where you want to activate the suggest widget.</p>
423
424 {{code language="js"}}
425 require.config({
426 paths: {
427 'xwiki-selectize': "$xwiki.getSkinFile('uicomponents/suggest/xwiki.selectize.js', true)" +
428 "?v=$escapetool.url($xwiki.version)"
429 }
430 });
431
432 require(['jquery', 'xwiki-selectize'], function($) {
433 var settings = {
434 load: function(typedText, callback) {
435 $.getJSON('your/service/url', {
436 text: typedText
437 }).done(callback).fail(callback);
438 },
439 loadSelected: function(selectedValue, callback) {
440 $.getJSON('your/service/url', {
441 text: typedText,
442 exactMatch: true
443 }).done(callback).fail(callback);
444 }
445 };
446
447 $('.suggest-countries').xwikiSelectize(settings);
448 });
449 {{/code}}
450
451 {{code language="none"}}
452 {{velocity}}
453 #set ($discard = $xwiki.linkx.use($services.webjars.url('selectize.js', 'css/selectize.bootstrap3.css'),
454 {'type': 'text/css', 'rel': 'stylesheet'}))
455 #set ($discard = $xwiki.ssfx.use('uicomponents/suggest/xwiki.selectize.css', true))
456 #set ($discard = $xwiki.jsx.use('Path.To.Your.JSX'))
457 {{/velocity}}
458
459 {{html}}
460 <select class="suggest-countries">
461 <option value="">Select the country</option>
462 </select>
463 {{/html}}
464 {{/code}}
465
466 </div>
467
468 <div role="tabpanel" class="tab-pane" id="remoteDataV2">
469 <p>In this last version we make the code reusable by creating a jQuery plugin and some helper Velocity macros.</p>
470
471 {{code language="js"}}
472 require.config({
473 paths: {
474 'xwiki-selectize': "$xwiki.getSkinFile('uicomponents/suggest/xwiki.selectize.js', true)" +
475 "?v=$escapetool.url($xwiki.version)"
476 }
477 });
478
479 define('xwiki-suggestCountries', ['jquery', 'xwiki-selectize'], function($) {
480 var getSettings = function(select) {
481 return {
482 load: function(typedText, callback) {
483 $.getJSON('your/service/url', {
484 text: typedText
485 }).done(callback).fail(callback);
486 },
487 loadSelected: function(selectedValue, callback) {
488 $.getJSON('your/service/url', {
489 text: typedText,
490 exactMatch: true
491 }).done(callback).fail(callback);
492 }
493 };
494 };
495
496 $.fn.suggestCountries = function(settings) {
497 return this.each(function() {
498 $(this).xwikiSelectize($.extend(getSettings($(this)), settings));
499 });
500 };
501 });
502
503 require(['jquery', 'xwiki-suggestCountries', 'xwiki-events-bridge'], function($) {
504 var init = function(event, data) {
505 var container = $((data && data.elements) || document);
506 container.find('.suggest-countries').suggestCountries();
507 };
508
509 $(document).on('xwiki:dom:loaded xwiki:dom:updated', init);
510 XWiki.domIsLoaded && init();
511 });
512 {{/code}}
513
514 {{code language="none"}}
515 {{velocity output="false"}}
516 #macro (countryPicker_import)
517 #picker_import
518 #set ($discard = $xwiki.jsx.use('Path.To.Your.JSX'))
519 #end
520
521 #macro (countryPicker $parameters)
522 #countryPicker_import
523 #if ("$!parameters" == "")
524 #set ($parameters = {})
525 #end
526 #set ($discard = $parameters.put('class', "$!parameters.get('class') suggest-countries"))
527 #if (!$parameters.containsKey('placeholder'))
528 #set ($parameters.placeholder = 'Select the country')
529 #end
530 #suggestInput($parameters)
531 #end
532 {{/velocity}}
533
534 {{velocity}}
535 {{html}}
536 #set ($countryPickerParams = {
537 'name': 'country',
538 'value': 'ro'
539 })
540 #countryPicker($countryPickerParams)
541 {{/html}}
542 {{/velocity}}
543 {{/code}}
544
545 </div>
546 </div>
547 </div>
548 {{/html}}
549
550 The remote data should have the following JSON format:
551
552 {{code language="js"}}
553 [
554 {
555 'label': '...',
556 'value': '...',
557 'url': '...',
558 'icon': {
559 'iconSetName': '...',
560 'iconSetType': 'IMAGE or FONT',
561 'cssClass': 'for font icons',
562 'url': 'for image icons'
563 },
564 'hint': '...'
565 },
566 ...
567 ]
568 {{/code}}

Get Connected