-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJSONSpeedViewer.jsx
80 lines (66 loc) · 3.41 KB
/
JSONSpeedViewer.jsx
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
import React, { useMemo } from "react";
import SpeedTree from "./Utility/SpeedTree";
import "./JSONSpeedViewer.scss"
function JSONSpeedViewer({ data, customRenderer, videoRef, setPlaying, videoOffset, expandThreshold }) {
// Returns a list of node objects
function json_to_treenodeinfo(root, path, key) {
// Case 1: Root is null or undefined
if (root === null || root === undefined) {
return null;
}
// Case 2: Root is a single value
else if (['string', 'number', 'boolean'].indexOf(typeof (root)) > -1) {
if (key.startsWith('_')) { return null }; // Keep for production, remove for development
return [{
'id': [...path, String(key)].join('/'),
'label': <span><b>{key}</b>: {root}</span>
}]
}
// Case 3 and 4: Root is an Object or Array
else if (root.constructor === Object || root.constructor === Array) {
var keys = Object.keys(root);
keys.sort(keyCompare);
const arrayCount = root.constructor === Array && <span className='tree-label-array-count'> {` [ ${Object.keys(root).length} ]`} </span>;
const { label: customLabel, overrides } = customRenderer({ root, path, key, videoRef, setPlaying, videoOffset });
let label = customLabel ?? <span><b>{key}</b>{arrayCount}</span>
// Optimization to speed up rendering
const renderChildren = (
overrides?.renderChildren != undefined
? overrides.renderChildren
: root.constructor !== Array || (root.constructor == Array && root.length < 1000)
);
return [{
'id': [...path, String(key)].join('/'),
label,
// 'selectable': root.constructor == Array,
'children': renderChildren ? keys.map((k) => json_to_treenodeinfo(root[k], [...path, String(k)], k)).flat().filter(v => !!v) : []
}]
}
console.error("Data Type Uncaught");
return;
}
const memoized_graph = useMemo(() => {
const res = json_to_treenodeinfo(data, [], '')[0].children;
return res;
}, [data])
return (
<div className="json-viewer-wrapper" style={{ flex: '1 1 auto', minHeight: '1px' }}>
<SpeedTree data={memoized_graph} expandThreshold={expandThreshold} />{" "}
</div>
);
}
// Enforces order of items in list, others are placed at the end
export function keyCompare(a, b) {
const quick_info = ['video_uid', 'video_source', 'device', 'metadata',];
const benchmarks = ['narrations', 'av', 'moments', 'vq', 'nlq', 'fho_hands', 'fho_lta', 'fho_scod', 'fho_sta',];
const time_segments = ['video_frame', 'start_time', 'end_time', 'label',];
const bboxes = ['x', 'y', 'width', 'height',];
const fho_frames = ['pre_45', 'pre_30', 'pre_15', 'pre_frame', 'contact_frame', 'pnr_frame', 'post_frame',];
const fho_lta = ['interval_start_time', 'interval_end_time', 'interval_start_frame', 'interval_end_frame'];
const GLOBAL_ORDER = [...fho_frames, ...quick_info, ...benchmarks, ...time_segments, ...bboxes, ...fho_lta];
var [indexA, indexB] = [GLOBAL_ORDER.indexOf(a), GLOBAL_ORDER.indexOf(b)];
indexA = indexA === -1 ? GLOBAL_ORDER.length : indexA
indexB = indexB === -1 ? GLOBAL_ORDER.length : indexB
return indexA - indexB;
}
export default JSONSpeedViewer;