Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Bryan Kaperick
erp5
Commits
9e95412f
Commit
9e95412f
authored
May 14, 2012
by
Ivan Tyagov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve gadget loading "ready" event.
parent
a1c54608
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
60 deletions
+57
-60
bt5/erp5_jquery_plugin_renderjs/PathTemplateItem/portal_skins/erp5_jquery/jquery/plugin/renderjs/renderjs.js.xml
..._skins/erp5_jquery/jquery/plugin/renderjs/renderjs.js.xml
+56
-59
bt5/erp5_jquery_plugin_renderjs/bt/revision
bt5/erp5_jquery_plugin_renderjs/bt/revision
+1
-1
No files found.
bt5/erp5_jquery_plugin_renderjs/PathTemplateItem/portal_skins/erp5_jquery/jquery/plugin/renderjs/renderjs.js.xml
View file @
9e95412f
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
</item>
</item>
<item>
<item>
<key>
<string>
_EtagSupport__etag
</string>
</key>
<key>
<string>
_EtagSupport__etag
</string>
</key>
<value>
<string>
ts369
78119.57
</string>
</value>
<value>
<string>
ts369
97821.03
</string>
</value>
</item>
</item>
<item>
<item>
<key>
<string>
__name__
</string>
</key>
<key>
<string>
__name__
</string>
</key>
...
@@ -579,11 +579,12 @@ var GadgetIndex = {\n
...
@@ -579,11 +579,12 @@ var GadgetIndex = {\n
*/\n
*/\n
var InteractionGadget = {\n
var InteractionGadget = {\n
\n
\n
bind: function (dom){\n
bind: function (
gadget_
dom){\n
/*\n
/*\n
* Bind event between gadgets.\n
* Bind event between gadgets.\n
*/\n
*/\n
dom.find("connect").each(function (key, value){\n
gadget_id = gadget_dom.attr("id");\n
gadget_dom.find("connect").each(function (key, value){\n
source = $(value).attr("source").split(".");\n
source = $(value).attr("source").split(".");\n
source_gadget_id = source[0];\n
source_gadget_id = source[0];\n
source_method_id = source[1];\n
source_method_id = source[1];\n
...
@@ -650,67 +651,63 @@ var RenderJs = {\n
...
@@ -650,67 +651,63 @@ var RenderJs = {\n
url = gadget.attr("gadget");\n
url = gadget.attr("gadget");\n
gadget_id = gadget.attr("id");\n
gadget_id = gadget.attr("id");\n
\n
\n
// XXX: How to know how long a form should be cached locally\n
// i.e. what happens if it changes at server side ?\n
\n
// register gadget in javascript namespace\n
// register gadget in javascript namespace\n
gadget_js = new Gadget(gadget_id, gadget);\n
gadget_js = new Gadget(gadget_id, gadget);\n
GadgetIndex.registerGadget(gadget_js);\n
GadgetIndex.registerGadget(gadget_js);\n
if (url===undefined || url===""){\n
// gadget is an inline one so no need to load it from network\n
gadget_js.setReady();\n
RenderJs.checkAndTriggerReady(); \n
return;\n
}\n
\n
\n
// handle caching
\n
if (url!==undefined
&&
url!==""){
\n
gadget_property = gadget.attr("gadget:property");\n
gadget_property = gadget.attr("gadget:property");\n
\n
cacheable = false;
\n
cacheable = false;
\n
if (gadget_property!==undefined) {
\n
if (gadget_property!==undefined) {
\n
gadget_property = $.parseJSON(gadget_property);
\n
gadget_property = $.parseJSON(gadget_property
);\n
cacheable = Boolean(gadget_property.cacheable
);\n
cacheable = Boolean(gadget_property.cacheable);
\n
}
\n
}
\n
//cacheable = false ; // to develop faster
\n
//cacheable = false ; // to develop faster
\n
if (cacheable) {
\n
if (cacheable) {
\n
// get from cache if possible, use last part from URL as cache_key
\n
// get from cache if possible, use last part from URL as cache_key
\n
cache_id = gadget_property.cache_id;
\n
cache_id = gadget_property.cache_id
;\n
app_cache = Cache.get(cache_id, undefined)
;\n
app_cache = Cache.get(cache_id, undefined);
\n
if(app_cache===undefined || app_cache===null){
\n
if(app_cache===undefined || app_cache===null){
\n
// not in cache so we pull from network and cache
\n
// not in cache so we pull from network and cache
\n
//console.log("not in cache: " + cache_id + " " + url);
\n
//console.log("not in cache: " + cache_id + " " + url);
\n
$.ajax({url:url,
\n
$.ajax({url:url
,\n
yourCustomData: {"gadget_id": gadget_id, "cache_id": cache_id}
,\n
yourCustomData: {"gadget_id": gadget_id, "cache_id": cache_id},
\n
success: function (data) {
\n
success: function (data) {
\n
cache_id = this.yourCustomData.cache_id;
\n
cache_id = this.yourCustomData.cache
_id;\n
gadget_id = this.yourCustomData.gadget
_id;\n
gadget_id = this.yourCustomData.gadget_id
;\n
//console.log("set in cache: " + cache_id)
;\n
//console.log("set in cache: " + cache_id
);\n
Cache.set(cache_id, data
);\n
Cache.set(cache_id, data
);\n
GadgetIndex.getGadgetById(gadget_id).setReady(
);\n
GadgetIndex.getGadgetById(gadget_id).setReady(
);\n
RenderJs.updateAndRecurse(gadget, data
);\n
RenderJs.updateAndRecurse(gadget, data
);\n
RenderJs.checkAndTriggerReady(
);\n
RenderJs.checkAndTriggerReady();
\n
}});
\n
}});
\n
}
\n
}
\n
else {
\n
else {
\n
// get from cache
\n
// get from cache
\n
data = app_cache;
\n
data = app_cache
;\n
gadget_js.setReady()
;\n
gadget_js.setReady(
);\n
this.updateAndRecurse(gadget, data
);\n
this.updateAndRecurse(gadget, data
);\n
this.checkAndTriggerReady(
);\n
this.checkAndTriggerReady();
\n
}
\n
}\n
}\n
else {\n
// not to be cached\n
//console.log("Not to be cached " + url + gadget_id);\n
$.ajax({url:url,\n
yourCustomData: {"gadget_id": gadget_id},\n
success: function (data) {\n
gadget_id = this.yourCustomData.gadget_id;\n
GadgetIndex.getGadgetById(gadget_id).setReady();\n
RenderJs.updateAndRecurse(gadget, data);\n
RenderJs.checkAndTriggerReady();\n
}});\n
}\n
}\n
}\n
else {\n
else {\n
// not to be cached\n
// gadget is an inline one so no need to load it from network\n
//console.log("Not to be cached " + url + gadget_id);\n
gadget_js.setReady();\n
$.ajax({url:url,\n
RenderJs.checkAndTriggerReady();\n
yourCustomData: {"gadget_id": gadget_id},\n
}\n
success: function (data) {\n
gadget_id = this.yourCustomData.gadget_id;\n
GadgetIndex.getGadgetById(gadget_id).setReady();\n
RenderJs.updateAndRecurse(gadget, data);\n
RenderJs.checkAndTriggerReady();\n
}});\n
}\n
},\n
},\n
\n
\n
checkAndTriggerReady: function() {\n
checkAndTriggerReady: function() {\n
...
@@ -721,7 +718,7 @@ var RenderJs = {\n
...
@@ -721,7 +718,7 @@ var RenderJs = {\n
is_gadget_list_loaded = GadgetIndex.isGadgetListLoaded();\n
is_gadget_list_loaded = GadgetIndex.isGadgetListLoaded();\n
if (is_gadget_list_loaded){\n
if (is_gadget_list_loaded){\n
if (!is_ready) {\n
if (!is_ready) {\n
//
console.log("trigger");\n
console.log("trigger");\n
GadgetIndex.getRootGadget().getDom().trigger("ready");\n
GadgetIndex.getRootGadget().getDom().trigger("ready");\n
}\n
}\n
is_ready = true;\n
is_ready = true;\n
...
@@ -765,7 +762,7 @@ var RenderJs = {\n
...
@@ -765,7 +762,7 @@ var RenderJs = {\n
</item>
</item>
<item>
<item>
<key>
<string>
size
</string>
</key>
<key>
<string>
size
</string>
</key>
<value>
<int>
25
312
</int>
</value>
<value>
<int>
25
230
</int>
</value>
</item>
</item>
<item>
<item>
<key>
<string>
title
</string>
</key>
<key>
<string>
title
</string>
</key>
...
...
bt5/erp5_jquery_plugin_renderjs/bt/revision
View file @
9e95412f
11
12
\ No newline at end of file
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment