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
|
<script>
import tol from './tol.json';
function addChildArrays(tree){
if (!tree.children){
tree.children = [];
} else {
tree.children.forEach(addChildArrays);
}
}
addChildArrays(tol);
import TileTree from "./components/TileTree.vue";
export default {
data() {
return {
tree: this.genTreeForTol(tol, 1), //allow for zero-level?
width: document.documentElement.clientWidth,
height: document.documentElement.clientHeight,
}
},
methods: {
onResize(){
this.width = document.documentElement.clientWidth;
this.height = document.documentElement.clientHeight;
},
genTreeForTol(tol, lvl){
if (lvl == 0){
return {tolNode: tol, children: [], tileCount: 1};
} else {
let childTrees = tol.children.map(e => this.genTreeForTol(e, lvl-1));
return {
tolNode: tol,
children: childTrees,
tileCount: (childTrees.length == 0) ? 1 : childTrees.map(e => e.tileCount).reduce((x,y) => x+y)
};
}
}
},
created(){
window.addEventListener('resize', this.onResize);
},
unmounted(){
window.removeEventListener('resize', this.onResize);
},
components: {
TileTree
}
}
</script>
<template>
<div class="h-[100vh]">
<tile-tree :tree="tree" :x="0" :y="0" :width="width" :height="height" isRoot></tile-tree>
</div>
</template>
|