2019-02-05 16:04:02 +01:00
|
|
|
import { debounce } from "../core/utils";
|
2019-02-19 20:47:21 +01:00
|
|
|
import { Env } from "../env";
|
2019-02-27 13:48:36 +01:00
|
|
|
import { State, Store } from "../store/store";
|
2019-02-02 16:51:24 +01:00
|
|
|
import { HomeMenu } from "./home_menu";
|
|
|
|
|
import { Navbar } from "./navbar";
|
|
|
|
|
import { Notification } from "./notification";
|
2019-02-19 09:33:09 +01:00
|
|
|
import { Widget } from "./widget";
|
2019-03-04 12:52:14 +01:00
|
|
|
import { Action } from "../store/action_manager_mixin";
|
2019-01-31 10:55:41 +01:00
|
|
|
|
2019-01-31 13:19:30 +01:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
// Root Widget
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
2019-02-19 20:47:21 +01:00
|
|
|
export class Root extends Widget<Store, State> {
|
2019-02-03 14:07:25 +01:00
|
|
|
template = "web.web_client";
|
2019-03-04 12:52:14 +01:00
|
|
|
widgets = { Navbar, HomeMenu };
|
2019-01-22 10:38:44 +01:00
|
|
|
|
2019-02-18 11:51:01 +01:00
|
|
|
notifications: { [id: number]: Notification } = {};
|
2019-02-19 20:47:21 +01:00
|
|
|
store: Store;
|
2019-02-18 11:51:01 +01:00
|
|
|
|
2019-02-19 20:47:21 +01:00
|
|
|
constructor(env: Env, store: Store) {
|
|
|
|
|
super(env, store);
|
|
|
|
|
this.store = store;
|
|
|
|
|
this.state = store.state;
|
2019-02-04 13:23:41 +01:00
|
|
|
}
|
2019-01-22 10:38:44 +01:00
|
|
|
mounted() {
|
2019-02-19 20:47:21 +01:00
|
|
|
this.store.on("state_updated", this, newState => {
|
|
|
|
|
this.updateState(newState);
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-04 13:23:41 +01:00
|
|
|
// notifications
|
2019-02-19 20:47:21 +01:00
|
|
|
this.store.on("notification_added", this, notif => {
|
2019-02-18 11:51:01 +01:00
|
|
|
const notification = new Notification(this, notif);
|
|
|
|
|
this.notifications[notif.id] = notification;
|
|
|
|
|
notification.mount(<any>this.refs.notification_container);
|
|
|
|
|
});
|
2019-02-19 20:47:21 +01:00
|
|
|
this.store.on("notification_closed", this, id => {
|
2019-02-18 11:51:01 +01:00
|
|
|
this.notifications[id].destroy();
|
|
|
|
|
delete this.notifications[id];
|
|
|
|
|
});
|
2019-02-04 13:23:41 +01:00
|
|
|
|
2019-02-06 21:20:26 +01:00
|
|
|
// loading indicator
|
2019-02-19 20:47:21 +01:00
|
|
|
this.store.on("rpc_status", this, status => {
|
2019-02-17 14:36:40 +01:00
|
|
|
const method = status === "loading" ? "remove" : "add";
|
|
|
|
|
(<any>this.refs.loading_indicator).classList[method]("d-none");
|
2019-02-06 21:20:26 +01:00
|
|
|
});
|
|
|
|
|
|
2019-02-05 16:04:02 +01:00
|
|
|
// adding reactiveness to mobile/non mobile
|
|
|
|
|
window.addEventListener("resize", <any>debounce(() => {
|
|
|
|
|
const isMobile = window.innerWidth <= 768;
|
|
|
|
|
if (isMobile !== this.env.isMobile) {
|
|
|
|
|
this.env.isMobile = isMobile;
|
|
|
|
|
this.render();
|
|
|
|
|
}
|
|
|
|
|
}, 50));
|
2019-03-04 12:52:14 +01:00
|
|
|
|
|
|
|
|
// actions
|
|
|
|
|
this.store.on("update_action", this, this.applyAction);
|
|
|
|
|
if (this.store.lastAction) {
|
|
|
|
|
this.applyAction(this.store.lastAction);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async applyAction(action: Action) {
|
|
|
|
|
const widget = await action.executor(this);
|
|
|
|
|
if (widget) {
|
|
|
|
|
// to do: call some public method of widget instead...
|
|
|
|
|
(<HTMLElement>this.refs.content).appendChild(widget.el!);
|
|
|
|
|
widget.__mount();
|
|
|
|
|
action.activate();
|
|
|
|
|
}
|
2019-02-04 13:23:41 +01:00
|
|
|
}
|
2019-01-22 10:38:44 +01:00
|
|
|
}
|