Wiki source code of XWiki JavaScript API

Version 31.1 by Marius Dumitru Florea on 2015/07/16

Hide last authors
Manuel Smeria 17.3 1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
Sergiu Dumitriu 9.1 4
Manuel Smeria 17.3 5 = Observable XWiki Events =
Jerome 1.1 6
7 Stay in touch with what happens in the wiki! XWiki will fire custom javascript events on certain moment and upon certain actions that occur in the navigation flow.
8
Sergiu Dumitriu 9.1 9 Event names are build on the following model: ##xwiki:modulename:eventname##. Your JavaScript script or extension can get notified of such an event the following way:
Jerome 1.1 10
Sergiu Dumitriu 10.1 11 {{code language="javascript"}}
12 document.observe("xwiki:modulename:eventname", function(event) {
13 // Here, do something that will be executed at the moment the event is fired
14 doSomething();
Jerome 1.1 15
Sergiu Dumitriu 10.1 16 // The event can have an option memo object to pass to its observers some information:
17 console.log(event.memo.somethingINeedToKnow);
Sergiu Dumitriu 9.1 18 });
19 {{/code}}
Jerome 1.1 20
Manuel Smeria 17.3 21 Check out the real examples below or read more about [[Prototype.js's event system>>http://prototypejs.org/doc/latest/dom/Element/fire/]].
Jerome 1.1 22
Manuel Smeria 17.3 23 == DOM Events (xwiki.js) ==
Jerome 1.1 24
Sergiu Dumitriu 11.1 25 * **##xwiki:dom:loaded##**
Manuel Smeria 17.3 26 This event is similar to [[prototype's dom:loaded event>>http://prototypejs.org/doc/latest/dom/document/observe/]], with the difference that in the time-lapse between ##dom:loaded## and ##xwiki:dom:loaded##, XWiki may have transformed the DOM. Example of DOM transformations operated by XWiki is setting the right target of links that have rel="external" attribute so that the document can be XHTML valid and still have the desired effect, making internal rendering error messages expandable, insert document template handlers for links to non-existent documents, and so on. In the future there might be more transformations operated by XWiki upon DOM initialization. This event is meant for code to be notified of loading of the XWiki-transformed version of the initial DOM. As ##dom:loaded##, it can be used as follows:(((
Sergiu Dumitriu 17.2 27 {{code language="javascript"}}
Jerome 1.1 28 document.observe("xwiki:dom:loaded", function(){
Sergiu Dumitriu 10.1 29 // Initialization that can rely on the fact the DOM is XWiki-tranformed goes here.
Jerome 1.1 30 });
Sergiu Dumitriu 11.1 31 {{/code}})))
Manuel Smeria 17.3 32 (((
33 {{info}}
34 It is recommended to bind startup scripts to this event instead of ##window.load## or ##document.dom:loaded##.
35 {{/info}}
36 )))
37
Sergiu Dumitriu 11.1 38 * **##xwiki:dom:loading##**
Sergiu Dumitriu 9.1 39 ##xwiki:dom:loading## is sent between ##dom:loaded## and ##xwiki:dom:loaded##, before XWiki changes the DOM. This is the event that should start all scripts making important DOM changes that other scripts should see.
Sergiu Dumitriu 16.1 40 * **##xwiki:dom:updated##**
Sergiu Dumitriu 17.1 41 This event is sent whenever an important change in the DOM occurs, such as loading new content in a dialog box or tab, or refreshing the document content. Scripts that add behavior to certain elements, or which enhance the DOM, should listen to this event as well and re-apply their initialization process on the updated content, the same way that the whole DOM is enhanced on ##xwiki:dom:loaded##. The list of new or updated elements is sent in the ##event.memo.elements## property. For example:(((
42 {{code language="javascript"}}
43 var init = function(elements) {
44 // Search for special content to enhance in each DOM element in the "elements" list and enhance it
45 elements.each(function(element) {
46 element.select('.someBehavioralClass').each(function(item) {
47 enhance(item);
Sergiu Dumitriu 17.2 48 });
49 });
Sergiu Dumitriu 17.1 50 }
51 ['xwiki:dom:loaded', 'xwiki:dom:updated'].each(function(eventName) {
52 document.observe(eventName, function(event) {
53 init(event.memo && event.memo.elements || [document.documentElement]);
Sergiu Dumitriu 17.2 54 });
Sergiu Dumitriu 17.1 55 });
56 {{/code}}
Sergiu Dumitriu 1.5 57
Denis Gervalle 15.1 58 {{warning}}
59 If your script is loaded **deferred**, all these events may be triggered **before your script is executed** and therefore **before it has the ablity to observe these events**. Since 3.1.1, to prevent your handler to never being called, never use ##dom:loaded## anymore, and check ##XWiki.isInitialized## before waiting for ##xwiki:dom:loading##, and ##XWiki.domIsLoaded## before waiting for ##xwiki:dom:loaded##. If the flag is true, you should proceed immediately with your handler. Here is a simple construct to properly handle this:(((
60 {{code}}
61 function init() {
62 // This is your initialization handler, that you generally hook to xwiki:dom:loaded
63 }
64 (XWiki && XWiki.domIsLoaded && init()) || document.observe("xwiki:dom:loaded", init);
65 {{/code}})))
66 {{/warning}}
67
Manuel Smeria 17.3 68 == Document content events (actionButtons.js) ==
Sergiu Dumitriu 3.1 69
Sergiu Dumitriu 10.1 70 * **##xwiki:document:saved##**
71 This event is sent after the document has been successfully saved in an asynchronous request (i.e. after clicking the //Save and Continue// button).
72 * **##xwiki:document:saveFailed##**
73 This event is sent when a save and continue attempt failed for some reason. The XMLHttpRequest response object is sent in the memo, as ##event.memo.response##.
Sergiu Dumitriu 3.1 74
Manuel Smeria 17.3 75 == Action events (actionButtons.js) ==
Jerome 1.1 76
Sergiu Dumitriu 9.1 77 * **##xwiki:actions:cancel##**
Sergiu Dumitriu 3.2 78 This event is sent after the user clicks the "Cancel" button of an editor (Wiki, WYSIWYG, object, rights, etc.), but before actually cancelling the edit.
Sergiu Dumitriu 9.1 79 * **##xwiki:actions:preview##**
Guillaume Delhumeau 15.2 80 This event is sent after the user clicks the "Preview" button of an editor (Wiki, WYSIWYG, object, rights, etc.), but before actually leaving the edit mode.
Sergiu Dumitriu 11.1 81 * **##xwiki:actions:save##**
Sergiu Dumitriu 12.1 82 This event is sent after the user clicks the "Save" or "Save & Continue" button of an editor (Wiki, WYSIWYG, object, rights, etc.), but before actually submitting the form. A memo is available if you need to know if the intend is to continue after the save, in ##event.memo['continue']##. You can use it as follows:(((
Sergiu Dumitriu 10.1 83 {{code language="javascript"}}
Sergiu Dumitriu 12.1 84 document.observe("xwiki:actions:save", function(event){
85 var doContinue = event.memo['continue'];
Sergiu Dumitriu 10.1 86 if (doContinue) {
87 // do something specific
88 }
Jerome 1.1 89 });
Sergiu Dumitriu 11.1 90 {{/code}})))
Manuel Smeria 17.3 91 (((
92 {{warning}}
93 While most properties can be accessed as ##event.memo.property##, this doesn't work with ##event.memo.continue## since ##continue## is a reserved keyword.
94 {{/warning}}
95 )))
96 (((
Sergiu Dumitriu 10.1 97 All these events contain as extra information, in the second parameter sent to event listeners (the memo), the original click event (if any, and which can be stopped to prevent the action from completing), and the form being submitted, as ##event.memo.originalEvent##, and ##event.memo.form## respectively.
Manuel Smeria 17.3 98 )))
Sergiu Dumitriu 1.5 99
Manuel Smeria 17.3 100 == Document extra events (xwiki.js) ==
Jerome 1.1 101
Sergiu Dumitriu 11.1 102 * **##xwiki:docextra:loaded##**
103 This event is fired upon reception of the content of a document footer tab by AJAX. This event is useful if you need to operate transformations of the received content. You can filter on which tab content to operate (comments or attachment or information or ...) using the event memo. The DOM element in which the retrieved content has been injected is also passed to facilitate transformations.(((
Sergiu Dumitriu 10.1 104 {{code language="javascript"}}
Jerome 1.1 105 document.observe("xwiki:docextra:loaded", function(event){
106 var tabID = event.memo.id;
107 if (tabID == "attachments") {
108 // do something with the attachments tab retrieved content.
109 doSomething(event.memo.element);
110 }
111 });
Sergiu Dumitriu 9.1 112 {{/code}}
Sergiu Dumitriu 10.1 113 )))
Sergiu Dumitriu 9.1 114 * **##xwiki:docextra:activated##**
115 This event is fired upon activation of a tab. It differs from the loaded event since tabs are loaded only once if the user clicks going back and forth between tabs. This event will notify of each tab activation, just after the tab content is actually made visible. The tab ID is passed in the memo as for ##xwiki:docextra:loaded##
Oana Florea 4.1 116
Manuel Smeria 17.3 117 == WYSIWYG events (XWikiWysiwyg.js) ==
Ecaterina Moraru (Valica) 5.1 118
Vincent Massol 11.3 119 WYSIWYG has it's own custom [[events list>>extensions:Extension.WYSIWYG Editor Module#HCustomevents]].
Ecaterina Moraru (Valica) 5.1 120
Manuel Smeria 17.3 121 == Suggest events (ajaxSuggest.js) ==
Ecaterina Moraru (Valica) 8.1 122
Sergiu Dumitriu 9.1 123 * **##xwiki:suggest:selected##** (since 2.3)
Sergiu Dumitriu 11.1 124 This event is fired on the target input when a value was selected.
Ecaterina Moraru (Valica) 8.1 125
Manuel Smeria 17.3 126 == Fullscreen events (fullScreenEdit.js) ==
Oana Florea 4.1 127
Marius Dumitru Florea 14.1 128 * **##xwiki:fullscreen:enter##** (since 3.0 M3) (fired before entering full screen editing)
129 * **##xwiki:fullscreen:entered##** (since 2.5.1) (fired after entering full screen editing)
130 * **##xwiki:fullscreen:exit##** (since 3.0 M3) (fired before exiting full screen editing)
131 * **##xwiki:fullscreen:exited##** (since 2.5.1) (fired after exiting full screen editing)
132 * **##xwiki:fullscreen:resized##** (since 2.5.1)
Ecaterina Moraru (Valica) 6.1 133
Sergiu Dumitriu 11.1 134 All events have the target DOM element in ##event.memo.target##.
135
Manuel Smeria 17.3 136 == Annotations events (AnnotationCode/Settings jsx) ==
Ecaterina Moraru (Valica) 6.1 137
Sergiu Dumitriu 9.1 138 * **##xwiki:annotations:filter:changed##**
139 * **##xwiki:annotations:settings:loaded##**
Ecaterina Moraru (Valica) 6.1 140
Manuel Smeria 17.3 141 == Livetable events (livetable.js) ==
Ecaterina Moraru (Valica) 6.1 142
Sergiu Dumitriu 11.1 143 * **##xwiki:livetable:newrow##** (##event.memo.row## holds the new row)
Sergiu Dumitriu 9.1 144 * **##xwiki:livetable:loadingEntries##** (since 2.3 RC1)
Sergiu Dumitriu 11.1 145 * **##xwiki:livetable:receivedEntries##** (since 2.3 RC1) (##event.memo.data## contains the received JSON data)
146 * **##xwiki:livetable:loadingComplete##** (since 2.4 M1) (##event.memo.status## contains the response status code)
Sergiu Dumitriu 9.1 147 * **##xwiki:livetable:displayComplete##** (since 2.4 M1)
148 * **##xwiki:livetable:ready##** (since 2.4.4)
Denis Gervalle 15.1 149 * **##xwiki:livetable:loading##** (since 3.1.1) (should be used in place of ##xwiki:dom:loading## to startup livetables)
Sergiu Dumitriu 11.1 150
151 The livetable sends both generic events, named as above, and events specific to each livetable, containing the table name on the third position, such as ##xwiki:livetable:alldocs:loadingEntries##. The generic event has the table name in the memo, as ##event.memo.tableId##.
Caleb James DeLisle 18.1 152
Caleb James DeLisle 19.1 153 = RequireJS and jQuery APIs =
Caleb James DeLisle 18.1 154
155 By default XWiki uses PrototypeJS which is bound to the $ symbol. Starting in XWiki 5.2, you may use jQuery by //requiring// it using the [[RequireJS>>http://requirejs.org/]] AMD standard. To do this you would write your code as follows:
156
157 {{code language="javascript"}}
158 require(['jquery'], function ($) {
159 $('#xwikicontent').append('<p>Inside of this function, $ becomes jquery!</p>');
160 });
161 {{/code}}
162
163 The best part is, any scripts which are loaded using require are loaded //asynchronously// (all at the same time) and if they are not required, they are never loaded at all.
Guillaume Delhumeau 20.1 164
Marius Dumitru Florea 24.1 165 == Bridging custom XWiki events between Prototype and jQuery ==
Marius Dumitru Florea 23.1 166
167 Starting with XWiki 6.4 you can catch from jQuery the custom XWiki events that are fired from Prototype.
168
169 {{code language="js"}}
170 require(['jquery', 'xwiki-events-bridge'], function($) {
171 $('.some-element').on('xwiki:moduleName:eventName', function(event, data) {
172 // Here, do something that will be executed at the moment the event is fired.
173 doSomething();
174
175 // The passed data is a reference to the event.memo from Prototype.
176 console.log(data.somethingINeedToKnow);
177 });
178 });
179 {{/code}}
180
Marius Dumitru Florea 24.1 181 Starting with XWiki 7.1M1 the event listeners registered from Prototype are notified when a custom XWiki event is fired using the jQuery API. This doesn't mean you should write new event listeners using Prototype but that you can rely on existing event listeners until they are rewritten using jQuery.
182
183 {{code language="js"}}
184 // Prototype (old code that you don't have time to rewrite)
185 document.observe('xwiki:dom:updated', function(event) {
186 event.memo.elements.each(function(element) {
187 // Do something.
188 });
189 });
190 ...
Marius Dumitru Florea 24.2 191 // jQuery (new code, in a different file/page)
Marius Dumitru Florea 24.1 192 require(['jquery', 'xwiki-events-bridge'], function($) {
193 $(document).trigger('xwiki:dom:updated', {'elements': $('.some-container').toArray()});
194 });
195 {{/code}}
196
Guillaume Delhumeau 26.1 197 = Get some information about the current document {{info}}(Since 6.3M2){{/info}} =
Guillaume Delhumeau 20.1 198
Eduard Moraru 23.2 199 In your javascript's applications, you can get (meta) information about the current document, though an AMS module.
Guillaume Delhumeau 21.1 200
Guillaume Delhumeau 20.1 201 {{code language="javascript"}}
202 require(['xwiki-meta'], function (xm) {
Clemens Robbenhaar 22.2 203 xm.document // get the current document (eg: Main.WebHome)
Guillaume Delhumeau 29.1 204 xm.wiki // get the current wiki (eg: xwiki)
Guillaume Delhumeau 20.1 205 xm.space // get the current space (eg: Main)
206 xm.page // get the current page name (eg: WebHome)
207 xm.version // get the current document version (eg: 1.1)
208 xm.restURL // get the REST url of the current doc (eg: /xwiki/rest/wikis/xwiki/spaces/Main/pages/WebHome)
Clemens Robbenhaar 22.2 209 xm.form_token // get the current CSRF token that you should pass to your scripts to avoid CSRF attacks.
Guillaume Delhumeau 20.1 210 });
211 {{/code}}
Guillaume Delhumeau 22.1 212
213 {{warning}}
214 It is actually the only clean way. In the past, we used to add some <meta> tags in the <head> section of the page, but is not even valid in HTML5. So now we have introduced this API that we will maintain, meanwhile relying on any other element in the page could be broken in the future!
215 {{/warning}}
Guillaume Delhumeau 28.1 216
217 == Be retro-compatible with versions older than 6.3 ==
218
219 If you want to be compatible with older version, you can use this trick:
220
221 {{code language="javascript"}}
222 require(['xwiki-meta'], function (xm) {
223 // Note that the require['xwiki-meta'] (meta information about the current document) is not available on
224 // XWiki versions < 6.3, then we get these meta information directly from the DOM.
225 var document = xm ? xm.document : $('meta[name="document"]').attr('content');
226 var wiki = xm ? xm.wiki : $('meta[name="wiki"]').attr('content');
227 var space = xm ? xm.space : $('meta[name="space"]').attr('content');
228 var page = xm ? xm.wiki : $('meta[name="page"]').attr('content');
229 var version = xm ? xm.version : $('meta[name="version"]').attr('content');
230 var restURL = xm ? xm.restURL : $('meta[name="restURL"]').attr('content');
231 var form_token = xm ? xm.form_token : $('meta[name="form_token"]').attr('content');
Guillaume Delhumeau 30.1 232 });
Guillaume Delhumeau 28.1 233 {{/code}}
Marius Dumitru Florea 31.1 234
235 = Work with Entity References =
236
237 Starting with XWiki 4.2M1 you can resolve and serialize Entity References on the client side easily:
238
239 {{code language="js"}}
240 var documentReference = XWiki.Model.resolve('wiki:Space.Page', XWiki.EntityType.DOCUMENT);
241 var attachmentReference = new XWiki.AttachmentReference('logo.png', documentReference);
242 XWiki.Model.serialize(attachmentReference);
243 {{/code}}
244
245 You can check the full API [[here>>https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwiki-platform-web/src/main/webapp/resources/uicomponents/model/entityReference.js]].
246
247 Starting with XWiki 7.2M1 the {{XWiki.Model}} JavaScript API is supporting nested spaces:
248
249 {{code language="js"}}
250 var documentReference = XWiki.Model.resolve('wiki:Path.To.My.Page', XWiki.EntityType.DOCUMENT);
251 documentReference.getReversedReferenceChain().map(function(entityReference) {
252 return entityReference.type + ': ' + entityReference.name
253 }).join()
254 // Will produce:
255 // 0: wiki,1: Path,1: To,1: My,2: Page
256 {{/code}}
257
258 Starting with 7.2M1 you can also pass a 'provider' as the third argument to {{XWiki.Model.resolve}}. The provider is used to fill missing references, and it is either a function that gets the entity type, an array of entity names or an entity reference.
259
260 {{code language="js"}}
261 var documentReference = XWiki.Model.resolve('Page', XWiki.EntityType.DOCUMENT, function(type) {
262 switch(type) {
263 case: XWiki.EntityType.WIKI:
264 return 'wiki';
265 case: XWiki.EntityType.SPACE:
266 return 'Space';
267 default:
268 return null;
269 }
270 });
271 // Produces wiki:Space.Page
272
273 var documentReference = XWiki.Model.resolve('Page', XWiki.EntityType.DOCUMENT, ['wiki', 'Space']);
274 // Same output
275
276 var spaceReference = new XWiki.SpaceReference('wiki', 'Space');
277 var documentReference = XWiki.Model.resolve('Page', XWiki.EntityType.DOCUMENT, spaceReference);
278 // Same output
279 {{/code}}

Get Connected