mirror of
https://github.com/home-assistant/frontend.git
synced 2025-10-08 11:19:44 +00:00
189 lines
5.1 KiB
TypeScript
189 lines
5.1 KiB
TypeScript
import type { EditorView, KeyBinding, ViewUpdate } from "@codemirror/view";
|
|
import {
|
|
customElement,
|
|
internalProperty,
|
|
property,
|
|
PropertyValues,
|
|
UpdatingElement,
|
|
} from "lit-element";
|
|
import { fireEvent } from "../common/dom/fire_event";
|
|
import { loadCodeMirror } from "../resources/codemirror.ondemand";
|
|
|
|
declare global {
|
|
interface HASSDomEvents {
|
|
"editor-save": undefined;
|
|
}
|
|
}
|
|
|
|
const saveKeyBinding: KeyBinding = {
|
|
key: "Mod-s",
|
|
run: (view: EditorView) => {
|
|
fireEvent(view.dom, "editor-save");
|
|
return true;
|
|
},
|
|
};
|
|
|
|
@customElement("ha-code-editor")
|
|
export class HaCodeEditor extends UpdatingElement {
|
|
public codemirror?: EditorView;
|
|
|
|
@property() public mode = "yaml";
|
|
|
|
@property({ type: Boolean }) public autofocus = false;
|
|
|
|
@property({ type: Boolean }) public readOnly = false;
|
|
|
|
@property() public error = false;
|
|
|
|
@internalProperty() private _value = "";
|
|
|
|
private _loadedCodeMirror?: typeof import("../resources/codemirror");
|
|
|
|
public set value(value: string) {
|
|
this._value = value;
|
|
}
|
|
|
|
public get value(): string {
|
|
return this.codemirror ? this.codemirror.state.doc.toString() : this._value;
|
|
}
|
|
|
|
public get hasComments(): boolean {
|
|
if (!this.codemirror || !this._loadedCodeMirror) {
|
|
return false;
|
|
}
|
|
const className = this._loadedCodeMirror.HighlightStyle.get(
|
|
this.codemirror.state,
|
|
this._loadedCodeMirror.tags.comment
|
|
);
|
|
return !!this.shadowRoot!.querySelector(`span.${className}`);
|
|
}
|
|
|
|
public connectedCallback() {
|
|
super.connectedCallback();
|
|
if (!this.codemirror) {
|
|
return;
|
|
}
|
|
if (this.autofocus !== false) {
|
|
this.codemirror.focus();
|
|
}
|
|
}
|
|
|
|
protected update(changedProps: PropertyValues): void {
|
|
super.update(changedProps);
|
|
|
|
if (!this.codemirror) {
|
|
return;
|
|
}
|
|
|
|
if (changedProps.has("mode")) {
|
|
this.codemirror.dispatch({
|
|
effects: this._loadedCodeMirror!.langCompartment!.reconfigure(
|
|
this._mode
|
|
),
|
|
});
|
|
}
|
|
if (changedProps.has("readOnly")) {
|
|
this.codemirror.dispatch({
|
|
effects: this._loadedCodeMirror!.readonlyCompartment!.reconfigure(
|
|
this._loadedCodeMirror!.EditorView!.editable.of(!this.readOnly)
|
|
),
|
|
});
|
|
}
|
|
if (changedProps.has("_value") && this._value !== this.value) {
|
|
this.codemirror.dispatch({
|
|
changes: {
|
|
from: 0,
|
|
to: this.codemirror.state.doc.length,
|
|
insert: this._value,
|
|
},
|
|
});
|
|
}
|
|
if (changedProps.has("error")) {
|
|
this.classList.toggle("error-state", this.error);
|
|
}
|
|
}
|
|
|
|
protected firstUpdated(changedProps: PropertyValues): void {
|
|
super.firstUpdated(changedProps);
|
|
this._blockKeyboardShortcuts();
|
|
this._load();
|
|
}
|
|
|
|
private get _mode() {
|
|
return this._loadedCodeMirror!.langs[this.mode];
|
|
}
|
|
|
|
private async _load(): Promise<void> {
|
|
this._loadedCodeMirror = await loadCodeMirror();
|
|
|
|
const shadowRoot = this.attachShadow({ mode: "open" });
|
|
|
|
shadowRoot!.innerHTML = `<style>
|
|
:host(.error-state) div.cm-wrap .cm-gutters {
|
|
border-color: var(--error-state-color, red);
|
|
}
|
|
</style>`;
|
|
|
|
const container = document.createElement("span");
|
|
|
|
shadowRoot.appendChild(container);
|
|
|
|
this.codemirror = new this._loadedCodeMirror.EditorView({
|
|
state: this._loadedCodeMirror.EditorState.create({
|
|
doc: this._value,
|
|
extensions: [
|
|
this._loadedCodeMirror.lineNumbers(),
|
|
this._loadedCodeMirror.EditorState.allowMultipleSelections.of(true),
|
|
this._loadedCodeMirror.history(),
|
|
this._loadedCodeMirror.highlightSelectionMatches(),
|
|
this._loadedCodeMirror.highlightActiveLine(),
|
|
this._loadedCodeMirror.drawSelection(),
|
|
this._loadedCodeMirror.rectangularSelection(),
|
|
this._loadedCodeMirror.keymap.of([
|
|
...this._loadedCodeMirror.defaultKeymap,
|
|
...this._loadedCodeMirror.searchKeymap,
|
|
...this._loadedCodeMirror.historyKeymap,
|
|
...this._loadedCodeMirror.tabKeyBindings,
|
|
saveKeyBinding,
|
|
] as KeyBinding[]),
|
|
this._loadedCodeMirror.langCompartment.of(this._mode),
|
|
this._loadedCodeMirror.theme,
|
|
this._loadedCodeMirror.Prec.fallback(
|
|
this._loadedCodeMirror.highlightStyle
|
|
),
|
|
this._loadedCodeMirror.readonlyCompartment.of(
|
|
this._loadedCodeMirror.EditorView.editable.of(!this.readOnly)
|
|
),
|
|
this._loadedCodeMirror.EditorView.updateListener.of((update) =>
|
|
this._onUpdate(update)
|
|
),
|
|
],
|
|
}),
|
|
root: shadowRoot,
|
|
parent: container,
|
|
});
|
|
}
|
|
|
|
private _blockKeyboardShortcuts() {
|
|
this.addEventListener("keydown", (ev) => ev.stopPropagation());
|
|
}
|
|
|
|
private _onUpdate(update: ViewUpdate): void {
|
|
if (!update.docChanged) {
|
|
return;
|
|
}
|
|
const newValue = this.value;
|
|
if (newValue === this._value) {
|
|
return;
|
|
}
|
|
this._value = newValue;
|
|
fireEvent(this, "value-changed", { value: this._value });
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ha-code-editor": HaCodeEditor;
|
|
}
|
|
}
|