author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 30 Nov 2009 10:24:01 +0100 | |
branch | stable |
changeset 3947 | 8d06bce45c02 |
parent 3863 | fe22502d4ab1 |
child 4174 | 860f622a31aa |
permissions | -rw-r--r-- |
0 | 1 |
/* |
2 |
* :organization: Logilab |
|
1419 | 3 |
* :copyright: 2003-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
0 | 4 |
* :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
5 |
*/ |
|
6 |
||
7 |
CubicWeb.require('python.js'); |
|
8 |
CubicWeb.require('htmlhelpers.js'); |
|
9 |
||
10 |
var JSON_BASE_URL = baseuri() + 'json?'; |
|
11 |
||
1512
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
12 |
function _loadAjaxHtmlHead(node, head, tag, srcattr) { |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
13 |
var loaded = []; |
2257
2c9eceeaae6a
fix w/ tags without src/href
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1801
diff
changeset
|
14 |
var jqtagfilter = tag + '[' + srcattr + ']'; |
2c9eceeaae6a
fix w/ tags without src/href
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1801
diff
changeset
|
15 |
jQuery('head ' + jqtagfilter).each(function(i) { |
1512
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
16 |
loaded.push(this.getAttribute(srcattr)); |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
17 |
}); |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
18 |
node.find(tag).each(function(i) { |
2257
2c9eceeaae6a
fix w/ tags without src/href
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1801
diff
changeset
|
19 |
if (this.getAttribute(srcattr)) { |
2c9eceeaae6a
fix w/ tags without src/href
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1801
diff
changeset
|
20 |
if (!loaded.contains(this.getAttribute(srcattr))) { |
2c9eceeaae6a
fix w/ tags without src/href
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1801
diff
changeset
|
21 |
jQuery(this).appendTo(head); |
2c9eceeaae6a
fix w/ tags without src/href
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1801
diff
changeset
|
22 |
} |
2c9eceeaae6a
fix w/ tags without src/href
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1801
diff
changeset
|
23 |
} else { |
1512
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
24 |
jQuery(this).appendTo(head); |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
25 |
} |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
26 |
}); |
2257
2c9eceeaae6a
fix w/ tags without src/href
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1801
diff
changeset
|
27 |
node.find(jqtagfilter).remove(); |
1512
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
28 |
} |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
29 |
|
642
2cf7b79d8e77
[javascript] rewrote loadxhtml() plugin in order to be able to pass the XHR object to postAjaxLoad
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
540
diff
changeset
|
30 |
/* |
2cf7b79d8e77
[javascript] rewrote loadxhtml() plugin in order to be able to pass the XHR object to postAjaxLoad
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
540
diff
changeset
|
31 |
* inspect dom response, search for a <div class="ajaxHtmlHead"> node and |
2cf7b79d8e77
[javascript] rewrote loadxhtml() plugin in order to be able to pass the XHR object to postAjaxLoad
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
540
diff
changeset
|
32 |
* put its content into the real document's head. |
2cf7b79d8e77
[javascript] rewrote loadxhtml() plugin in order to be able to pass the XHR object to postAjaxLoad
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
540
diff
changeset
|
33 |
* This enables dynamic css and js loading and is used by replacePageChunk |
2cf7b79d8e77
[javascript] rewrote loadxhtml() plugin in order to be able to pass the XHR object to postAjaxLoad
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
540
diff
changeset
|
34 |
*/ |
2cf7b79d8e77
[javascript] rewrote loadxhtml() plugin in order to be able to pass the XHR object to postAjaxLoad
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
540
diff
changeset
|
35 |
function loadAjaxHtmlHead(node) { |
1512
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
36 |
var head = jQuery('head'); |
1563
b130c6cec8c2
loadJSON -> loadRemote, correctly handle json
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1512
diff
changeset
|
37 |
node = jQuery(node).find('div.ajaxHtmlHead'); |
1512
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
38 |
_loadAjaxHtmlHead(node, head, 'script', 'src'); |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
39 |
_loadAjaxHtmlHead(node, head, 'link', 'href'); |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
40 |
node.find('*').appendTo(head); |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
41 |
} |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
42 |
|
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
43 |
function preprocessAjaxLoad(node, newdomnode) { |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
44 |
loadAjaxHtmlHead(newdomnode); |
642
2cf7b79d8e77
[javascript] rewrote loadxhtml() plugin in order to be able to pass the XHR object to postAjaxLoad
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
540
diff
changeset
|
45 |
} |
2cf7b79d8e77
[javascript] rewrote loadxhtml() plugin in order to be able to pass the XHR object to postAjaxLoad
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
540
diff
changeset
|
46 |
|
1407
75863d3ffd9b
cleanup (undue req param)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1320
diff
changeset
|
47 |
function postAjaxLoad(node) { |
540
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
48 |
// find sortable tables if there are some |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
49 |
if (typeof(Sortable) != 'undefined') { |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
50 |
Sortable.sortTables(node); |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
51 |
} |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
52 |
// find textareas and wrap them if there are some |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
53 |
if (typeof(FCKeditor) != 'undefined') { |
3060
ea967a4f6ccb
avoid installing editor n times for n ajax loads
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3011
diff
changeset
|
54 |
buildWysiwygEditors(); |
540
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
55 |
} |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
56 |
if (typeof initFacetBoxEvents != 'undefined') { |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
57 |
initFacetBoxEvents(node); |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
58 |
} |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
59 |
if (typeof buildWidgets != 'undefined') { |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
60 |
buildWidgets(node); |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
61 |
} |
2338
3f7c7fbae94e
call postAjaxLoad in reloadComponent; add corners only on reloaded elements
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
2257
diff
changeset
|
62 |
if (typeof roundedCorners != 'undefined') { |
3f7c7fbae94e
call postAjaxLoad in reloadComponent; add corners only on reloaded elements
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
2257
diff
changeset
|
63 |
roundedCorners(node); |
955 | 64 |
} |
3863
fe22502d4ab1
[forms] add setFormsTarget() to the list of postAjaxLoad callbacks to have iframe on ajax-rendered forms
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3784
diff
changeset
|
65 |
if (typeof setFormsTarget != 'undefined') { |
fe22502d4ab1
[forms] add setFormsTarget() to the list of postAjaxLoad callbacks to have iframe on ajax-rendered forms
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3784
diff
changeset
|
66 |
setFormsTarget(node); |
fe22502d4ab1
[forms] add setFormsTarget() to the list of postAjaxLoad callbacks to have iframe on ajax-rendered forms
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3784
diff
changeset
|
67 |
} |
1512
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
68 |
loadDynamicFragments(node); |
3075
e9b7cd2e9012
allow treeview to work correctly in a tab #345293
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3060
diff
changeset
|
69 |
// XXX simulates document.ready, but the former |
e9b7cd2e9012
allow treeview to work correctly in a tab #345293
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3060
diff
changeset
|
70 |
// only runs once, this one potentially many times |
e9b7cd2e9012
allow treeview to work correctly in a tab #345293
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3060
diff
changeset
|
71 |
// we probably need to unbind the fired events |
e9b7cd2e9012
allow treeview to work correctly in a tab #345293
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3060
diff
changeset
|
72 |
// When this is done, jquery.treeview.js (for instance) |
e9b7cd2e9012
allow treeview to work correctly in a tab #345293
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3060
diff
changeset
|
73 |
// can be unpatched. |
e9b7cd2e9012
allow treeview to work correctly in a tab #345293
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3060
diff
changeset
|
74 |
jQuery(CubicWeb).trigger('ajax-loaded'); |
540
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
75 |
} |
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
76 |
|
3011 | 77 |
/* cubicweb loadxhtml plugin to make jquery handle xhtml response |
78 |
* |
|
79 |
* fetches `url` and replaces this's content with the result |
|
80 |
* |
|
81 |
* @param mode how the replacement should be done (default is 'replace') |
|
82 |
* Possible values are : |
|
83 |
* - 'replace' to replace the node's content with the generated HTML |
|
84 |
* - 'swap' to replace the node itself with the generated HTML |
|
85 |
* - 'append' to append the generated HTML to the node's content |
|
86 |
*/ |
|
0 | 87 |
jQuery.fn.loadxhtml = function(url, data, reqtype, mode) { |
88 |
var ajax = null; |
|
89 |
if (reqtype == 'post') { |
|
90 |
ajax = jQuery.post; |
|
91 |
} else { |
|
92 |
ajax = jQuery.get; |
|
93 |
} |
|
94 |
if (this.size() > 1) { |
|
95 |
log('loadxhtml was called with more than one element'); |
|
96 |
} |
|
642
2cf7b79d8e77
[javascript] rewrote loadxhtml() plugin in order to be able to pass the XHR object to postAjaxLoad
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
540
diff
changeset
|
97 |
var node = this.get(0); // only consider the first element |
0 | 98 |
mode = mode || 'replace'; |
99 |
var callback = null; |
|
100 |
if (data && data.callback) { |
|
101 |
callback = data.callback; |
|
102 |
delete data.callback; |
|
103 |
} |
|
104 |
ajax(url, data, function(response) { |
|
105 |
var domnode = getDomFromResponse(response); |
|
1512
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
106 |
preprocessAjaxLoad(node, domnode); |
0 | 107 |
if (mode == 'swap') { |
108 |
var origId = node.id; |
|
109 |
node = swapDOM(node, domnode); |
|
110 |
if (!node.id) { |
|
111 |
node.id = origId; |
|
112 |
} |
|
113 |
} else if (mode == 'replace') { |
|
114 |
jQuery(node).empty().append(domnode); |
|
115 |
} else if (mode == 'append') { |
|
116 |
jQuery(node).append(domnode); |
|
117 |
} |
|
1407
75863d3ffd9b
cleanup (undue req param)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1320
diff
changeset
|
118 |
postAjaxLoad(node); |
0 | 119 |
while (jQuery.isFunction(callback)) { |
120 |
callback = callback.apply(this, [domnode]); |
|
121 |
} |
|
122 |
}); |
|
540
e5c97f6f119d
[javascript] extract ajax postprocessing in a separate function
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
492
diff
changeset
|
123 |
}; |
0 | 124 |
|
125 |
||
126 |
||
127 |
/* finds each dynamic fragment in the page and executes the |
|
128 |
* the associated RQL to build them (Async call) |
|
129 |
*/ |
|
1512
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
130 |
function loadDynamicFragments(node) { |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
131 |
if (node) { |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
132 |
var fragments = jQuery(node).find('div.dynamicFragment'); |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
133 |
} else { |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
134 |
var fragments = jQuery('div.dynamicFragment'); |
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
135 |
} |
0 | 136 |
if (fragments.length == 0) { |
137 |
return; |
|
138 |
} |
|
139 |
if (typeof LOADING_MSG == 'undefined') { |
|
140 |
LOADING_MSG = 'loading'; // this is only a safety belt, it should not happen |
|
141 |
} |
|
142 |
for(var i=0; i<fragments.length; i++) { |
|
143 |
var fragment = fragments[i]; |
|
144 |
fragment.innerHTML = '<h3>' + LOADING_MSG + ' ... <img src="data/loading.gif" /></h3>'; |
|
3784
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
145 |
// if cubicweb:loadurl is set, just pick the url et send it to loadxhtml |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
146 |
var url = getNodeAttribute(fragment, 'cubicweb:loadurl'); |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
147 |
if (url) { |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
148 |
jQuery(fragment).loadxhtml(url); |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
149 |
continue; |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
150 |
} |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
151 |
// else: rebuild full url by fetching cubicweb:rql, cubicweb:vid, etc. |
0 | 152 |
var rql = getNodeAttribute(fragment, 'cubicweb:rql'); |
3784
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
153 |
var items = getNodeAttribute(fragment, 'cubicweb:vid').split('&'); |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
154 |
var vid = items[0]; |
0 | 155 |
var extraparams = {}; |
3784
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
156 |
// case where vid='myvid¶m1=val1¶m2=val2': this is a deprecated abuse-case |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
157 |
if (items.length > 1) { |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
158 |
console.log("[3.5] you're using extraargs in cubicweb:vid attribute, this is deprecated, consider using loadurl instead"); |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
159 |
for (var j=1; j<items.length; j++) { |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
160 |
var keyvalue = items[j].split('='); |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
161 |
extraparams[keyvalue[0]] = keyvalue[1]; |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
162 |
} |
2465ef6aef5f
[javascript] handle cases where vid parameter is hijacked by parameter-injection
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3120
diff
changeset
|
163 |
} |
0 | 164 |
var actrql = getNodeAttribute(fragment, 'cubicweb:actualrql'); |
165 |
if (actrql) { extraparams['actualrql'] = actrql; } |
|
166 |
var fbvid = getNodeAttribute(fragment, 'cubicweb:fallbackvid'); |
|
167 |
if (fbvid) { extraparams['fallbackvid'] = fbvid; } |
|
168 |
replacePageChunk(fragment.id, rql, vid, extraparams); |
|
169 |
} |
|
170 |
} |
|
171 |
||
1512
c51ca5f49a78
fix insertion of head content on ajax queries
sylvain.thenault@logilab.fr
parents:
1498
diff
changeset
|
172 |
jQuery(document).ready(function() {loadDynamicFragments();}); |
0 | 173 |
|
174 |
//============= base AJAX functions to make remote calls =====================// |
|
175 |
||
176 |
function remoteCallFailed(err, req) { |
|
177 |
if (req.status == 500) { |
|
178 |
updateMessage(err); |
|
179 |
} else { |
|
180 |
updateMessage(_("an error occured while processing your request")); |
|
181 |
} |
|
182 |
} |
|
183 |
||
184 |
||
185 |
/* |
|
1419 | 186 |
* This function will call **synchronously** a remote method on the cubicweb server |
187 |
* @param fname: the function name to call (as exposed by the JSONController) |
|
188 |
* |
|
189 |
* additional arguments will be directly passed to the specified function |
|
0 | 190 |
* |
1419 | 191 |
* It looks at http headers to guess the response type. |
0 | 192 |
*/ |
1419 | 193 |
function remoteExec(fname /* ... */) { |
194 |
setProgressCursor(); |
|
195 |
var props = {'fname' : fname, 'pageid' : pageid, |
|
196 |
'arg': map(jQuery.toJSON, sliceList(arguments, 1))}; |
|
197 |
var result = jQuery.ajax({url: JSON_BASE_URL, data: props, async: false}).responseText; |
|
198 |
if (result) { |
|
199 |
result = evalJSON(result); |
|
200 |
} |
|
201 |
resetCursor(); |
|
202 |
return result; |
|
0 | 203 |
} |
204 |
||
205 |
/* |
|
1419 | 206 |
* This function will call **asynchronously** a remote method on the json |
207 |
* controller of the cubicweb http server |
|
208 |
* |
|
0 | 209 |
* @param fname: the function name to call (as exposed by the JSONController) |
1419 | 210 |
* |
0 | 211 |
* additional arguments will be directly passed to the specified function |
1419 | 212 |
* |
0 | 213 |
* It looks at http headers to guess the response type. |
214 |
*/ |
|
1563
b130c6cec8c2
loadJSON -> loadRemote, correctly handle json
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1512
diff
changeset
|
215 |
|
1419 | 216 |
function asyncRemoteExec(fname /* ... */) { |
1563
b130c6cec8c2
loadJSON -> loadRemote, correctly handle json
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1512
diff
changeset
|
217 |
setProgressCursor(); |
1419 | 218 |
var props = {'fname' : fname, 'pageid' : pageid, |
219 |
'arg': map(jQuery.toJSON, sliceList(arguments, 1))}; |
|
1563
b130c6cec8c2
loadJSON -> loadRemote, correctly handle json
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1512
diff
changeset
|
220 |
var deferred = loadRemote(JSON_BASE_URL, props, 'POST'); |
b130c6cec8c2
loadJSON -> loadRemote, correctly handle json
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1512
diff
changeset
|
221 |
deferred = deferred.addErrback(remoteCallFailed); |
b130c6cec8c2
loadJSON -> loadRemote, correctly handle json
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1512
diff
changeset
|
222 |
deferred = deferred.addErrback(resetCursor); |
b130c6cec8c2
loadJSON -> loadRemote, correctly handle json
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1512
diff
changeset
|
223 |
deferred = deferred.addCallback(resetCursor); |
b130c6cec8c2
loadJSON -> loadRemote, correctly handle json
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1512
diff
changeset
|
224 |
return deferred; |
0 | 225 |
} |
226 |
||
227 |
||
228 |
/* emulation of gettext's _ shortcut |
|
229 |
*/ |
|
230 |
function _(message) { |
|
1419 | 231 |
return remoteExec('i18n', [message])[0]; |
0 | 232 |
} |
233 |
||
234 |
function userCallback(cbname) { |
|
1419 | 235 |
asyncRemoteExec('user_callback', cbname); |
0 | 236 |
} |
237 |
||
238 |
function unloadPageData() { |
|
239 |
// NOTE: do not make async calls on unload if you want to avoid |
|
240 |
// strange bugs |
|
1419 | 241 |
remoteExec('unload_page_data'); |
0 | 242 |
} |
243 |
||
244 |
function openHash() { |
|
245 |
if (document.location.hash) { |
|
246 |
var nid = document.location.hash.replace('#', ''); |
|
247 |
var node = jQuery('#' + nid); |
|
248 |
if (node) { removeElementClass(node, "hidden"); } |
|
249 |
}; |
|
250 |
} |
|
251 |
jQuery(document).ready(openHash); |
|
252 |
||
253 |
function reloadComponent(compid, rql, registry, nodeid, extraargs) { |
|
254 |
registry = registry || 'components'; |
|
255 |
rql = rql || ''; |
|
256 |
nodeid = nodeid || (compid + 'Component'); |
|
257 |
extraargs = extraargs || {}; |
|
258 |
var node = getNode(nodeid); |
|
1419 | 259 |
var d = asyncRemoteExec('component', compid, rql, registry, extraargs); |
0 | 260 |
d.addCallback(function(result, req) { |
261 |
var domnode = getDomFromResponse(result); |
|
262 |
if (node) { |
|
263 |
// make sure the component is visible |
|
264 |
removeElementClass(node, "hidden"); |
|
265 |
swapDOM(node, domnode); |
|
2338
3f7c7fbae94e
call postAjaxLoad in reloadComponent; add corners only on reloaded elements
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
2257
diff
changeset
|
266 |
postAjaxLoad(domnode); |
0 | 267 |
} |
268 |
}); |
|
269 |
d.addCallback(resetCursor); |
|
270 |
d.addErrback(function(xxx) { |
|
271 |
updateMessage(_("an error occured")); |
|
272 |
log(xxx); |
|
273 |
}); |
|
274 |
return d; |
|
275 |
} |
|
276 |
||
277 |
/* XXX: HTML architecture of cubicweb boxes is a bit strange */ |
|
278 |
function reloadBox(boxid, rql) { |
|
225
b90904dc3069
[javascript] reloadBox: return deferred for further callback chaining
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
12
diff
changeset
|
279 |
return reloadComponent(boxid, rql, 'boxes', boxid); |
0 | 280 |
} |
281 |
||
282 |
function userCallbackThenUpdateUI(cbname, compid, rql, msg, registry, nodeid) { |
|
1419 | 283 |
var d = asyncRemoteExec('user_callback', cbname); |
0 | 284 |
d.addCallback(function() { |
285 |
reloadComponent(compid, rql, registry, nodeid); |
|
286 |
if (msg) { updateMessage(msg); } |
|
287 |
}); |
|
288 |
d.addCallback(resetCursor); |
|
289 |
d.addErrback(function(xxx) { |
|
290 |
updateMessage(_("an error occured")); |
|
291 |
log(xxx); |
|
292 |
return resetCursor(); |
|
293 |
}); |
|
294 |
} |
|
295 |
||
296 |
function userCallbackThenReloadPage(cbname, msg) { |
|
1419 | 297 |
var d = asyncRemoteExec('user_callback', cbname); |
0 | 298 |
d.addCallback(function() { |
299 |
window.location.reload(); |
|
300 |
if (msg) { updateMessage(msg); } |
|
301 |
}); |
|
302 |
d.addCallback(resetCursor); |
|
303 |
d.addErrback(function(xxx) { |
|
304 |
updateMessage(_("an error occured")); |
|
305 |
log(xxx); |
|
306 |
return resetCursor(); |
|
307 |
}); |
|
308 |
} |
|
309 |
||
310 |
/* |
|
311 |
* unregisters the python function registered on the server's side |
|
312 |
* while the page was generated. |
|
313 |
*/ |
|
314 |
function unregisterUserCallback(cbname) { |
|
1419 | 315 |
var d = asyncRemoteExec('unregister_user_callback', cbname); |
0 | 316 |
d.addCallback(function() {resetCursor();}); |
317 |
d.addErrback(function(xxx) { |
|
318 |
updateMessage(_("an error occured")); |
|
319 |
log(xxx); |
|
320 |
return resetCursor(); |
|
321 |
}); |
|
322 |
} |
|
323 |
||
324 |
||
325 |
/* executes an async query to the server and replaces a node's |
|
326 |
* content with the query result |
|
327 |
* |
|
328 |
* @param nodeId the placeholder node's id |
|
329 |
* @param rql the RQL query |
|
330 |
* @param vid the vid to apply to the RQL selection (default if not specified) |
|
331 |
* @param extraparmas table of additional query parameters |
|
332 |
*/ |
|
333 |
function replacePageChunk(nodeId, rql, vid, extraparams, /* ... */ swap, callback) { |
|
334 |
var params = null; |
|
335 |
if (callback) { |
|
336 |
params = {callback: callback}; |
|
337 |
} |
|
338 |
||
339 |
var node = jQuery('#' + nodeId)[0]; |
|
340 |
var props = {}; |
|
341 |
if (node) { |
|
342 |
props['rql'] = rql; |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1419
diff
changeset
|
343 |
props['fname'] = 'view'; |
0 | 344 |
props['pageid'] = pageid; |
345 |
if (vid) { props['vid'] = vid; } |
|
346 |
if (extraparams) { jQuery.extend(props, extraparams); } |
|
1419 | 347 |
// FIXME we need to do asURL(props) manually instead of |
0 | 348 |
// passing `props` directly to loadxml because replacePageChunk |
349 |
// is sometimes called (abusively) with some extra parameters in `vid` |
|
350 |
var mode = swap?'swap':'replace'; |
|
1419 | 351 |
var url = JSON_BASE_URL + asURL(props); |
0 | 352 |
jQuery(node).loadxhtml(url, params, 'get', mode); |
353 |
} else { |
|
354 |
log('Node', nodeId, 'not found'); |
|
355 |
} |
|
356 |
} |
|
357 |
||
3011 | 358 |
/* XXX deprecates? |
1801
672acc730ce5
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1563
diff
changeset
|
359 |
* fetches `url` and replaces `nodeid`'s content with the result |
672acc730ce5
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1563
diff
changeset
|
360 |
* @param replacemode how the replacement should be done (default is 'replace') |
672acc730ce5
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1563
diff
changeset
|
361 |
* Possible values are : |
672acc730ce5
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1563
diff
changeset
|
362 |
* - 'replace' to replace the node's content with the generated HTML |
672acc730ce5
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1563
diff
changeset
|
363 |
* - 'swap' to replace the node itself with the generated HTML |
672acc730ce5
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1563
diff
changeset
|
364 |
* - 'append' to append the generated HTML to the node's content |
672acc730ce5
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1563
diff
changeset
|
365 |
*/ |
672acc730ce5
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1563
diff
changeset
|
366 |
function loadxhtml(nodeid, url, /* ... */ replacemode) { |
672acc730ce5
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1563
diff
changeset
|
367 |
jQuery('#' + nodeid).loadxhtml(url, null, 'post', replacemode); |
672acc730ce5
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1563
diff
changeset
|
368 |
} |
672acc730ce5
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1563
diff
changeset
|
369 |
|
0 | 370 |
/* XXX: this function should go in edition.js but as for now, htmlReplace |
371 |
* references it. |
|
372 |
* |
|
373 |
* replace all textareas with fckeditors. |
|
374 |
*/ |
|
375 |
function buildWysiwygEditors(parent) { |
|
376 |
jQuery('textarea').each(function () { |
|
3060
ea967a4f6ccb
avoid installing editor n times for n ajax loads
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3011
diff
changeset
|
377 |
if (this.getAttribute('cubicweb:type') == 'wysiwyg') { |
ea967a4f6ccb
avoid installing editor n times for n ajax loads
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3011
diff
changeset
|
378 |
// mark editor as instanciated, we may be called a number of times |
ea967a4f6ccb
avoid installing editor n times for n ajax loads
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3011
diff
changeset
|
379 |
// (see postAjaxLoad) |
ea967a4f6ccb
avoid installing editor n times for n ajax loads
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3011
diff
changeset
|
380 |
this.setAttribute('cubicweb:type', 'fckeditor'); |
0 | 381 |
if (typeof FCKeditor != "undefined") { |
382 |
var fck = new FCKeditor(this.id); |
|
383 |
fck.Config['CustomConfigurationsPath'] = fckconfigpath; |
|
384 |
fck.Config['DefaultLanguage'] = fcklang; |
|
385 |
fck.BasePath = "fckeditor/"; |
|
386 |
fck.ReplaceTextarea(); |
|
387 |
} else { |
|
388 |
log('fckeditor could not be found.'); |
|
389 |
} |
|
390 |
} |
|
391 |
}); |
|
392 |
} |
|
393 |
||
394 |
jQuery(document).ready(buildWysiwygEditors); |
|
395 |
||
396 |
||
1419 | 397 |
/* |
398 |
* takes a list of DOM nodes and removes all empty text nodes |
|
399 |
*/ |
|
400 |
function stripEmptyTextNodes(nodelist) { |
|
401 |
var stripped = []; |
|
402 |
for (var i=0; i < nodelist.length; i++) { |
|
403 |
var node = nodelist[i]; |
|
404 |
if (isTextNode(node) && !node.textContent.strip()) { |
|
405 |
continue; |
|
406 |
} else { |
|
407 |
stripped.push(node); |
|
408 |
} |
|
409 |
} |
|
410 |
return stripped; |
|
411 |
} |
|
412 |
||
3104 | 413 |
/* convenience function that returns a DOM node based on req's result. |
414 |
* XXX clarify the need to clone |
|
415 |
* */ |
|
0 | 416 |
function getDomFromResponse(response) { |
417 |
if (typeof(response) == 'string') { |
|
3073
09c6fe0db381
do postprocessing as in the xhtml case fix #345293
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3060
diff
changeset
|
418 |
var doc = html2dom(response); |
09c6fe0db381
do postprocessing as in the xhtml case fix #345293
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3060
diff
changeset
|
419 |
} else { |
09c6fe0db381
do postprocessing as in the xhtml case fix #345293
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3060
diff
changeset
|
420 |
var doc = response.documentElement; |
0 | 421 |
} |
422 |
var children = doc.childNodes; |
|
423 |
if (!children.length) { |
|
424 |
// no child (error cases) => return the whole document |
|
3102
f2c4da6b008d
use node cloning method that works with IE (6,7)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3073
diff
changeset
|
425 |
return jQuery(doc).clone().context; |
0 | 426 |
} |
1419 | 427 |
children = stripEmptyTextNodes(children); |
0 | 428 |
if (children.length == 1) { |
429 |
// only one child => return it |
|
3102
f2c4da6b008d
use node cloning method that works with IE (6,7)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3073
diff
changeset
|
430 |
return jQuery(children[0]).clone().context; |
0 | 431 |
} |
432 |
// several children => wrap them in a single node and return the wrap |
|
3102
f2c4da6b008d
use node cloning method that works with IE (6,7)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3073
diff
changeset
|
433 |
return DIV(null, map(function(node) { |
f2c4da6b008d
use node cloning method that works with IE (6,7)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3073
diff
changeset
|
434 |
return jQuery(node).clone().context; |
f2c4da6b008d
use node cloning method that works with IE (6,7)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3073
diff
changeset
|
435 |
}, |
f2c4da6b008d
use node cloning method that works with IE (6,7)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3073
diff
changeset
|
436 |
children)); |
0 | 437 |
} |
438 |
||
439 |
function postJSON(url, data, callback) { |
|
440 |
return jQuery.post(url, data, callback, 'json'); |
|
441 |
} |
|
442 |
||
443 |
function getJSON(url, data, callback){ |
|
444 |
return jQuery.get(url, data, callback, 'json'); |
|
445 |
} |
|
446 |
||
447 |
CubicWeb.provide('ajax.js'); |