apostrophe
Version:
The Apostrophe Content Management System.
41 lines (40 loc) • 1.09 kB
JavaScript
(function() {
// Note: this script will not appear in the page in production.
//
// eslint-disable-next-line no-var
var reloadId;
// eslint-disable-next-line no-var
var fast = '1';
check();
function check() {
if (!window.apos) {
// Wait for the js bundle to evaluate
return setTimeout(check, 100);
}
if (document.visibilityState === 'hidden') {
// No requests when tab is not active
setTimeout(check, 5000);
} else {
window.apos.http.post(document.querySelector('[data-apos-refresh-on-restart]').getAttribute('data-apos-refresh-on-restart'), {
qs: {
fast
}
}, function(err, result) {
if (err) {
fast = '1';
setTimeout(check, 1000);
return;
}
fast = '';
if (!reloadId) {
reloadId = result;
} else if (result !== reloadId) {
console.log('Apostrophe restarted, refreshing the page');
window.location.reload();
return;
}
setTimeout(check, 1000);
});
}
}
})();