mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
134 lines
3.3 KiB
TypeScript
134 lines
3.3 KiB
TypeScript
import { html, render, TemplateResult } from 'lit-html';
|
|
import { AppLoaderElement, AppMainElement, AppModalElement, AppRootElement } from 'components/';
|
|
import { AppService, RouterService } from 'core/services';
|
|
import { AuthStore } from 'core/store';
|
|
import { closest } from 'core/utils';
|
|
|
|
class BaseElement extends HTMLElement {
|
|
@closest appMain: AppMainElement;
|
|
private _appMain: AppMainElement;
|
|
public loader: Loader;
|
|
private elementDisconnectCallbacks: Array<Function> = [];
|
|
constructor() {
|
|
super();
|
|
this.connectedCallback = this.connectedCallback.bind(this);
|
|
this.disconnectedCallback = this.disconnectedCallback.bind(this);
|
|
this.loader = new Loader(this);
|
|
}
|
|
|
|
public get routerService(): RouterService {
|
|
return this.appMain?.routerService;
|
|
}
|
|
|
|
public get authStore(): AuthStore {
|
|
return this.appMain?.authStore;
|
|
}
|
|
|
|
public get appService(): AppService {
|
|
return this.appMain?.appService;
|
|
}
|
|
|
|
public get appModal(): AppModalElement {
|
|
return this.appMain?.appModal;
|
|
}
|
|
|
|
public get mainRoot(): AppRootElement {
|
|
return this.appMain?.mainRoot;
|
|
}
|
|
public get appLoader(): AppLoaderElement {
|
|
return this.appMain?.appLoader;
|
|
}
|
|
|
|
public get isAuth(): boolean {
|
|
return this.appMain?.isAuth();
|
|
}
|
|
|
|
public bindEvents = (attrName): void => {
|
|
const _elems = this.querySelectorAll(`[${attrName}]`);
|
|
_elems?.forEach((el) => {
|
|
for (const action of (el.getAttribute(attrName) || '').trim().split(/\s+/)) {
|
|
const eventSep = action.lastIndexOf(':');
|
|
const methodSep = action.lastIndexOf('#');
|
|
const tag = action.slice(eventSep + 1, methodSep);
|
|
|
|
const type = action.slice(0, eventSep);
|
|
const method = action.slice(methodSep + 1);
|
|
|
|
if (tag.toUpperCase() === this.tagName) {
|
|
el.addEventListener(type, this?.[method]);
|
|
const _callback = () => el.removeEventListener(type, this?.[method]);
|
|
this.elementDisconnectCallbacks.push(_callback);
|
|
} else {
|
|
this.childNodes.forEach((child: HTMLElement) => {
|
|
if (child.tagName == tag.toUpperCase()) {
|
|
el.addEventListener(type, child?.[method]);
|
|
const _callback = () => el.removeEventListener(type, child?.[method]);
|
|
this.elementDisconnectCallbacks.push(_callback);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
render = (): TemplateResult | Temp => {
|
|
return html``;
|
|
};
|
|
|
|
updateCallback = (): void => {};
|
|
|
|
update = (): void => {
|
|
render(this.render(), this);
|
|
this.bindEvents('data-action');
|
|
this.bindEvents('app-action');
|
|
this.updateCallback();
|
|
};
|
|
|
|
connectedCallback(): void {
|
|
this.elementConnected();
|
|
this._appMain = this.appMain;
|
|
}
|
|
|
|
disconnectedCallback(): void {
|
|
const { _appMain } = this;
|
|
this.elementDisconnected(_appMain);
|
|
if (Array.isArray(this.elementDisconnectCallbacks)) {
|
|
this.elementDisconnectCallbacks.forEach((callback: Function) => {
|
|
if (typeof callback == 'function') {
|
|
callback(_appMain);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
elementConnected = (): void => {
|
|
this.update();
|
|
};
|
|
|
|
elementDisconnected = (appMain: AppMainElement): void => {};
|
|
}
|
|
|
|
export default BaseElement;
|
|
|
|
class Loader {
|
|
private _loading: number = 0;
|
|
|
|
constructor(private _main: BaseElement) {}
|
|
|
|
public start = () => {
|
|
this._loading++;
|
|
this._main?.update?.();
|
|
};
|
|
|
|
public stop = () => {
|
|
if (this._loading > 0) {
|
|
this._loading--;
|
|
this._main?.update?.();
|
|
}
|
|
};
|
|
|
|
public get loading() {
|
|
return this._loading > 0;
|
|
}
|
|
}
|