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
|
<template>
<div class="plot_container" :class="{ plot_maximized: maximized, plot_minimized: !maximized }" ref="plot_container">
<div class="plot" ref="plot_ref">
<button class="plot_button" @click="plot_toggle_maximize">
{{ maximized ? '-' : '+' }}
</button>
</div>
</div>
</template>
<script setup>
import { defineProps, inject, onMounted, ref, useTemplateRef, watch } from 'vue'
const props = defineProps({ is_heatmap: Boolean, section: String, name: String })
const maximized = ref(false)
const plot_ref = useTemplateRef('plot_ref')
const plot_container = useTemplateRef('plot_container')
const plots = inject('plots')
const heatmaps = inject('heatmaps')
const entries = inject('entries')
const x_axis = inject('x_axis')
const hm_left = inject('hm_left')
const hm_px_count = inject('hm_px_count')
const hm_px_pow = inject('hm_px_pow')
const data = inject('data')
const plot_toggle_maximize = () => {
maximized.value = !maximized.value
Plotly.Plots.resize(plot_ref.value)
document.body.style.overflow = maximized.value ? 'hidden' : 'visible'
}
const prevent_plotly_buttons_tab_focus = () => {
const focusableElements = plot_container.value.querySelectorAll('a, button, input, select')
focusableElements.forEach(elem => elem.setAttribute('tabindex', '-1'))
}
const heatmap_init = [{ colorscale: 'Electric', type: 'heatmap', x: [], y: [], z: [] }]
const plot_init = () => {
const plot_config = plots.value[props.section][props.name]
const plot_defs = { mode: 'lines', line: { width: 1 }, x: [], y: [] }
switch (plot_config.type) {
case 'lines':
return Array.from(plot_config.cols, col => ({ ...plot_defs, name: col }))
case 'stack':
return Array.from(plot_config.cols, col => ({ ...plot_defs, stackgroup: 'sg', name: col }))
case 'stack_percent':
return Array.from(plot_config.cols, col => ({ ...plot_defs, stackgroup: 'sg', groupnorm: 'percent', name: col }))
}
}
onMounted(() => {
Plotly.newPlot(plot_ref.value, props.is_heatmap ? heatmap_init : plot_init(), {
font: { color: 'gray', family: 'monospace' },
legend: { maxheight: 100, orientation: 'h' },
margin: { b: 48, l: 48, r: 48, t: 48 },
paper_bgcolor: 'black',
plot_bgcolor: 'black',
title: { font: { size: 16 }, text: props.name, x: 0, xref: 'paper' },
xaxis: { gridcolor: '#111', tickfont: { color: 'gray' }, zerolinecolor: 'gray' },
yaxis: { gridcolor: '#111', tickfont: { color: 'gray' }, zerolinecolor: 'gray' },
}, {
displayModeBar: true,
responsive: true,
})
prevent_plotly_buttons_tab_focus()
})
const update_plot = new_data => {
const plot_config = plots.value[props.section][props.name]
const cols = plot_config.cols
const cols_count = cols.length
const table_data = new_data.plot_values[plot_config.table]
const traces = [...Array(cols_count).keys()]
const xs = Array(cols_count).fill(table_data.map(elem => elem[x_axis.value]))
const ys = cols.map(column => table_data.map(elem => elem[column]))
// Clear traces
if (new_data.redraw) {
const restyle = {
x: Array.from(cols, () => []),
y: Array.from(cols, () => []),
}
Plotly.restyle(plot_ref.value, restyle)
}
Plotly.extendTraces(plot_ref.value, { x: xs, y: ys }, traces, entries.value)
}
const update_heatmap = new_data => {
const heatmap_config = heatmaps.value[props.section][props.name]
const table_data = new_data.heatmap_values[heatmap_config.table]
const ys = [table_data.map(elem => elem[x_axis.value])]
const zs = [table_data.map(elem => elem.eva_render.split(' ').map(str => Number('0x' + str)))]
if (new_data.redraw) {
const px_size = Math.pow(2, Number(hm_px_pow.value))
const restyle = {
x: [Array.from(Array(Number(hm_px_count.value)).keys()).map(i => Number(hm_left.value) + i * px_size)],
y: [[]],
z: [[]],
}
Plotly.restyle(plot_ref.value, restyle)
}
Plotly.extendTraces(plot_ref.value, { y: ys, z: zs }, [0], entries.value)
}
watch(data, props.is_heatmap ? update_heatmap : update_plot)
</script>
<style>
.plot_container {
background-color: black;
display: inline-block;
width: 100%;
}
.plot_maximized {
height: 100%;
left: 0;
position: fixed;
top: 0;
z-index: 999;
}
.plot_minimized {
height: 400px;
position: relative;
z-index: 0;
}
.plot_button {
background-color: black;
border: 1.5px solid gray;
color: gray;
cursor: pointer;
font-family: monospace;
font-size: 18px;
height: 26px;
padding: 0;
position: absolute;
right: 0;
top: 0;
width: 26px;
}
.plot {
height: 100%;
}
</style>
|