mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-05-31 14:11:58 +05:30
Implemented strict mode for the project (broken tests, hundreds of @ts-ignore and new errors are included) [skip ci]
This commit is contained in:
committed by
SleepWalker
parent
10e8b77acf
commit
96049ad4ad
27
packages/app/services/loader.ts
Normal file
27
packages/app/services/loader.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
// On page initialization loader is already visible, so initial value is 1
|
||||
let stack = 1;
|
||||
|
||||
export function show(): void {
|
||||
if (++stack >= 0) {
|
||||
const loader = document.getElementById('loader');
|
||||
|
||||
if (!loader) {
|
||||
throw new Error('Can not find loader element');
|
||||
}
|
||||
|
||||
loader.classList.add('is-active');
|
||||
}
|
||||
}
|
||||
|
||||
export function hide(): void {
|
||||
if (--stack <= 0) {
|
||||
stack = 0;
|
||||
const loader = document.getElementById('loader');
|
||||
|
||||
if (!loader) {
|
||||
throw new Error('Can not find loader element');
|
||||
}
|
||||
|
||||
loader.classList.remove('is-active', 'is-first-launch');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user