basic support for custom widgets

This commit is contained in:
zadam
2020-03-16 21:16:09 +01:00
parent 8ae78a9e23
commit 173030e02e
14 changed files with 99 additions and 22 deletions

View File

@@ -1,4 +1,3 @@
import server from "./server.js";
import treeCache from "./tree_cache.js";
import bundleService from "./bundle.js";
import DialogCommandExecutor from "./dialog_command_executor.js";
@@ -18,10 +17,10 @@ class AppContext extends Component {
}
async start() {
options.load(await server.get('options'));
this.showWidgets();
await Promise.all([treeCache.initializedPromise, options.initializedPromise]);
this.tabManager.loadTabs();
setTimeout(() => bundleService.executeStartupBundles(), 2000);