ha-frontend/src/components/trace/ha-trace-path-details.ts

273 lines
7.5 KiB
TypeScript
Raw Normal View History

2021-05-26 00:13:58 +02:00
import { dump } from "js-yaml";
2021-05-18 16:37:53 +02:00
import { css, CSSResultGroup, html, LitElement, TemplateResult } from "lit";
import { customElement, property, state } from "lit/decorators";
import { classMap } from "lit/directives/class-map";
2021-07-06 10:46:51 +02:00
import { formatDateTimeWithSeconds } from "../../common/datetime/format_date_time";
import "../ha-code-editor";
import "../ha-icon-button";
import type { NodeInfo } from "./hat-graph";
import "./hat-logbook-note";
import { LogbookEntry } from "../../data/logbook";
import {
2021-03-30 02:01:39 +02:00
ActionTraceStep,
ChooseActionTraceStep,
getDataFromPath,
2021-07-06 10:46:51 +02:00
TraceExtended,
} from "../../data/trace";
import "../../panels/logbook/ha-logbook";
import { traceTabStyles } from "./trace-tab-styles";
import { HomeAssistant } from "../../types";
@customElement("ha-trace-path-details")
export class HaTracePathDetails extends LitElement {
@property({ attribute: false }) public hass!: HomeAssistant;
@property({ type: Boolean, reflect: true }) public narrow!: boolean;
2021-07-06 10:46:51 +02:00
@property({ attribute: false }) public trace!: TraceExtended;
2021-07-06 10:46:51 +02:00
@property({ attribute: false }) public logbookEntries!: LogbookEntry[];
2021-07-06 10:46:51 +02:00
@property({ attribute: false }) public selected!: NodeInfo;
@property() renderedNodes: Record<string, any> = {};
@property() public trackedNodes!: Record<string, any>;
2021-05-07 22:16:14 +02:00
@state() private _view: "config" | "changed_variables" | "logbook" = "config";
protected render(): TemplateResult {
return html`
<div class="padded-box trace-info">
${this._renderSelectedTraceInfo()}
</div>
<div class="tabs top">
${[
["config", "Step Config"],
["changed_variables", "Changed Variables"],
["logbook", "Related logbook entries"],
].map(
([view, label]) => html`
2021-04-02 00:10:17 +02:00
<button
.view=${view}
class=${classMap({ active: this._view === view })}
@click=${this._showTab}
>
${label}
2021-04-02 00:10:17 +02:00
</button>
`
)}
</div>
${this._view === "config"
? this._renderSelectedConfig()
: this._view === "changed_variables"
? this._renderChangedVars()
: this._renderLogbook()}
`;
}
private _renderSelectedTraceInfo() {
2021-03-30 02:01:39 +02:00
const paths = this.trace.trace;
if (!this.selected?.path) {
return "Select a node on the left for more information.";
}
// HACK: default choice node is not part of paths. We filter them out here by checking parent.
const pathParts = this.selected.path.split("/");
if (pathParts[pathParts.length - 1] === "default") {
const parentTraceInfo = paths[
pathParts.slice(0, pathParts.length - 1).join("/")
2021-03-30 02:01:39 +02:00
] as ChooseActionTraceStep[];
if (parentTraceInfo && parentTraceInfo[0]?.result?.choice === "default") {
return "The default node was executed because no choices matched.";
}
}
if (!(this.selected.path in paths)) {
return "This node was not executed and so no further trace information is available.";
}
const parts: TemplateResult[][] = [];
let active = false;
for (const curPath of Object.keys(this.trace.trace)) {
// Include all trace results until the next rendered node.
// Rendered nodes also include non-chosen choose paths.
if (active) {
if (curPath in this.renderedNodes) {
break;
}
} else if (curPath === this.selected.path) {
active = true;
} else {
continue;
}
const data: ActionTraceStep[] = paths[curPath];
parts.push(
data.map((trace, idx) => {
const {
path,
timestamp,
result,
error,
changed_variables,
...rest
} = trace as any;
return html`
${curPath === this.selected.path
? ""
: html`<h2>${curPath.substr(this.selected.path.length + 1)}</h2>`}
${data.length === 1 ? "" : html`<h3>Iteration ${idx + 1}</h3>`}
Executed:
${formatDateTimeWithSeconds(
new Date(timestamp),
this.hass.locale
)}<br />
${result
? html`Result:
2021-05-26 00:13:58 +02:00
<pre>${dump(result)}</pre>`
: error
? html`<div class="error">Error: ${error}</div>`
: ""}
${Object.keys(rest).length === 0
? ""
2021-05-26 00:13:58 +02:00
: html`<pre>${dump(rest)}</pre>`}
`;
})
);
}
return parts;
}
private _renderSelectedConfig() {
if (!this.selected?.path) {
return "";
}
const config = getDataFromPath(this.trace!.config, this.selected.path);
return config
? html`<ha-code-editor
2021-05-26 00:13:58 +02:00
.value=${dump(config).trimRight()}
readOnly
></ha-code-editor>`
: "Unable to find config";
}
private _renderChangedVars() {
2021-03-30 02:01:39 +02:00
const paths = this.trace.trace;
const data: ActionTraceStep[] = paths[this.selected.path];
return html`
<div class="padded-box">
${data.map(
(trace, idx) => html`
${idx > 0 ? html`<p>Iteration ${idx + 1}</p>` : ""}
${Object.keys(trace.changed_variables || {}).length === 0
? "No variables changed"
2021-05-26 00:13:58 +02:00
: html`<pre>${dump(trace.changed_variables).trimRight()}</pre>`}
`
)}
</div>
`;
}
private _renderLogbook() {
2021-03-30 02:01:39 +02:00
const paths = this.trace.trace;
const startTrace = paths[this.selected.path];
const trackedPaths = Object.keys(this.trackedNodes);
const index = trackedPaths.indexOf(this.selected.path);
if (index === -1) {
return html`<div class="padded-box">Node not tracked.</div>`;
}
let entries: LogbookEntry[];
if (index === trackedPaths.length - 1) {
// it's the last entry. Find all logbook entries after start.
const startTime = new Date(startTrace[0].timestamp);
const idx = this.logbookEntries.findIndex(
(entry) => new Date(entry.when) >= startTime
);
if (idx === -1) {
entries = [];
} else {
entries = this.logbookEntries.slice(idx);
}
} else {
const nextTrace = paths[trackedPaths[index + 1]];
const startTime = new Date(startTrace[0].timestamp);
const endTime = new Date(nextTrace[0].timestamp);
entries = [];
for (const entry of this.logbookEntries || []) {
const entryDate = new Date(entry.when);
if (entryDate >= startTime) {
if (entryDate < endTime) {
entries.push(entry);
} else {
// All following entries are no longer valid.
break;
}
}
}
}
return entries.length
? html`
<ha-logbook
relative-time
.hass=${this.hass}
.entries=${entries}
.narrow=${this.narrow}
></ha-logbook>
2021-07-06 10:46:51 +02:00
<hat-logbook-note .domain=${this.trace.domain}></hat-logbook-note>
`
: html`<div class="padded-box">
No Logbook entries found for this step.
</div>`;
}
private _showTab(ev) {
this._view = ev.target.view;
}
2021-05-07 22:16:14 +02:00
static get styles(): CSSResultGroup {
return [
traceTabStyles,
css`
.padded-box {
margin: 16px;
}
:host(:not([narrow])) .trace-info {
min-height: 250px;
}
pre {
margin: 0;
}
.error {
color: var(--error-color);
}
`,
];
}
}
declare global {
interface HTMLElementTagNameMap {
2021-07-06 10:46:51 +02:00
"ha-trace-path-details": HaTracePathDetails;
}
}