From 98629c3daeca9aab8f57561012463d4ed8636e43 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Fri, 27 May 2022 20:52:33 +1000 Subject: Prevent first root tile transition Avoids having it move in from top-left when tree data is loaded --- src/App.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/App.vue') diff --git a/src/App.vue b/src/App.vue index e9db4c9..73671d5 100644 --- a/src/App.vue +++ b/src/App.vue @@ -97,6 +97,7 @@ const defaultUiOpts = { export default defineComponent({ data(){ let layoutTree = initLayoutTree(initialTolMap, ROOT_NAME, 0); + layoutTree.hidden = true; return { tolMap: initialTolMap, layoutTree: layoutTree, @@ -127,6 +128,7 @@ export default defineComponent({ tileAreaDims: [0, 0] as [number, number], pendingResizeHdlr: 0, // Set to a setTimeout() value // Other + justInitialised: false, excessTolNodeThreshold: 1000, // Threshold where excess tolMap entries are removed (done on tile collapse) }; }, @@ -619,7 +621,11 @@ export default defineComponent({ this.layoutTree = initLayoutTree(this.tolMap, this.layoutTree.name, 0); this.activeRoot = this.layoutTree; this.layoutMap = initLayoutMap(this.layoutTree); - this.updateAreaDims().then(() => this.relayoutWithCollapse()); + this.updateAreaDims().then(() => { + this.relayoutWithCollapse(); + this.justInitialised = true; + setTimeout(() => {this.justInitialised = false;}, this.uiOpts.tileChgDuration); + }); }) .catch(error => { console.log('ERROR loading initial tolnode data', error); @@ -733,7 +739,7 @@ export default defineComponent({ @detached-ancestor-click="onDetachedAncestorClick" @info-icon-click="onInfoIconClick"/>
-- cgit v1.2.3