1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<script lang="ts">
import {defineComponent} from 'vue';
import Tile from './Tile.vue';
import {TolNode, LayoutTree, LayoutNode} from '../lib';
import type {LayoutOptions} from '../lib';
//regarding importing a file f1.ts:
//using 'import f1.ts' makes vue-tsc complain, and 'import f1.js' makes vite complain
//using 'import f1' might cause problems with build systems other than vite
import tol from '../tol.json';
function preprocessTol(tree: any): void {
if (!tree.children){
tree.children = [];
} else {
tree.children.forEach(preprocessTol);
}
}
preprocessTol(tol);
let defaultLayoutOptions: LayoutOptions = {
tileSpacing: 5,
headerSz: 20,
minTileSz: 50,
maxTileSz: 200,
layoutType: 'sweep', //'sqr' | 'rect' | 'sweep'
rectMode: 'auto', //'horz' | 'vert' | 'linear' | 'auto'
rectSpaceShifting: true,
sweepMode: 'left', //'left' | 'top' | 'shorter' | 'auto'
sweepingToParent: true,
};
let defaultOtherOptions = {
transitionDuration: 300,
};
export default defineComponent({
data(){
return {
layoutOptions: defaultLayoutOptions,
otherOptions: defaultOtherOptions,
layoutTree: new LayoutTree(tol as TolNode, 0, defaultLayoutOptions),
width: document.documentElement.clientWidth,
height: document.documentElement.clientHeight,
resizeThrottled: false,
}
},
methods: {
onResize(){
if (!this.resizeThrottled){
this.width = document.documentElement.clientWidth;
this.height = document.documentElement.clientHeight;
if (!this.layoutTree.tryLayout([0,0], [this.width,this.height]))
console.log('Unable to layout tree');
//prevent re-triggering until after a delay
this.resizeThrottled = true;
setTimeout(() => {this.resizeThrottled = false;}, 100);
}
},
onInnerTileClicked(node: LayoutNode){
if (node.tolNode.children.length == 0){
console.log('Tile-to-expand has no children');
return;
}
if (!this.layoutTree.tryLayoutOnExpand([0,0], [this.width,this.height], node))
console.log('Unable to layout tree');
},
onInnerHeaderClicked(node: LayoutNode){
if (!this.layoutTree.tryLayoutOnCollapse([0,0], [this.width,this.height], node))
console.log('Unable to layout tree');
},
},
created(){
window.addEventListener('resize', this.onResize);
if (!this.layoutTree.tryLayout([0,0], [this.width,this.height]))
console.log('Unable to layout tree');
},
unmounted(){
window.removeEventListener('resize', this.onResize);
},
components: {
Tile
}
})
</script>
<template>
<div class="h-[100vh]">
<tile :layoutNode="layoutTree.root"
:headerSz="layoutOptions.headerSz" :tileSpacing="layoutOptions.tileSpacing"
:transitionDuration="otherOptions.transitionDuration" :center="[width,height]"
@tile-clicked="onInnerTileClicked" @header-clicked="onInnerHeaderClicked"></tile>
</div>
</template>
|