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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
<script lang="ts">
import {defineComponent, PropType} from 'vue';
import {LayoutNode} from '../lib';
import TileImg from './TileImg.vue';
// Component holds a tree-node structure representing a tile or tile-group to be rendered
export default defineComponent({
props: {
layoutNode: {type: Object as PropType<LayoutNode>, required: true},
options: {type: Object, required: true},
// Layout settings from parent
headerSz: {type: Number, required: true},
tileSpacing: {type: Number, required: true},
},
data(){
return {
nonLeafHighlight: false,
clickHoldTimer: 0, // Used to recognise a click-and-hold event
zIdx: 0, // Used during transitions
overflow: 'visible', // Used during transitions
}
},
computed: {
isLeaf(){
return this.layoutNode.children.length == 0;
},
isExpandable(){
return this.layoutNode.tolNode.children.length > this.layoutNode.children.length;
},
showHeader(){
return (this.layoutNode.showHeader && !this.layoutNode.sepSweptArea) ||
(this.layoutNode.sepSweptArea && this.layoutNode.sepSweptArea.sweptLeft);
},
nonLeafBgColor(){
let colorArray = this.options.nonLeafBgColors;
return colorArray[this.layoutNode.depth % colorArray.length];
},
tileStyles(): Record<string,string> {
return {
// Places div using layoutNode, with centering if root
position: 'absolute',
left: (this.layoutNode.hidden ? 0 : this.layoutNode.pos[0]) + 'px',
top: (this.layoutNode.hidden ? 0 : this.layoutNode.pos[1]) + 'px',
width: (this.layoutNode.hidden ? 0 : this.layoutNode.dims[0]) + 'px',
height: (this.layoutNode.hidden ? 0 : this.layoutNode.dims[1]) + 'px',
visibility: this.layoutNode.hidden ? 'hidden' : 'visible',
// Other bindings
transitionDuration: this.options.transitionDuration + 'ms',
zIndex: String(this.zIdx),
overflow: String(this.overflow),
// Static styles
transitionProperty: 'left, top, width, height, visibility',
transitionTimingFunction: 'ease-out',
// CSS variables
'--nonLeafBgColor': this.nonLeafBgColor,
'--tileSpacing': this.tileSpacing + 'px',
};
},
nonLeafStyles(): Record<string,string> {
let temp = {
width: '100%',
height: '100%',
backgroundColor: this.nonLeafBgColor,
borderRadius: this.options.borderRadius + 'px',
boxShadow: this.nonLeafHighlight ? this.options.shadowHighlight : this.options.shadowNormal,
};
if (this.layoutNode.sepSweptArea != null){
let r = this.options.borderRadius + 'px';
temp = this.layoutNode.sepSweptArea.sweptLeft ?
{...temp, borderRadius: `${r} ${r} ${r} 0`} :
{...temp, borderRadius: `${r} 0 ${r} ${r}`};
}
return temp;
},
nonLeafHeaderStyles(): Record<string,string> {
let r = this.options.borderRadius + 'px';
return {
height: this.headerSz + 'px',
lineHeight: this.headerSz + 'px',
fontSize: this.options.nonLeafHeaderFontSz + 'px',
textAlign: 'center',
color: this.options.nonLeafHeaderColor,
backgroundColor: this.options.nonLeafHeaderBgColor,
borderRadius: `${r} ${r} 0 0`,
// For ellipsis
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
};
},
sepSweptAreaStyles(): Record<string,string> {
let commonStyles = {
position: 'absolute',
backgroundColor: this.nonLeafBgColor,
boxShadow: this.nonLeafHighlight ? this.options.shadowHighlight : this.options.shadowNormal,
transitionDuration: this.options.transitionDuration + 'ms',
transitionProperty: 'left, top, width, height',
transitionTimingFunction: 'ease-out',
};
let area = this.layoutNode.sepSweptArea;
if (this.layoutNode.hidden || area == null){
return {
...commonStyles,
visibility: 'hidden',
left: '0',
top: this.headerSz + 'px',
width: '0',
height: '0',
};
} else {
let r = this.options.borderRadius + 'px';
return {
...commonStyles,
left: area.pos[0] + 'px',
top: area.pos[1] + 'px',
width: area.dims[0] + 'px',
height: area.dims[1] + 'px',
borderRadius: area.sweptLeft ? `${r} 0 0 ${r}` : `${r} ${r} 0 0`,
};
}
},
},
methods: {
// Leaf click handling
onLeafMouseDown(){
clearTimeout(this.clickHoldTimer);
this.clickHoldTimer = setTimeout(() => {
this.clickHoldTimer = 0;
this.onLeafClickHold();
}, this.options.clickHoldDuration);
},
onLeafMouseUp(){
if (this.clickHoldTimer > 0){
clearTimeout(this.clickHoldTimer);
this.clickHoldTimer = 0;
this.onLeafClick();
}
},
onLeafClick(){
if (!this.isExpandable){
console.log('Ignored click on non-expandable node');
return;
}
this.$emit('leaf-clicked', {layoutNode: this.layoutNode, domNode: this.$el});
this.leafPrepTransition();
},
onLeafClickHold(){
if (!this.isExpandable){
console.log('Ignored click-hold on non-expandable node');
return;
}
this.$emit('leaf-click-held', this.layoutNode);
this.leafPrepTransition();
},
leafPrepTransition(){ // Temporary style changes to prevent content overlap and overflow
this.zIdx = 1;
this.overflow = 'hidden';
setTimeout(() => {this.zIdx = 0; this.overflow = 'visible';}, this.options.transitionDuration);
},
// Non-leaf click handling
onHeaderMouseDown(){
this.nonLeafHighlight = false;
clearTimeout(this.clickHoldTimer);
this.clickHoldTimer = setTimeout(() => {
this.clickHoldTimer = 0;
this.onHeaderClickHold();
}, this.options.clickHoldDuration);
},
onHeaderMouseUp(){
if (this.clickHoldTimer > 0){
clearTimeout(this.clickHoldTimer);
this.clickHoldTimer = 0;
this.onHeaderClick();
}
},
onHeaderClick(){
this.$emit('header-clicked', {layoutNode: this.layoutNode, domNode: this.$el});
this.nonLeafPrepForTransition();
},
onHeaderClickHold(){
this.$emit('header-click-held', this.layoutNode);
this.nonLeafPrepForTransition();
},
nonLeafPrepForTransition(){ // Temporary style changes to prevent content overlap and overflow
this.zIdx = 1;
setTimeout(() => {this.zIdx = 0}, this.options.transitionDuration);
},
// For coloured-outlines on hovered-over leaf-tiles or non-leaf-headers
onNonLeafMouseEnter(evt: Event){
this.nonLeafHighlight = true;
},
onNonLeafMouseLeave(evt: Event){
this.nonLeafHighlight = false;
},
// Child event propagation
onInnerLeafClicked(data: {layoutNode: LayoutNode, domNode: HTMLElement}){
this.$emit('leaf-clicked', data);
},
onInnerHeaderClicked(data: {layoutNode: LayoutNode, domNode: HTMLElement}){
this.$emit('header-clicked', data);
},
onInnerLeafClickHeld(data: LayoutNode){
this.$emit('leaf-click-held', data);
},
onInnerHeaderClickHeld(data: LayoutNode){
this.$emit('header-click-held', data);
},
onInnerInfoIconClicked(data: LayoutNode){
this.$emit('info-icon-clicked', data);
}
},
name: 'tile', // Need this to use self in template
components: {
TileImg,
},
emits: ['leaf-clicked', 'header-clicked', 'leaf-click-held', 'header-click-held', 'info-icon-clicked'],
});
</script>
<template>
<div :style="tileStyles">
<tile-img v-if="isLeaf" :layoutNode="layoutNode" :tileSz="layoutNode.dims[0]" :options="options"
@mousedown="onLeafMouseDown" @mouseup="onLeafMouseUp" @info-icon-clicked="onInnerInfoIconClicked"/>
<div v-else :style="nonLeafStyles" ref="nonLeaf">
<h1 v-if="showHeader" :style="nonLeafHeaderStyles" class="hover:cursor-pointer"
@mouseenter="onNonLeafMouseEnter" @mouseleave="onNonLeafMouseLeave"
@mousedown="onHeaderMouseDown" @mouseup="onHeaderMouseUp">
{{layoutNode.tolNode.name}}
</h1>
<div :style="sepSweptAreaStyles" ref="sepSweptArea"
:class="layoutNode?.sepSweptArea?.sweptLeft ? 'hide-right-edge' : 'hide-top-edge'">
<h1 v-if="layoutNode?.sepSweptArea?.sweptLeft === false"
:style="nonLeafHeaderStyles" class="hover:cursor-pointer"
@mouseenter="onNonLeafMouseEnter" @mouseleave="onNonLeafMouseLeave"
@mousedown="onHeaderMouseDown" @mouseup="onHeaderMouseUp">
{{layoutNode.tolNode.name}}
</h1>
</div>
<tile v-for="child in layoutNode.children" :key="child.tolNode.name" :layoutNode="child"
:headerSz="headerSz" :tileSpacing="tileSpacing" :options="options"
@leaf-clicked="onInnerLeafClicked" @header-clicked="onInnerHeaderClicked"
@leaf-click-held="onInnerLeafClickHeld" @header-click-held="onInnerHeaderClickHeld"
@info-icon-clicked="onInnerInfoIconClicked"/>
</div>
</div>
</template>
<style>
.hide-right-edge::before {
content: '';
position: absolute;
background-color: var(--nonLeafBgColor);
right: calc(0px - var(--tileSpacing));
bottom: 0;
width: var(--tileSpacing);
height: calc(100% + var(--tileSpacing));
}
.hide-top-edge::before {
content: '';
position: absolute;
background-color: var(--nonLeafBgColor);
bottom: calc(0px - var(--tileSpacing));
right: 0;
width: calc(100% + var(--tileSpacing));
height: var(--tileSpacing);
}
</style>
|