const fireEvent = (node, type, detail, options) => { options = options || {}; detail = detail === null || detail === undefined ? {} : detail; const event = new Event(type, { bubbles: options.bubbles === undefined ? true : options.bubbles, cancelable: Boolean(options.cancelable), composed: options.composed === undefined ? true : options.composed, }); event.detail = detail; node.dispatchEvent(event); return event; }; if ( !customElements.get("ha-switch") && customElements.get("paper-toggle-button") ) { customElements.define("ha-switch", customElements.get("paper-toggle-button")); } const LitElement = customElements.get("hui-masonry-view") ? Object.getPrototypeOf(customElements.get("hui-masonry-view")) : Object.getPrototypeOf(customElements.get("hui-view")); const html = LitElement.prototype.html; const css = LitElement.prototype.css; const HELPERS = window.loadCardHelpers(); const DefaultSensors = new Map([ ["cloudCoverEntity", "_cloud_cover"], ["rainChanceEntity", "_rain_chance"], ["freezeChanceEntity", "_freeze_chance"], ["snowChanceEntity", "_snow_chance"], ["uvEntity", "_uv"], ["rainForecastEntity", "_next_rain"], ]); export class MeteofranceWeatherCardEditor extends LitElement { setConfig(config) { this._config = { ...config }; } static get properties() { return { hass: {}, _config: {} }; } get _entity() { return this._config.entity || ""; } get _name() { return this._config.name || ""; } get _icons() { return this._config.icons || ""; } get _current() { return this._config.current !== false; } get _details() { return this._config.details !== false; } get _forecast() { return this._config.forecast !== false; } get _number_of_forecasts() { return this._config.number_of_forecasts || 5; } // Météo France // Switches state get _one_hour_forecast() { return this._config.one_hour_forecast !== false; } get _alert_forecast() { return this._config.alert_forecast !== false; } get _animated_icons() { return this._config.animated_icons !== false; } // Config value get _alertEntity() { return this._config.alertEntity || ""; } get _cloudCoverEntity() { return this._config.cloudCoverEntity || ""; } get _freezeChanceEntity() { return this._config.freezeChanceEntity || ""; } get _rainChanceEntity() { return this._config.rainChanceEntity || ""; } get _rainForecastEntity() { return this._config.rainForecastEntity || ""; } get _snowChanceEntity() { return this._config.snowChanceEntity || ""; } get _uvEntity() { return this._config.uvEntity || ""; } get _detailEntity() { return this._config.detailEntity || ""; } firstUpdated() { HELPERS.then((help) => { if (help.importMoreInfoControl) { help.importMoreInfoControl("fan"); } }); } render() { if (!this.hass) { return html``; } return html`