Files
owl/web/static/src/ts/ui/root.ts
T

74 lines
2.2 KiB
TypeScript
Raw Normal View History

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";
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> {
template = "web.web_client";
widgets = { Navbar, HomeMenu };
notifications: { [id: number]: Notification } = {};
2019-02-19 20:47:21 +01:00
store: Store;
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
}
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 => {
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 => {
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 => {
const method = status === "loading" ? "remove" : "add";
(<any>this.refs.loading_indicator).classList[method]("d-none");
2019-02-06 21:20:26 +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));
// 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
}
}