mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-20 02:38:53 +00:00
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import { customElement, property } from "lit/decorators";
|
|
import { css, html, LitElement, nothing } from "lit";
|
|
|
|
import "../../../../../../components/ha-fade-in";
|
|
import "../../../../../../components/ha-spinner";
|
|
|
|
@customElement("zwave-js-add-node-loading")
|
|
export class ZWaveJsAddNodeLoading extends LitElement {
|
|
@property() public description?: string;
|
|
|
|
@property({ type: Number }) public delay = 0;
|
|
|
|
render() {
|
|
return html`
|
|
<ha-fade-in .delay=${this.delay}>
|
|
<div class="loading">
|
|
<ha-spinner size="large"></ha-spinner>
|
|
</div>
|
|
${this.description ? html`<p>${this.description}</p>` : nothing}
|
|
</ha-fade-in>
|
|
`;
|
|
}
|
|
|
|
static styles = css`
|
|
ha-fade-in {
|
|
display: block;
|
|
}
|
|
.loading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 200px;
|
|
}
|
|
p {
|
|
margin-top: 16px;
|
|
color: var(--secondary-text-color);
|
|
text-align: center;
|
|
}
|
|
`;
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"zwave-js-add-node-loading": ZWaveJsAddNodeLoading;
|
|
}
|
|
}
|