42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
/*
|
|
* https://github.com/morethanwords/tweb
|
|
* Copyright (C) 2019-2021 Eduard Kuzmenko
|
|
* https://github.com/morethanwords/tweb/blob/master/LICENSE
|
|
*/
|
|
|
|
import pagesManager from "./pagesManager";
|
|
|
|
export default class Page {
|
|
public pageEl: HTMLDivElement;
|
|
private installed = false;
|
|
|
|
constructor(className: string, public isAuthPage: boolean, private onFirstMount?: (...args: any[]) => Promise<any> | void, private onMount?: (...args: any[]) => void, public onShown?: () => void) {
|
|
this.pageEl = document.body.querySelector('.' + className) as HTMLDivElement;
|
|
}
|
|
|
|
public async mount(...args: any[]) {
|
|
//this.pageEl.style.display = '';
|
|
|
|
if(this.onMount) {
|
|
this.onMount(...args);
|
|
}
|
|
|
|
if(!this.installed) {
|
|
if(this.onFirstMount) {
|
|
try {
|
|
const res = this.onFirstMount(...args);
|
|
if(res instanceof Promise) {
|
|
await res;
|
|
}
|
|
} catch(err) {
|
|
console.error('PAGE MOUNT ERROR:', err);
|
|
}
|
|
}
|
|
|
|
this.installed = true;
|
|
}
|
|
|
|
pagesManager.setPage(this);
|
|
}
|
|
}
|