2021-02-18 16:58:57 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-02-18 15:18:58 +05:30
|
|
|
import {tag as t} from "./html.js";
|
|
|
|
import {openFile, readFileAsText} from "./file.js";
|
|
|
|
|
|
|
|
const main = document.querySelector("main");
|
|
|
|
|
|
|
|
let selectedItemNode;
|
|
|
|
let rootItem;
|
|
|
|
|
2021-02-18 15:38:43 +05:30
|
|
|
const logLevels = [undefined, "All", "Debug", "Detail", "Info", "Warn", "Error", "Fatal", "Off"];
|
|
|
|
|
|
|
|
main.addEventListener("click", event => {
|
2021-02-18 15:18:58 +05:30
|
|
|
if (selectedItemNode) {
|
|
|
|
selectedItemNode.classList.remove("selected");
|
|
|
|
selectedItemNode = null;
|
|
|
|
}
|
2021-02-18 15:56:27 +05:30
|
|
|
if (event.target.classList.contains("toggleExpanded")) {
|
|
|
|
const li = event.target.parentElement.parentElement;
|
|
|
|
li.classList.toggle("expanded");
|
|
|
|
} else {
|
|
|
|
const itemNode = event.target.closest(".item");
|
|
|
|
if (itemNode) {
|
|
|
|
selectedItemNode = itemNode;
|
|
|
|
selectedItemNode.classList.add("selected");
|
|
|
|
const path = selectedItemNode.dataset.path;
|
|
|
|
let item = rootItem;
|
|
|
|
let parent;
|
|
|
|
if (path.length) {
|
|
|
|
const indices = path.split("/").map(i => parseInt(i, 10));
|
|
|
|
for(const i of indices) {
|
|
|
|
parent = item;
|
|
|
|
item = itemChildren(item)[i];
|
|
|
|
}
|
2021-02-18 15:18:58 +05:30
|
|
|
}
|
2021-02-18 16:24:21 +05:30
|
|
|
showItemDetails(item, parent, itemNode);
|
2021-02-18 15:18:58 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-02-18 16:24:21 +05:30
|
|
|
function showItemDetails(item, parent, itemNode) {
|
2021-02-18 15:38:43 +05:30
|
|
|
const parentOffset = itemStart(parent) ? `${itemStart(item) - itemStart(parent)}ms` : "none";
|
2021-02-18 16:24:21 +05:30
|
|
|
const expandButton = t.button("Expand recursively");
|
|
|
|
expandButton.addEventListener("click", () => expandResursively(itemNode.parentElement.parentElement));
|
2021-02-18 15:18:58 +05:30
|
|
|
const aside = t.aside([
|
|
|
|
t.h3(itemCaption(item)),
|
2021-02-18 15:38:43 +05:30
|
|
|
t.p([t.strong("Log level: "), logLevels[itemLevel(item)]]),
|
|
|
|
t.p([t.strong("Error: "), itemError(item) ? `${itemError(item).name} ${itemError(item).stack}` : "none"]),
|
2021-02-18 16:24:21 +05:30
|
|
|
t.p([t.strong("Parent offset: "), parentOffset]),
|
|
|
|
t.p([t.strong("Start: "), new Date(itemStart(item)).toString()]),
|
|
|
|
t.p([t.strong("Duration: "), `${itemDuration(item)}ms`]),
|
2021-02-18 15:38:43 +05:30
|
|
|
t.p([t.strong("Child count: "), itemChildren(item) ? `${itemChildren(item).length}` : "none"]),
|
|
|
|
t.p(t.strong("Values:")),
|
2021-02-18 15:18:58 +05:30
|
|
|
t.ul({class: "values"}, Object.entries(itemValues(item)).map(([key, value]) => {
|
|
|
|
return t.li([
|
2021-02-18 15:38:43 +05:30
|
|
|
t.span({className: "key"}, normalizeValueKey(key)),
|
2021-02-18 20:08:56 +05:30
|
|
|
t.span({className: "value"}, value+"")
|
2021-02-18 15:18:58 +05:30
|
|
|
]);
|
2021-02-18 16:24:21 +05:30
|
|
|
})),
|
|
|
|
t.p(expandButton)
|
2021-02-18 15:18:58 +05:30
|
|
|
]);
|
|
|
|
document.querySelector("aside").replaceWith(aside);
|
|
|
|
}
|
|
|
|
|
2021-02-18 16:24:21 +05:30
|
|
|
function expandResursively(li) {
|
|
|
|
li.classList.add("expanded");
|
|
|
|
const ol = li.querySelector("ol");
|
|
|
|
if (ol) {
|
|
|
|
const len = ol.children.length;
|
|
|
|
for (let i = 0; i < len; i += 1) {
|
|
|
|
expandResursively(ol.children[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-18 15:18:58 +05:30
|
|
|
document.getElementById("openFile").addEventListener("click", loadFile);
|
|
|
|
|
|
|
|
async function loadFile() {
|
|
|
|
const file = await openFile();
|
|
|
|
const json = await readFileAsText(file);
|
|
|
|
const logs = JSON.parse(json);
|
|
|
|
rootItem = {c: logs.items};
|
|
|
|
const fragment = logs.items.reduce((fragment, item, i, items) => {
|
|
|
|
const prevItem = i === 0 ? null : items[i - 1];
|
|
|
|
fragment.appendChild(t.section([
|
2021-02-18 16:32:26 +05:30
|
|
|
t.h2(prevItem ? `+ ${formatTime(itemStart(item) - itemEnd(prevItem))}` : new Date(itemStart(item)).toString()),
|
2021-02-18 15:18:58 +05:30
|
|
|
t.div({className: "timeline"}, t.ol(itemToNode(item, [i])))
|
|
|
|
]));
|
|
|
|
return fragment;
|
|
|
|
}, document.createDocumentFragment());
|
|
|
|
main.replaceChildren(fragment);
|
|
|
|
}
|
|
|
|
|
2021-02-18 16:32:26 +05:30
|
|
|
function formatTime(ms) {
|
|
|
|
if (ms < 1000) {
|
|
|
|
return `${ms}ms`;
|
|
|
|
} else if (ms < 1000 * 60) {
|
|
|
|
return `${(ms / 1000).toFixed(2)}s`;
|
|
|
|
} else if (ms < 1000 * 60 * 60) {
|
|
|
|
return `${(ms / (1000 * 60)).toFixed(2)}m`;
|
|
|
|
} else if (ms < 1000 * 60 * 60 * 24) {
|
|
|
|
return `${(ms / (1000 * 60 * 60)).toFixed(2)}h`;
|
|
|
|
} else {
|
|
|
|
return `${(ms / (1000 * 60 * 60 * 24)).toFixed(2)}d`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-18 15:18:58 +05:30
|
|
|
function itemChildren(item) { return item.c; }
|
|
|
|
function itemStart(item) { return item.s; }
|
|
|
|
function itemEnd(item) { return item.s + item.d; }
|
|
|
|
function itemDuration(item) { return item.d; }
|
|
|
|
function itemValues(item) { return item.v; }
|
|
|
|
function itemLevel(item) { return item.l; }
|
|
|
|
function itemLabel(item) { return item.v?.l; }
|
|
|
|
function itemType(item) { return item.v?.t; }
|
|
|
|
function itemError(item) { return item.e; }
|
2021-02-18 17:37:12 +05:30
|
|
|
function itemShortErrorMessage(item) {
|
|
|
|
if (itemError(item)) {
|
|
|
|
const e = itemError(item);
|
|
|
|
return e.name || e.stack.substr(0, e.stack.indexOf("\n"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-18 15:18:58 +05:30
|
|
|
function itemCaption(item) {
|
|
|
|
if (itemType(item) === "network") {
|
|
|
|
return `${itemValues(item)?.method} ${itemValues(item)?.url}`;
|
|
|
|
} else if (itemLabel(item) && itemValues(item)?.id) {
|
|
|
|
return `${itemLabel(item)} ${itemValues(item).id}`;
|
2021-02-18 17:37:12 +05:30
|
|
|
} else if (itemLabel(item) && itemValues(item)?.status) {
|
|
|
|
return `${itemLabel(item)} (${itemValues(item).status})`;
|
|
|
|
} else if (itemLabel(item) && itemError(item)) {
|
|
|
|
return `${itemLabel(item)} (${itemShortErrorMessage(item)})`;
|
2021-02-18 15:18:58 +05:30
|
|
|
} else {
|
|
|
|
return itemLabel(item) || itemType(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function normalizeValueKey(key) {
|
|
|
|
switch (key) {
|
|
|
|
case "t": return "type";
|
|
|
|
case "l": return "label";
|
|
|
|
default: return key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns the node and the total range (recursively) occupied by the node
|
|
|
|
function itemToNode(item, path) {
|
2021-02-18 15:56:27 +05:30
|
|
|
const hasChildren = !!itemChildren(item)?.length;
|
2021-02-18 15:18:58 +05:30
|
|
|
const className = {
|
|
|
|
item: true,
|
2021-02-18 15:56:27 +05:30
|
|
|
"has-children": hasChildren,
|
2021-02-18 15:18:58 +05:30
|
|
|
error: itemError(item),
|
|
|
|
[`type-${itemType(item)}`]: !!itemType(item),
|
|
|
|
[`level-${itemLevel(item)}`]: true,
|
|
|
|
};
|
2021-02-18 15:56:27 +05:30
|
|
|
|
2021-02-18 15:18:58 +05:30
|
|
|
const li = t.li([
|
2021-02-18 15:56:27 +05:30
|
|
|
t.div([
|
|
|
|
hasChildren ? t.button({className: "toggleExpanded"}) : "",
|
|
|
|
t.div({className, "data-path": path.join("/")}, [
|
|
|
|
t.span({class: "caption"}, itemCaption(item)),
|
|
|
|
t.span({class: "duration"}, `(${itemDuration(item)}ms)`),
|
|
|
|
])
|
2021-02-18 15:18:58 +05:30
|
|
|
])
|
|
|
|
]);
|
|
|
|
if (itemChildren(item) && itemChildren(item).length) {
|
|
|
|
li.appendChild(t.ol(itemChildren(item).map((item, i) => {
|
|
|
|
return itemToNode(item, path.concat(i));
|
|
|
|
})));
|
|
|
|
}
|
|
|
|
return li;
|
|
|
|
}
|