Commit b8f5b98d authored by Romain Courteaud's avatar Romain Courteaud

XXX erp5_web_renderjs_ui: prototype offline status

parent 88c8a23c
......@@ -946,6 +946,26 @@
// Force calling main gadget render
render_timestamp: new Date().getTime()
})
.push(undefined, function (error) {
if (!navigator.onLine) {
return route(gadget, 'translation_gadget', 'translate',
['You are offline.'])
.push(function (message) {
return route(gadget, "notification", 'notify',
[{
"message": message,
"status": "error"
}]);
})
.push(function () {
return rJS.loopEventListener(window, 'online', false,
function backOnline() {
return location.reload();
});
});
}
throw error;
})
.push(undefined, function (error) {
return displayError(gadget, error);
});
......
......@@ -236,7 +236,7 @@
</item>
<item>
<key> <string>serial</string> </key>
<value> <string>1005.39881.44610.14899</string> </value>
<value> <string>993.37256.4522.58726</string> </value>
</item>
<item>
<key> <string>state</string> </key>
......@@ -256,7 +256,7 @@
</tuple>
<state>
<tuple>
<float>1673426576.41</float>
<float>1626860658.98</float>
<string>UTC</string>
</tuple>
</state>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment