From 8cdcfb61bda1f9a2513d40240ae5f2a485311534 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Wed, 23 Mar 2022 21:01:04 +1100 Subject: Make parent-bar-tile clicks restore hidden parents --- src/components/TileTree.vue | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'src/components/TileTree.vue') diff --git a/src/components/TileTree.vue b/src/components/TileTree.vue index 8ba5048..ed7eb87 100644 --- a/src/components/TileTree.vue +++ b/src/components/TileTree.vue @@ -78,7 +78,7 @@ export default defineComponent({ wideArea(): boolean{ return this.width >= this.height; }, - separatedParents(): LayoutNode[] | null { + sepdParents(): LayoutNode[] | null { if (this.activeRoot == this.layoutTree){ return null; } @@ -92,7 +92,7 @@ export default defineComponent({ }, tileAreaPos(){ let pos = [this.tileAreaOffset, this.tileAreaOffset] as [number, number]; - if (this.separatedParents != null){ + if (this.sepdParents != null){ if (this.wideArea){ pos[0] += this.parentBarSz; } else { @@ -106,7 +106,7 @@ export default defineComponent({ this.width - this.tileAreaOffset*2, this.height - this.tileAreaOffset*2 ] as [number, number]; - if (this.separatedParents != null){ + if (this.sepdParents != null){ if (this.wideArea){ dims[0] -= this.parentBarSz; } else { @@ -184,6 +184,11 @@ export default defineComponent({ this.activeRoot = layoutNode; tryLayout(layoutNode, this.tileAreaPos, this.tileAreaDims, this.layoutOptions, true); }, + onSepdParentClicked(layoutNode: LayoutNode){ + LayoutNode.showDownward(layoutNode); + this.activeRoot = layoutNode; + tryLayout(layoutNode, this.tileAreaPos, this.tileAreaDims, this.layoutOptions, true); + }, // For preventing double-clicks from highlighting text onMouseDown(evt: UIEvent){ if (evt.detail == 2){ @@ -211,8 +216,9 @@ export default defineComponent({ :headerSz="layoutOptions.headerSz" :tileSpacing="layoutOptions.tileSpacing" :options="componentOptions" @leaf-clicked="onInnerLeafClicked" @header-clicked="onInnerHeaderClicked" @leaf-dbl-clicked="onInnerLeafDblClicked" @header-dbl-clicked="onInnerHeaderDblClicked"/> - + -- cgit v1.2.3