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
|
<script>
import {defaultLayout} from '/src/layout.js';
export default {
name: 'tile',
data(){
return {
zIdx: 0,
layoutSys: defaultLayout,
}
},
props: {
tree: Object,
x: Number,
y: Number,
width: Number,
height: Number,
hideHeader: Boolean,
},
computed: {
layout(){
if (this.tree.children.length == 0)
return {};
return this.layoutSys.genLayout(this.tree.children, 0, 0, this.width, this.height, this.hideHeader);
}
},
methods: {
onImgClick(){
this.$emit('tile-clicked', [this.tree]);
//increase z-index during transition
this.zIdx = 1;
setTimeout(() => this.zIdx = 0, 300);
},
onInnerTileClicked(nodeList){
this.$emit('tile-clicked', [...nodeList, this.tree]);
},
onHeaderClick(){
this.$emit('header-clicked', [this.tree]);
//increase z-index during transition
this.zIdx = 1;
setTimeout(() => this.zIdx = 0, 300);
},
onInnerHeaderClicked(nodeList){
this.$emit('header-clicked', [...nodeList, this.tree]);
}
}
}
</script>
<template>
<div
:style="{position: 'absolute', left: x+'px', top: y+'px', width: width+'px', height: height+'px', zIndex: zIdx}"
class="transition-[left,top,width,height] duration-300 ease-out border border-stone-900 bg-white overflow-hidden">
<div v-if="tree.children.length == 0"
:style="{backgroundImage: 'url(/src/assets/' + tree.tolNode.name + '.jpg)'}"
class="hover:cursor-pointer w-full h-full bg-cover" @click="onImgClick"
/>
<div v-else>
<div v-if="!hideHeader" :style="{height: this.layoutSys.HEADER_SZ + 'px'}"
class="text-center hover:cursor-pointer bg-stone-300" @click="onHeaderClick">
{{tree.tolNode.name}}
</div>
<tile v-for="child in tree.children" :key="child.tolNode.name" :tree="child"
:x="layout.coords[child.tolNode.name].x" :y="layout.coords[child.tolNode.name].y"
:width="layout.coords[child.tolNode.name].w" :height="layout.coords[child.tolNode.name].h"
@tile-clicked="onInnerTileClicked" @header-clicked="onInnerHeaderClicked"
></tile>
</div>
</div>
</template>
|