Telegram Web K with changes to work inside I2P
https://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
/* |
|
* 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); |
|
} |
|
}
|
|
|