Add initialization view

This commit is contained in:
Daniel Gasienica 2018-03-22 11:52:52 -04:00
parent 1c4b7eb01c
commit add19aa732
3 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,33 @@
/* eslint-env browser */
/* global i18n: false */
const OPTIMIZATION_MESSAGE_DISPLAY_THRESHOLD = 2000; // milliseconds
// type Canceler = () => Eff Unit
//
// setMessage :: Unit -> Eff (dom :: DOM) Canceler
const setMessage = () => {
const message = document.querySelector('.app-loading-screen .message');
if (!message) {
return () => {};
}
message.innerText = i18n('loading');
const optimizingMessageTimeoutId = setTimeout(() => {
const innerMessage = document.querySelector('.app-loading-screen .message');
if (!innerMessage) {
return;
}
innerMessage.innerText = i18n('optimizingApplication');
}, OPTIMIZATION_MESSAGE_DISPLAY_THRESHOLD);
return () => {
clearTimeout(optimizingMessageTimeoutId);
};
};
module.exports = {
setMessage,
};