From 64b597f0b615dfcf964450bac4a6506704a2b931 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Wed, 23 Mar 2022 18:34:23 +1100 Subject: Make options propagate from TileTree --- src/components/TileTree.vue | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) (limited to 'src/components/TileTree.vue') diff --git a/src/components/TileTree.vue b/src/components/TileTree.vue index d36949e..f007935 100644 --- a/src/components/TileTree.vue +++ b/src/components/TileTree.vue @@ -31,8 +31,26 @@ const defaultLayoutOptions: LayoutOptions = { sweptNodesPrio: 'pow-2/3', //'linear' | 'sqrt' | 'pow-2/3' sweepingToParent: true, }; -const defaultOtherOptions = { +const defaultComponentOptions = { + // For leaf/non_leaf tile and separated-parent components + borderRadius: 5, //px + shadowNormal: '0 0 2px black', + shadowHighlight: '0 0 1px 2px greenyellow', + // For leaf and separated-parent components + imgTilePadding: 4, //px + imgTileFontSz: 15, //px + imgTileColor: '#fafaf9', + expandableImgTileColor: 'greenyellow', //yellow, greenyellow, turquoise, + // For non-leaf tile-group components + nonLeafBgColors: ['#44403c', '#57534e'], //tiles at depth N use the Nth color, repeating from the start as needed + nonLeafHeaderFontSz: 15, //px + nonLeafHeaderColor: '#fafaf9', + nonLeafHeaderBgColor: '#1c1917', + // Timing related transitionDuration: 300, //ms + dblClickWait: 200, //ms +}; +const defaultOwnOptions = { tileAreaOffset: 5, //px (space between root tile and display boundary) parentBarSz: defaultLayoutOptions.minTileSz * 2, //px (breadth of separated-parents area) }; @@ -50,7 +68,8 @@ export default defineComponent({ layoutTree: layoutTree, activeRoot: layoutTree, layoutOptions: {...defaultLayoutOptions}, - ...defaultOtherOptions, + componentOptions: {...defaultComponentOptions}, + ...defaultOwnOptions, } }, computed: { @@ -171,11 +190,11 @@ export default defineComponent({ -- cgit v1.2.3