1
mirror of https://github.com/home-assistant/frontend synced 2024-09-22 18:30:59 +02:00
ha-frontend/src/panels/developer-tools/assist/developer-tools-assist.ts

242 lines
6.6 KiB
TypeScript
Raw Normal View History

2023-06-28 12:40:59 +02:00
import { dump } from "js-yaml";
import { CSSResultGroup, LitElement, css, html, nothing } from "lit";
import { customElement, property, query, state } from "lit/decorators";
import "../../../components/ha-button";
import "../../../components/ha-code-editor";
import "../../../components/ha-language-picker";
import "../../../components/ha-textarea";
import type { HaTextArea } from "../../../components/ha-textarea";
import {
AssitDebugResult,
debugAgent,
listAgents,
} from "../../../data/conversation";
import { SubscribeMixin } from "../../../mixins/subscribe-mixin";
import { haStyle } from "../../../resources/styles";
import { HomeAssistant } from "../../../types";
import { formatLanguageCode } from "../../../common/language/format_language";
import { storage } from "../../../common/decorators/storage";
type SentenceParsingResult = {
sentence: string;
language: string;
result: AssitDebugResult | null;
};
@customElement("developer-tools-assist")
class HaPanelDevAssist extends SubscribeMixin(LitElement) {
@property({ attribute: false }) public hass!: HomeAssistant;
@property({ type: Boolean }) public narrow!: boolean;
@state() supportedLanguages?: string[];
@storage({
key: "assist_debug_language",
state: true,
subscribe: false,
storage: "localStorage",
})
_language?: string;
@state() _results: SentenceParsingResult[] = [];
@query("#sentences-input") _sentencesInput!: HaTextArea;
@state() _validInput = false;
private _languageChanged(ev) {
this._language = ev.detail.value;
}
private _handleKeyDown(e: KeyboardEvent) {
if (e.code !== "Enter" || e.shiftKey) {
return;
}
e.preventDefault();
this._parse();
}
2023-06-28 12:40:59 +02:00
private _textAreaInput(ev) {
const value = ev.target.value;
const valid = Boolean(value);
if (valid !== this._validInput) {
this._validInput = valid;
}
}
private async _parse() {
const sentences = this._sentencesInput.value
.split("\n")
.filter((a) => a !== "");
const { results } = await debugAgent(this.hass, sentences, this._language!);
this._sentencesInput.value = "";
const newResults: SentenceParsingResult[] = [];
sentences.forEach((sentence, index) => {
const result = results[index];
newResults.push({
sentence,
language: this._language!,
result,
});
});
this._results = [...newResults, ...this._results];
}
private async _fetchLanguages() {
const { agents } = await listAgents(this.hass);
const assistAgent = agents.find((agent) => agent.id === "homeassistant");
this.supportedLanguages =
assistAgent?.supported_languages === "*"
? undefined
: assistAgent?.supported_languages;
if (
!this._language &&
this.supportedLanguages?.includes(this.hass.locale.language)
) {
this._language = this.hass.locale.language;
} else if (!this._language) {
this._language = "en";
}
2023-06-28 12:40:59 +02:00
}
protected firstUpdated(): void {
this._fetchLanguages();
}
protected render() {
return html`
<div class="content">
<ha-card header="Sentences parser" class="form">
<div class="card-content">
<p class="description">
Enter sentences and see how they will be parsed by Home Assistant.
Each line will be processed as individual sentence. Intents will
not be executed on your instance.
</p>
${this.supportedLanguages
? html`
<ha-language-picker
.languages=${this.supportedLanguages}
.hass=${this.hass}
.value=${this._language}
2023-06-28 12:40:59 +02:00
@value-changed=${this._languageChanged}
></ha-language-picker>
`
: nothing}
<ha-textarea
autogrow
label="Sentences"
id="sentences-input"
@input=${this._textAreaInput}
@keydown=${this._handleKeyDown}
2023-06-28 12:40:59 +02:00
></ha-textarea>
</div>
<div class="card-actions">
<ha-button
@click=${this._parse}
.disabled=${!this._language || !this._validInput}
>
Parse sentences
</ha-button>
</div>
</ha-card>
${this._results.map((r) => {
const { sentence, result, language } = r;
2023-06-28 12:40:59 +02:00
const matched = result != null;
return html`
<ha-card class="result">
<div class="card-content">
<div class="sentence">
<p>${sentence}</p>
<p>${matched ? "✅" : "❌"}</p>
</div>
<div class="info">
Language: ${formatLanguageCode(language, this.hass.locale)}
(${language})
2023-06-28 12:40:59 +02:00
</div>
${result
? html`
<ha-code-editor
mode="yaml"
.hass=${this.hass}
.value=${dump(result).trimRight()}
read-only
dir="ltr"
></ha-code-editor>
`
: html`<ha-alert alert-type="error">
No intent matched
</ha-alert>`}
2023-06-28 12:40:59 +02:00
</div>
</ha-card>
`;
})}
</div>
`;
}
static get styles(): CSSResultGroup {
return [
haStyle,
css`
.content {
padding: 28px 20px 16px;
padding: max(28px, calc(12px + env(safe-area-inset-top)))
max(20px, calc(4px + env(safe-area-inset-right)))
max(16px, env(safe-area-inset-bottom))
max(20px, calc(4px + env(safe-area-inset-left)));
max-width: 1040px;
margin: 0 auto;
}
.description {
margin: 0;
margin-bottom: 16px;
}
ha-textarea {
width: 100%;
}
.card-actions {
text-align: right;
}
.form {
margin-bottom: 16px;
}
.result {
margin-bottom: 16px;
}
.sentence {
font-weight: 500;
margin-bottom: 8px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.sentence p {
margin: 0;
}
.info p {
margin: 0;
}
ha-code-editor,
ha-alert {
display: block;
margin-top: 16px;
}
`,
];
}
}
declare global {
interface HTMLElementTagNameMap {
"developer-tools-assist": HaPanelDevAssist;
}
}