mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
///<amd-module name="main" />
|
|
|
|
import { makeEnv } from "./env";
|
|
import { loadMenus, loadTemplates } from "./loaders";
|
|
import { actionRegistry } from "./registries";
|
|
import { rpc } from "./services/ajax";
|
|
import { Router } from "./services/router";
|
|
import { Store } from "./store/store";
|
|
import { Root } from "./widgets/root";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Web Client Bootstrapping
|
|
//------------------------------------------------------------------------------
|
|
|
|
document.addEventListener("DOMContentLoaded", async function() {
|
|
const services = {
|
|
rpc,
|
|
router: new Router()
|
|
};
|
|
|
|
const templates = await loadTemplates();
|
|
const menuInfo = loadMenus();
|
|
const store = new Store(services, menuInfo, actionRegistry);
|
|
const env = makeEnv(store, templates);
|
|
|
|
// Creating root widget
|
|
const rootWidget = new Root(env, store);
|
|
await rootWidget.mount(document.body);
|
|
|
|
// For debugging purpose, we keep a reference to the root widget in odoo
|
|
(<any>window).odoo.rootWidget = rootWidget;
|
|
});
|