Files
Home-Assistant/custom_components/maintenance_supporter/frontend/strategy/chunks/dialog-mount-3CFCNZ5R.js
T

2254 lines
144 KiB
JavaScript

import{a as $,b as r,c as q,d as c,e as x,f as g,g as l,i as V,j as s,k as Z,l as J,m as N,n as X,o as Q,p as tt,q as et,r as it,s as k}from"./chunk-GKOWV2CF.js";import{a}from"./chunk-LO2NM3CE.js";var E=class extends x{constructor(){super(...arguments);this.label="";this.value="";this.placeholder="";this.type="text";this.required=!1;this.disabled=!1}_onInput(t){let e=t.target.value;this.value=e,this.dispatchEvent(new CustomEvent("input",{bubbles:!0,composed:!0,detail:{value:e}}))}render(){return r`
<label class="field">
${this.label?r`<span class="label">${this.label}${this.required?r`<span class="req">*</span>`:c}</span>`:c}
<input
.value=${this.value??""}
.type=${this.type}
?required=${this.required}
?disabled=${this.disabled}
placeholder=${this.placeholder}
step=${this.step??c}
min=${this.min??c}
max=${this.max??c}
pattern=${this.pattern??c}
@input=${this._onInput}
@change=${this._onInput}
/>
${this.helper?r`<span class="helper">${this.helper}</span>`:c}
</label>
`}};E.styles=$`
:host { display: block; }
.field {
display: flex;
flex-direction: column;
gap: 4px;
}
.label {
font-size: 12px;
color: var(--secondary-text-color, #888);
font-weight: 500;
}
.req { color: var(--error-color, #f44336); margin-left: 2px; }
input {
padding: 8px 10px;
font-size: 14px;
background: var(--secondary-background-color, rgba(0,0,0,0.06));
color: var(--primary-text-color);
border: 1px solid var(--divider-color, rgba(255,255,255,0.12));
border-radius: 6px;
font-family: inherit;
width: 100%;
box-sizing: border-box;
outline: none;
}
input:focus {
border-color: var(--primary-color);
}
input:disabled { opacity: 0.5; cursor: not-allowed; }
.helper {
font-size: 11px;
color: var(--secondary-text-color);
font-style: italic;
}
`,a([g()],E.prototype,"label",2),a([g()],E.prototype,"value",2),a([g()],E.prototype,"placeholder",2),a([g()],E.prototype,"type",2),a([g({type:Boolean})],E.prototype,"required",2),a([g({type:Boolean})],E.prototype,"disabled",2),a([g()],E.prototype,"step",2),a([g()],E.prototype,"min",2),a([g()],E.prototype,"max",2),a([g()],E.prototype,"pattern",2),a([g()],E.prototype,"helper",2);customElements.get("ms-textfield")||customElements.define("ms-textfield",E);var f=class extends x{constructor(){super(...arguments);this.objects=[];this._open=!1;this._loading=!1;this._error="";this._name="";this._manufacturer="";this._model="";this._serialNumber="";this._areaId="";this._installationDate="";this._warrantyExpiry="";this._documentationUrl="";this._notes="";this._haDeviceId="";this._parentEntryId="";this._entryId=null}get _lang(){return this.hass?.language??navigator.language.split("-")[0]??"en"}openCreate(){this._entryId=null,this._name="",this._manufacturer="",this._model="",this._serialNumber="",this._areaId="",this._installationDate="",this._warrantyExpiry="",this._documentationUrl="",this._notes="",this._haDeviceId="",this._parentEntryId="",this._error="",this._open=!0}openEdit(t,e){this._entryId=t,this._name=e.name||"",this._manufacturer=e.manufacturer||"",this._model=e.model||"",this._serialNumber=e.serial_number||"",this._areaId=e.area_id||"",this._installationDate=e.installation_date||"",this._warrantyExpiry=e.warranty_expiry||"",this._documentationUrl=e.documentation_url||"",this._notes=e.notes||"",this._haDeviceId=e.ha_device_id||"",this._parentEntryId=e.parent_entry_id||"",this._error="",this._open=!0}async _save(){if(!this._loading&&this._name.trim()){this._loading=!0,this._error="";try{this._entryId?await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/object/update",entry_id:this._entryId,name:this._name,manufacturer:this._manufacturer||null,model:this._model||null,serial_number:this._serialNumber||null,area_id:this._areaId||null,installation_date:this._installationDate||null,warranty_expiry:this._warrantyExpiry||null,documentation_url:this._documentationUrl.trim()||null,notes:this._notes.trim()||null,ha_device_id:this._haDeviceId||null,parent_entry_id:this._parentEntryId||null}):await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/object/create",name:this._name,manufacturer:this._manufacturer||null,model:this._model||null,serial_number:this._serialNumber||null,area_id:this._areaId||null,installation_date:this._installationDate||null,warranty_expiry:this._warrantyExpiry||null,documentation_url:this._documentationUrl.trim()||null,notes:this._notes.trim()||null,ha_device_id:this._haDeviceId||null,parent_entry_id:this._parentEntryId||null}),this._open=!1,this.dispatchEvent(new CustomEvent("object-saved"))}catch(t){this._error=k(t,this._lang,s("save_error",this._lang))}finally{this._loading=!1}}}_parentChoices(){return(this.objects||[]).filter(t=>t.entry_id!==this._entryId)}_close(){this._open=!1}render(){if(!this._open)return r``;let t=this._lang,e=this._entryId?s("edit_object",t):s("new_object",t);return r`
<ha-dialog open @closed=${this._close}>
<div class="dialog-title">${e}</div>
<div class="content">
${this._error?r`<div class="error">${this._error}</div>`:c}
<ms-textfield
label="${s("name",t)}"
required
.value=${this._name}
@input=${i=>this._name=i.target.value}
></ms-textfield>
<ms-textfield
label="${s("manufacturer_optional",t)}"
.value=${this._manufacturer}
@input=${i=>this._manufacturer=i.target.value}
></ms-textfield>
<ms-textfield
label="${s("model_optional",t)}"
.value=${this._model}
@input=${i=>this._model=i.target.value}
></ms-textfield>
<ms-textfield
label="${s("serial_number_optional",t)}"
.value=${this._serialNumber}
@input=${i=>this._serialNumber=i.target.value}
></ms-textfield>
<ms-textfield
label="${s("documentation_url_optional",t)}"
type="url"
.value=${this._documentationUrl}
@input=${i=>this._documentationUrl=i.target.value}
></ms-textfield>
<ha-area-picker
.hass=${this.hass}
label="${s("area_id_optional",t)}"
.value=${this._areaId}
@value-changed=${i=>this._areaId=i.detail.value||""}
></ha-area-picker>
<ms-textfield
label="${s("installation_date_optional",t)}"
type="date"
.value=${this._installationDate}
@input=${i=>this._installationDate=i.target.value}
></ms-textfield>
<ms-textfield
label="${s("warranty_expiry_optional",t)}"
type="date"
.value=${this._warrantyExpiry}
@input=${i=>this._warrantyExpiry=i.target.value}
></ms-textfield>
<ha-form
.hass=${this.hass}
.data=${{device:this._haDeviceId||void 0}}
.schema=${[{name:"device",selector:{device:{}}}]}
.computeLabel=${()=>s("link_device_optional",t)}
@value-changed=${i=>this._haDeviceId=i.detail.value?.device||""}
></ha-form>
${this._parentChoices().length?r`<label class="textarea-field">
<span class="textarea-label">${s("parent_object_optional",t)}</span>
<select
class="parent-select"
.value=${this._parentEntryId}
@change=${i=>this._parentEntryId=i.target.value}
>
<option value="" ?selected=${!this._parentEntryId}>
${s("parent_none",t)}
</option>
${this._parentChoices().map(i=>r`<option
value=${i.entry_id}
?selected=${this._parentEntryId===i.entry_id}
>${i.object.name}</option>`)}
</select>
</label>`:c}
<label class="textarea-field">
<span class="textarea-label">${s("object_notes_optional",t)}</span>
<textarea
rows="3"
.value=${this._notes}
@input=${i=>this._notes=i.target.value}
></textarea>
</label>
</div>
<div class="dialog-actions">
<ha-button appearance="plain" @click=${this._close}>
${s("cancel",this._lang)}
</ha-button>
<ha-button
@click=${this._save}
.disabled=${this._loading||!this._name.trim()}
>
${this._loading?s("saving",this._lang):s("save",this._lang)}
</ha-button>
</div>
</ha-dialog>
`}};f.styles=$`
.dialog-title {
font-size: 18px;
font-weight: 500;
padding-bottom: 12px;
}
.content {
display: flex;
flex-direction: column;
gap: 16px;
min-width: 300px;
}
.dialog-actions {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
}
ms-textfield {
display: block;
}
.textarea-field {
display: flex; flex-direction: column; gap: 4px;
}
.textarea-label {
font-size: 12px; color: var(--secondary-text-color, #888); font-weight: 500;
}
.textarea-field textarea {
padding: 8px 10px; font-size: 14px; font-family: inherit;
background: var(--secondary-background-color, rgba(0,0,0,0.06));
color: var(--primary-text-color);
border: 1px solid var(--divider-color); border-radius: 6px;
resize: vertical;
}
.textarea-field textarea:focus {
outline: none; border-color: var(--primary-color);
}
.parent-select {
padding: 8px 10px; font-size: 14px; font-family: inherit;
background: var(--secondary-background-color, rgba(0,0,0,0.06));
color: var(--primary-text-color);
border: 1px solid var(--divider-color); border-radius: 6px;
}
.error {
color: var(--error-color, #f44336);
font-size: 13px;
}
`,a([g({attribute:!1})],f.prototype,"hass",2),a([g({attribute:!1})],f.prototype,"objects",2),a([l()],f.prototype,"_open",2),a([l()],f.prototype,"_loading",2),a([l()],f.prototype,"_error",2),a([l()],f.prototype,"_name",2),a([l()],f.prototype,"_manufacturer",2),a([l()],f.prototype,"_model",2),a([l()],f.prototype,"_serialNumber",2),a([l()],f.prototype,"_areaId",2),a([l()],f.prototype,"_installationDate",2),a([l()],f.prototype,"_warrantyExpiry",2),a([l()],f.prototype,"_documentationUrl",2),a([l()],f.prototype,"_notes",2),a([l()],f.prototype,"_haDeviceId",2),a([l()],f.prototype,"_parentEntryId",2),a([l()],f.prototype,"_entryId",2);customElements.get("maintenance-object-dialog")||customElements.define("maintenance-object-dialog",f);var W=class{constructor(d){this.usersCache=null;this.cacheTimestamp=0;this.CACHE_TTL_MS=6e4;this.hass=d}updateHass(d){this.hass=d}async getUsers(d=!1){let t=Date.now();if(!d&&this.usersCache&&t-this.cacheTimestamp<this.CACHE_TTL_MS)return this.usersCache;try{let e=await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/users/list"});return this.usersCache=e.users,this.cacheTimestamp=t,this.usersCache}catch(e){return console.error("Failed to fetch users:",e),this.usersCache||[]}}async assignUser(d,t,e){await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/task/assign_user",entry_id:d,task_id:t,user_id:e})}async getTasksByUser(d){return(await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/tasks/by_user",user_id:d})).tasks}getUserName(d){return!d||!this.usersCache?null:this.usersCache.find(e=>e.id===d)?.name||null}getUser(d){return!d||!this.usersCache?null:this.usersCache.find(t=>t.id===d)||null}getCurrentUserId(){return this.hass.user?.id||null}isCurrentUser(d){return d?d===this.getCurrentUserId():!1}clearCache(){this.usersCache=null,this.cacheTimestamp=0}};var $t=["cleaning","inspection","replacement","calibration","service","reading","custom"],xt=["low","normal","high"],kt=["time_based","weekdays","nth_weekday","day_of_month","sensor_based","one_time","manual"],st=["weekdays","nth_weekday","day_of_month"],at=["threshold","counter","state_change","runtime"],wt=[...at,"compound"];function Et(){return{entityIds:"",type:"threshold",above:"",below:"",forMinutes:"0",targetValue:"",deltaMode:!1,fromState:"",toState:"",targetChanges:"",runtimeHours:""}}function It(n){return{entityIds:(n.entity_ids||(n.entity_id?[n.entity_id]:[])).join(", "),type:n.type||"threshold",above:n.trigger_above?.toString()??"",below:n.trigger_below?.toString()??"",forMinutes:n.trigger_for_minutes?.toString()??"0",targetValue:n.trigger_target_value?.toString()??"",deltaMode:n.trigger_delta_mode||!1,fromState:n.trigger_from_state||"",toState:n.trigger_to_state||"",targetChanges:n.trigger_target_changes?.toString()??"",runtimeHours:n.trigger_runtime_hours?.toString()??""}}function Tt(n){let d=n.entityIds.split(",").map(e=>e.trim()).filter(Boolean);if(d.length===0)return null;let t={entity_id:d[0],entity_ids:d,type:n.type};if(n.type==="threshold"){let e=parseFloat(n.above);isNaN(e)||(t.trigger_above=e);let i=parseFloat(n.below);isNaN(i)||(t.trigger_below=i);let o=parseInt(n.forMinutes,10);isNaN(o)||(t.trigger_for_minutes=o)}else if(n.type==="counter"){let e=parseFloat(n.targetValue);isNaN(e)||(t.trigger_target_value=e),t.trigger_delta_mode=n.deltaMode}else if(n.type==="state_change"){n.fromState&&(t.trigger_from_state=n.fromState),n.toState&&(t.trigger_to_state=n.toState);let e=parseInt(n.targetChanges,10);isNaN(e)||(t.trigger_target_changes=e)}else if(n.type==="runtime"){let e=parseFloat(n.runtimeHours);isNaN(e)||(t.trigger_runtime_hours=e)}return t}function At(n){return Array.from({length:7},(d,t)=>Q(t,n,"short"))}function Lt(n){let d=new Intl.DateTimeFormat(n||"en",{month:"short"});return Array.from({length:12},(t,e)=>d.format(new Date(2021,e,1)))}var p=class extends x{constructor(){super(...arguments);this.checklistsEnabled=!1;this.scheduleTimeEnabled=!1;this.completionActionsEnabled=!1;this.defaultWarningDays=7;this._open=!1;this._loading=!1;this._error="";this._entryId="";this._taskId=null;this._objectChoices=[];this._name="";this._type="custom";this._scheduleType="time_based";this._intervalDays="30";this._intervalUnit="days";this._dueDate="";this._warningDays="7";this._earliestCompletionDays="";this._intervalAnchor="completion";this._weekdays=[];this._nth="1";this._nthWeekday="5";this._domDay="1";this._domLastDay=!1;this._domBusiness=!1;this._calOffset="0";this._seasonMonths=[];this._endsMode="never";this._endsCount="";this._endsUntil="";this._notes="";this._documentationUrl="";this._customIcon="";this._priority="normal";this._labels="";this._enabled=!0;this._triggerEntityId="";this._triggerEntityIds=[];this._triggerEntityLogic="any";this._triggerAttribute="";this._triggerType="threshold";this._triggerAbove="";this._triggerBelow="";this._triggerForMinutes="0";this._triggerTargetValue="";this._triggerDeltaMode=!1;this._autoCompleteOnRecovery=!1;this._triggerFromState="";this._triggerToState="";this._triggerTargetChanges="";this._triggerRuntimeHours="";this._compoundLogic="AND";this._compoundConditions=[];this._suggestedAttributes=[];this._availableAttributes=[];this._entityDomain="";this._lastPerformed="";this._nfcTagId="";this._readingUnit="";this._availableTags=[];this._responsibleUserId=null;this._assigneePool=[];this._rotationStrategy="";this._availableUsers=[];this._checklistText="";this._scheduleTime="";this._actionService="";this._actionTargetEntity="";this._actionData={};this._actionDataJsonFallback="";this._actionTesting=!1;this._actionTestResult="";this._actionTestError="";this._qcNotes="";this._qcCost="";this._qcDuration="";this._qcFeedback="";this._environmentalEntity="";this._environmentalAttribute="";this._environmentalInitial="";this._environmentalAttributeInitial="";this._userService=null}get _lang(){return this.hass?.language??navigator.language.split("-")[0]??"en"}async openCreate(t,e){this._entryId=t,this._taskId=null,this._error="",!t&&e&&e.length>0?(this._objectChoices=e.map(i=>({entry_id:i.entry_id,name:i.object.name})).sort((i,o)=>i.name.localeCompare(o.name)),this._entryId=this._objectChoices[0].entry_id):this._objectChoices=[],this._resetFields(),await Promise.all([this._loadUsers(),this._loadTags()]),this._open=!0}async openEdit(t,e){this._entryId=t,this._taskId=e.id,this._error="",this._name=e.name,this._type=e.type,this._scheduleType=e.schedule_type,this._intervalDays=e.interval_days!=null?String(e.interval_days):"",this._intervalUnit=e.interval_unit||"days",this._dueDate=e.due_date||"";let i=e.schedule;this._weekdays=i?.kind==="weekdays"?[...i.weekdays??[]]:[],this._nth=i?.kind==="nth_weekday"?String(i.nth??1):"1",this._nthWeekday=i?.kind==="nth_weekday"?String(i.weekday??5):"5",this._domDay=i?.kind==="day_of_month"&&(i.day??1)>=1?String(i.day??1):"1",this._domLastDay=i?.kind==="day_of_month"&&i.day===-1,this._domBusiness=i?.kind==="day_of_month"&&i.business===!0,this._calOffset=i?.offset?String(i.offset):"0",this._seasonMonths=Array.isArray(i?.season_months)?[...i.season_months]:[];let o=i?.ends;o&&typeof o.count=="number"?(this._endsMode="count",this._endsCount=String(o.count),this._endsUntil=""):o&&typeof o.until=="string"?(this._endsMode="until",this._endsUntil=o.until,this._endsCount=""):(this._endsMode="never",this._endsCount="",this._endsUntil=""),this._warningDays=e.warning_days.toString(),this._earliestCompletionDays=e.earliest_completion_days!=null?String(e.earliest_completion_days):"",this._intervalAnchor=e.interval_anchor||"completion",this._notes=e.notes||"",this._documentationUrl=e.documentation_url||"",this._customIcon=e.custom_icon||"",this._priority=e.priority||"normal",this._labels=(e.labels||[]).join(", "),this._enabled=e.enabled!==!1,this._lastPerformed=e.last_performed||"",this._nfcTagId=e.nfc_tag_id||"",this._readingUnit=e.reading_unit||"",this._responsibleUserId=e.responsible_user_id||null,this._assigneePool=[...e.assignee_pool||[]],this._rotationStrategy=e.rotation_strategy||"",this._checklistText=(e.checklist||[]).join(`
`),this._scheduleTime=e.schedule_time||"";let _=e.on_complete_action;if(_&&_.service){this._actionService=_.service;let u=_.target?.entity_id;this._actionTargetEntity=Array.isArray(u)?u[0]||"":u||"",this._actionData=_.data&&typeof _.data=="object"?{..._.data}:{},this._actionDataJsonFallback=""}else this._actionService="",this._actionTargetEntity="",this._actionData={},this._actionDataJsonFallback="";let h=e.quick_complete_defaults;this._qcNotes=h?.notes||"",this._qcCost=h?.cost!=null?String(h.cost):"",this._qcDuration=h?.duration!=null?String(h.duration):"",this._qcFeedback=h?.feedback||"";let m=e.adaptive_config||{};if(this._environmentalEntity=m.environmental_entity||"",this._environmentalAttribute=m.environmental_attribute||"",this._environmentalInitial=this._environmentalEntity,this._environmentalAttributeInitial=this._environmentalAttribute,e.trigger_config){let u=e.trigger_config;this._triggerEntityId=u.entity_id||"",this._triggerEntityIds=u.entity_ids||(u.entity_id?[u.entity_id]:[]),this._triggerEntityLogic=u.entity_logic||"any",this._triggerAttribute=u.attribute||"",this._triggerType=u.type||"threshold",this._triggerAbove=u.trigger_above?.toString()||"",this._triggerBelow=u.trigger_below?.toString()||"",this._triggerForMinutes=u.trigger_for_minutes?.toString()||"0",this._triggerTargetValue=u.trigger_target_value?.toString()||"",this._triggerDeltaMode=u.trigger_delta_mode||!1,this._autoCompleteOnRecovery=u.auto_complete_on_recovery||!1,this._triggerFromState=u.trigger_from_state||"",this._triggerToState=u.trigger_to_state||"",this._triggerTargetChanges=u.trigger_target_changes?.toString()||"",this._triggerRuntimeHours=u.trigger_runtime_hours?.toString()||"",u.type==="compound"?(this._compoundLogic=u.compound_logic==="OR"?"OR":"AND",this._compoundConditions=(u.conditions||[]).map(It)):(this._compoundLogic="AND",this._compoundConditions=[])}else this._resetTriggerFields();this._triggerEntityId&&this._fetchEntityAttributes(this._triggerEntityId),await Promise.all([this._loadUsers(),this._loadTags()]),this._open=!0}_resetFields(){this._name="",this._type="custom",this._scheduleType="time_based",this._intervalDays="30",this._intervalUnit="days",this._dueDate="",this._warningDays=String(this.defaultWarningDays),this._earliestCompletionDays="",this._intervalAnchor="completion",this._weekdays=[],this._nth="1",this._nthWeekday="5",this._domDay="1",this._domLastDay=!1,this._domBusiness=!1,this._calOffset="0",this._seasonMonths=[],this._endsMode="never",this._endsCount="",this._endsUntil="",this._notes="",this._documentationUrl="",this._customIcon="",this._priority="normal",this._labels="",this._enabled=!0,this._lastPerformed="",this._nfcTagId="",this._readingUnit="",this._responsibleUserId=null,this._assigneePool=[],this._rotationStrategy="",this._checklistText="",this._scheduleTime="",this._environmentalEntity="",this._environmentalAttribute="",this._environmentalInitial="",this._environmentalAttributeInitial="",this._actionService="",this._actionTargetEntity="",this._actionData={},this._actionDataJsonFallback="",this._actionTesting=!1,this._actionTestResult="",this._qcNotes="",this._qcCost="",this._qcDuration="",this._qcFeedback="",this._resetTriggerFields()}_resetTriggerFields(){this._triggerEntityId="",this._triggerEntityIds=[],this._triggerEntityLogic="any",this._triggerAttribute="",this._suggestedAttributes=[],this._availableAttributes=[],this._entityDomain="",this._triggerType="threshold",this._triggerAbove="",this._triggerBelow="",this._triggerForMinutes="0",this._triggerTargetValue="",this._triggerDeltaMode=!1,this._autoCompleteOnRecovery=!1,this._triggerFromState="",this._triggerToState="",this._triggerTargetChanges="",this._triggerRuntimeHours="",this._compoundLogic="AND",this._compoundConditions=[]}async _loadUsers(){this._userService||(this._userService=new W(this.hass));try{this._availableUsers=await this._userService.getUsers()}catch(t){console.error("Failed to load users:",t),this._availableUsers=[]}}_toggleAssignee(t){this._assigneePool=this._assigneePool.includes(t)?this._assigneePool.filter(e=>e!==t):[...this._assigneePool,t]}async _testAction(){let t=this._actionService.trim();if(!t||!/^[a-z][a-z0-9_]*\.[a-z0-9_]+$/.test(t)){this._actionTestResult="error",this._actionTestError="Invalid service format (expected 'domain.service')",setTimeout(()=>{this._actionTestResult="",this._actionTestError=""},5e3);return}let[e,i]=t.split(".");if(!this.hass?.services?.[e]?.[i]){this._actionTestResult="error",this._actionTestError=`Service "${t}" is not registered in Home Assistant. Check spelling and that the integration providing it is loaded.`,setTimeout(()=>{this._actionTestResult="",this._actionTestError=""},8e3);return}let o=this._actionTargetEntity.trim();if(o){let _=o.split(".")[0];if(_!==e&&!new Set(["homeassistant","scene","notify","persistent_notification"]).has(e)){this._actionTestResult="error",this._actionTestError=`Service "${t}" only works on ${e}.* entities; entity "${o}" is in ${_}.* \u2014 pick a service that matches the entity domain (e.g. ${_}.${i})`,setTimeout(()=>{this._actionTestResult="",this._actionTestError=""},8e3);return}if(!this.hass.states?.[o]){this._actionTestResult="error",this._actionTestError=`Target entity "${o}" not found in Home Assistant \u2014 the entity may have been renamed or its integration removed.`,setTimeout(()=>{this._actionTestResult="",this._actionTestError=""},8e3);return}}this._actionTestResult="ok",setTimeout(()=>{this._actionTestResult="",this._actionTestError=""},5e3)}_buildActionData(){if(this._actionDataJsonFallback.trim())try{let t=JSON.parse(this._actionDataJsonFallback);if(t&&typeof t=="object"&&!Array.isArray(t))return t}catch{}return{...this._actionData}}_serviceSchema(){let t=this._actionService.trim();if(!t||!/^[a-z][a-z0-9_]*\.[a-z0-9_]+$/.test(t))return null;let[e,i]=t.split("."),o=this.hass?.services?.[e]?.[i]?.fields;return!o||Object.keys(o).length===0?null:Object.entries(o).map(([_,h])=>({name:_,required:!!h.required,selector:h.selector||{text:{}}}))}_renderCompletionActionsSection(t){if(!this.completionActionsEnabled)return c;let e=this._serviceSchema();return r`
<details class="ca-section">
<summary>${s("on_complete_action_title",t)}</summary>
<p class="field-help">${s("on_complete_action_desc",t)}</p>
<ha-service-picker
.hass=${this.hass}
.value=${this._actionService}
@value-changed=${i=>{this._actionService=i.detail.value||"";let o=this._serviceSchema();if(o){let _=new Set(o.map(h=>h.name));this._actionData=Object.fromEntries(Object.entries(this._actionData).filter(([h])=>_.has(h)))}}}
></ha-service-picker>
<ha-form
.hass=${this.hass}
.schema=${[{name:"target_entity",selector:{entity:{}}}]}
.data=${{target_entity:this._actionTargetEntity}}
.computeLabel=${()=>s("on_complete_action_target",t)}
@value-changed=${i=>{let o=i.detail.value;this._actionTargetEntity=o.target_entity||""}}
></ha-form>
<p class="field-help ca-domain-hint">
${s("on_complete_action_target_hint",t)}
</p>
${e?r`
<ha-form
class="ca-data-form"
.hass=${this.hass}
.schema=${e}
.data=${this._actionData}
@value-changed=${i=>{this._actionData={...i.detail.value}}}
></ha-form>
`:r`
<ms-textfield
label="${s("on_complete_action_data",t)}"
placeholder="{}"
.value=${this._actionDataJsonFallback}
@input=${i=>{this._actionDataJsonFallback=i.target.value}}
></ms-textfield>
`}
<div class="ca-test-row">
<button type="button" ?disabled=${this._actionTesting||!this._actionService}
@click=${this._testAction}>
${this._actionTesting?"\u2026":s("on_complete_action_test",t)}
</button>
${this._actionTestResult==="ok"?r`<span class="ca-test-ok">${s("on_complete_action_test_success",t)}</span>`:c}
${this._actionTestResult==="error"?r`<div class="ca-test-error-block">
<span class="ca-test-error">${s("on_complete_action_test_failed",t)}</span>
${this._actionTestError?r`<div class="ca-test-error-detail">${this._actionTestError}</div>`:c}
</div>`:c}
</div>
</details>
<details class="ca-section">
<summary>${s("quick_complete_defaults_title",t)}</summary>
<p class="field-help">${s("quick_complete_defaults_desc",t)}</p>
<ms-textfield
label="${s("quick_complete_defaults_notes",t)}"
.value=${this._qcNotes}
@input=${i=>{this._qcNotes=i.target.value}}
></ms-textfield>
<ms-textfield
label="${s("quick_complete_defaults_cost",t)}"
type="number" min="0" step="0.01"
.value=${this._qcCost}
@input=${i=>{this._qcCost=i.target.value}}
></ms-textfield>
<ms-textfield
label="${s("quick_complete_defaults_duration",t)}"
type="number" min="0" step="1"
.value=${this._qcDuration}
@input=${i=>{this._qcDuration=i.target.value}}
></ms-textfield>
<select class="qc-feedback"
.value=${this._qcFeedback}
@change=${i=>{this._qcFeedback=i.target.value}}>
<option value="">${s("quick_complete_defaults_feedback_none",t)}</option>
<option value="needed">${s("quick_complete_defaults_feedback_needed",t)}</option>
<option value="not_needed">${s("quick_complete_defaults_feedback_not_needed",t)}</option>
</select>
</details>
`}async _loadTags(){try{let t=await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/tags/list"});this._availableTags=t.tags||[]}catch{this._availableTags=[]}}async _fetchEntityAttributes(t){if(!t||!this.hass){this._suggestedAttributes=[],this._availableAttributes=[],this._entityDomain="";return}try{let e=await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/entity/attributes",entity_id:t});this._entityDomain=e.domain||"",this._suggestedAttributes=e.suggested_attributes||[],this._availableAttributes=e.available_attributes||[]}catch{this._suggestedAttributes=[],this._availableAttributes=[],this._entityDomain=""}}async _save(){if(!this._loading&&this._name.trim()){this._loading=!0,this._error="";try{let t={type:this._taskId?"maintenance_supporter/task/update":"maintenance_supporter/task/create",entry_id:this._entryId,name:this._name,task_type:this._type,schedule_type:this._scheduleType,warning_days:parseInt(this._warningDays,10)||7},e=this._earliestCompletionDays.trim();if(t.earliest_completion_days=e===""?null:Math.max(0,parseInt(e,10)||0),this._taskId&&(t.task_id=this._taskId),this._scheduleType==="one_time"?(t.due_date=this._dueDate||null,t.interval_days=null):st.includes(this._scheduleType)?(t.schedule={...this._buildSchedule(),...this._recurrenceExtras()},t.interval_days=null,this._taskId&&(t.due_date=null)):(this._taskId&&(t.due_date=null),this._scheduleType!=="manual"&&this._intervalDays?(t.interval_days=parseInt(this._intervalDays,10),t.interval_unit=this._intervalUnit,t.interval_anchor=this._intervalAnchor,this._scheduleType==="time_based"&&(t.schedule={kind:"interval",...this._recurrenceExtras()})):this._taskId&&(t.interval_days=null,t.interval_anchor="completion")),t.notes=this._notes||null,t.documentation_url=this._documentationUrl||null,t.custom_icon=this._customIcon||null,t.priority=this._priority,t.labels=this._labels.split(",").map(h=>h.trim()).filter(Boolean),t.enabled=this._enabled,t.last_performed=this._lastPerformed||null,t.nfc_tag_id=this._nfcTagId||null,t.reading_unit=this._readingUnit.trim()||null,t.responsible_user_id=this._responsibleUserId,t.assignee_pool=this._assigneePool,t.rotation_strategy=this._assigneePool.length>=2&&this._rotationStrategy?this._rotationStrategy:null,this._scheduleType==="sensor_based"&&this._triggerType==="compound"){let h=this._compoundConditions.map(Tt).filter(m=>m!==null);if(h.length>0){let m={type:"compound",compound_logic:this._compoundLogic,conditions:h};this._autoCompleteOnRecovery&&(m.auto_complete_on_recovery=!0),t.trigger_config=m}else this._taskId&&(t.trigger_config=null)}else if(this._scheduleType==="sensor_based"&&this._triggerEntityId){let h=this._triggerEntityIds.length>0?this._triggerEntityIds:[this._triggerEntityId],m={entity_id:h[0],entity_ids:h,type:this._triggerType};if(this._triggerAttribute&&(m.attribute=this._triggerAttribute),this._autoCompleteOnRecovery&&(m.auto_complete_on_recovery=!0),h.length>1&&(m.entity_logic=this._triggerEntityLogic),this._triggerType==="threshold"){if(this._triggerAbove){let u=parseFloat(this._triggerAbove);isNaN(u)||(m.trigger_above=u)}if(this._triggerBelow){let u=parseFloat(this._triggerBelow);isNaN(u)||(m.trigger_below=u)}if(this._triggerForMinutes){let u=parseInt(this._triggerForMinutes,10);isNaN(u)||(m.trigger_for_minutes=u)}}else if(this._triggerType==="counter"){if(this._triggerTargetValue){let u=parseFloat(this._triggerTargetValue);isNaN(u)||(m.trigger_target_value=u)}m.trigger_delta_mode=this._triggerDeltaMode}else if(this._triggerType==="state_change"){if(this._triggerFromState&&(m.trigger_from_state=this._triggerFromState),this._triggerToState&&(m.trigger_to_state=this._triggerToState),this._triggerTargetChanges){let u=parseInt(this._triggerTargetChanges,10);isNaN(u)||(m.trigger_target_changes=u)}}else if(this._triggerType==="runtime"&&this._triggerRuntimeHours){let u=parseFloat(this._triggerRuntimeHours);isNaN(u)||(m.trigger_runtime_hours=u)}t.trigger_config=m}else this._taskId&&(t.trigger_config=null);if(this.scheduleTimeEnabled&&this._scheduleType==="time_based"){let h=this._scheduleTime.trim();t.schedule_time=/^([01]\d|2[0-3]):[0-5]\d$/.test(h)?h:null}if(this.checklistsEnabled){let h=this._checklistText.split(`
`).map(m=>m.trim()).filter(Boolean).slice(0,100);t.checklist=h.length?h:null}if(this.completionActionsEnabled){let h=this._actionService.trim();if(h&&/^[a-z][a-z0-9_]*\.[a-z0-9_]+$/.test(h)){let I={service:h},F=this._actionTargetEntity.trim();F&&(I.target={entity_id:F});let w=this._buildActionData();Object.keys(w).length>0&&(I.data=w),t.on_complete_action=I}else t.on_complete_action=null;let m={};this._qcNotes.trim()&&(m.notes=this._qcNotes.trim());let u=parseFloat(this._qcCost);!isNaN(u)&&u>=0&&(m.cost=u);let y=parseInt(this._qcDuration,10);!isNaN(y)&&y>=0&&(m.duration=y),this._qcFeedback&&(m.feedback=this._qcFeedback),t.quick_complete_defaults=Object.keys(m).length?m:null}let i=await this.hass.connection.sendMessagePromise(t),o=this._taskId||i?.task_id,_=this._environmentalEntity!==this._environmentalInitial||this._environmentalAttribute!==this._environmentalAttributeInitial;if(o&&this._scheduleType==="sensor_based"&&_)try{await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/task/set_environmental_entity",entry_id:this._entryId,task_id:o,environmental_entity:this._environmentalEntity||null,environmental_attribute:this._environmentalAttribute||null}),this._environmentalInitial=this._environmentalEntity,this._environmentalAttributeInitial=this._environmentalAttribute}catch{}this._open=!1,this.dispatchEvent(new CustomEvent("task-saved"))}catch(t){this._error=k(t,this._lang,s("save_error",this._lang))}finally{this._loading=!1}}}_close(){this._open=!1}_renderTriggerFields(){if(this._scheduleType!=="sensor_based")return c;let t=this._lang,e=this._triggerType==="compound";return r`
<h3>${s("trigger_configuration",t)}</h3>
<div class="select-row">
<label>${s("trigger_type",t)}</label>
<select
.value=${this._triggerType}
@change=${i=>this._triggerType=i.target.value}
>
${wt.map(i=>r`<option value=${i} ?selected=${i===this._triggerType}>${s(i,t)}</option>`)}
</select>
</div>
${e?this._renderCompoundEditor():r`
<ms-textfield
label="${s("entity_id",t)} (${s("comma_separated",t)})"
.value=${this._triggerEntityIds.length>0?this._triggerEntityIds.join(", "):this._triggerEntityId}
@input=${i=>{let _=i.target.value.split(",").map(h=>h.trim()).filter(Boolean);this._triggerEntityId=_[0]||"",this._triggerEntityIds=_,_[0]&&this._fetchEntityAttributes(_[0])}}
></ms-textfield>
${this._triggerEntityIds.length>1?r`
<div class="select-row">
<label>${s("entity_logic",t)}</label>
<select
.value=${this._triggerEntityLogic}
@change=${i=>this._triggerEntityLogic=i.target.value}
>
<option value="any" ?selected=${this._triggerEntityLogic==="any"}>${s("entity_logic_any",t)}</option>
<option value="all" ?selected=${this._triggerEntityLogic==="all"}>${s("entity_logic_all",t)}</option>
</select>
</div>
`:c}
${this._availableAttributes.length>0?r`
<div class="select-row">
<label>${s("attribute_optional",t)}</label>
<select
.value=${this._triggerAttribute}
@change=${i=>this._triggerAttribute=i.target.value}
>
<option value="" ?selected=${!this._triggerAttribute}>${s("use_entity_state",t)}</option>
${this._suggestedAttributes.map(i=>r`<option value=${i} ?selected=${i===this._triggerAttribute}>${i} ★</option>`)}
${this._availableAttributes.filter(i=>!this._suggestedAttributes.includes(i.name)).map(i=>r`<option value=${i.name} ?selected=${i.name===this._triggerAttribute}>${i.name}${i.numeric?"":" (non-numeric)"}</option>`)}
</select>
</div>
`:r`
<ms-textfield
label="${s("attribute_optional",t)}"
.value=${this._triggerAttribute}
@input=${i=>this._triggerAttribute=i.target.value}
></ms-textfield>
`}
${this._renderTriggerTypeFields()}
`}
<label>
<input
type="checkbox"
.checked=${this._autoCompleteOnRecovery}
@change=${i=>this._autoCompleteOnRecovery=i.target.checked}
/>
${s("auto_complete_on_recovery",t)}
</label>
<div class="field-help">${s("auto_complete_on_recovery_help",t)}</div>
<ms-textfield
label="${s("safety_interval",t)}"
type="number"
.value=${this._intervalDays}
@input=${i=>this._intervalDays=i.target.value}
></ms-textfield>
${this._intervalDays?this._renderUnitSelect():c}
`}_patchCondition(t,e){this._compoundConditions=this._compoundConditions.map((i,o)=>o===t?{...i,...e}:i)}_addCondition(){this._compoundConditions=[...this._compoundConditions,Et()]}_removeCondition(t){this._compoundConditions=this._compoundConditions.filter((e,i)=>i!==t)}_renderCompoundEditor(){let t=this._lang;return r`
<div class="select-row">
<label>${s("compound_logic",t)}</label>
<select
.value=${this._compoundLogic}
@change=${e=>this._compoundLogic=e.target.value}
>
<option value="AND" ?selected=${this._compoundLogic==="AND"}>${s("compound_logic_and",t)}</option>
<option value="OR" ?selected=${this._compoundLogic==="OR"}>${s("compound_logic_or",t)}</option>
</select>
</div>
<div class="field-help">${s("compound_help",t)}</div>
${this._compoundConditions.length===0?r`<div class="field-help">${s("compound_no_conditions",t)}</div>`:this._compoundConditions.map((e,i)=>this._renderCondition(e,i))}
<button type="button" class="secondary-btn" @click=${()=>this._addCondition()}>
+ ${s("compound_add_condition",t)}
</button>
`}_renderCondition(t,e){let i=this._lang,o=e+1;return r`
<div class="compound-condition">
<div class="compound-condition-head">
<span class="compound-condition-title">${s("compound_condition",i)} ${o}</span>
<button
type="button"
class="icon-btn"
title="${s("compound_remove_condition",i)}"
@click=${()=>this._removeCondition(e)}
>✕</button>
</div>
<ms-textfield
label="${s("entity_id",i)} (${s("comma_separated",i)})"
.value=${t.entityIds}
@input=${_=>this._patchCondition(e,{entityIds:_.target.value})}
></ms-textfield>
<div class="select-row">
<label>${s("trigger_type",i)}</label>
<select
.value=${t.type}
@change=${_=>this._patchCondition(e,{type:_.target.value})}
>
${at.map(_=>r`<option value=${_} ?selected=${_===t.type}>${s(_,i)}</option>`)}
</select>
</div>
${this._renderConditionTypeFields(t,e)}
</div>
`}_renderConditionTypeFields(t,e){let i=this._lang;return t.type==="threshold"?r`
<ms-textfield label="${s("trigger_above",i)}" type="number" .value=${t.above}
@input=${o=>this._patchCondition(e,{above:o.target.value})}></ms-textfield>
<ms-textfield label="${s("trigger_below",i)}" type="number" .value=${t.below}
@input=${o=>this._patchCondition(e,{below:o.target.value})}></ms-textfield>
<ms-textfield label="${s("for_minutes",i)}" type="number" .value=${t.forMinutes}
@input=${o=>this._patchCondition(e,{forMinutes:o.target.value})}></ms-textfield>
`:t.type==="counter"?r`
<ms-textfield label="${s("target_value",i)}" type="number" .value=${t.targetValue}
@input=${o=>this._patchCondition(e,{targetValue:o.target.value})}></ms-textfield>
<label>
<input type="checkbox" .checked=${t.deltaMode}
@change=${o=>this._patchCondition(e,{deltaMode:o.target.checked})} />
${s("delta_mode",i)}
</label>
`:t.type==="state_change"?r`
<ms-textfield label="${s("from_state_optional",i)}" .value=${t.fromState}
@input=${o=>this._patchCondition(e,{fromState:o.target.value})}></ms-textfield>
<ms-textfield label="${s("to_state_optional",i)}" .value=${t.toState}
@input=${o=>this._patchCondition(e,{toState:o.target.value})}></ms-textfield>
<ms-textfield label="${s("target_changes",i)}" type="number" .value=${t.targetChanges}
@input=${o=>this._patchCondition(e,{targetChanges:o.target.value})}></ms-textfield>
`:t.type==="runtime"?r`
<ms-textfield label="${s("runtime_hours",i)}" type="number" .value=${t.runtimeHours}
@input=${o=>this._patchCondition(e,{runtimeHours:o.target.value})}></ms-textfield>
`:c}_renderUnitSelect(){let t=this._lang;return r`
<div class="select-row">
<label>${s("interval_unit",t)}</label>
<select
.value=${this._intervalUnit}
@change=${e=>this._intervalUnit=e.target.value}
>
${["days","weeks","months","years"].map(e=>r`<option value=${e} ?selected=${e===this._intervalUnit}>${s("unit_"+e,t)}</option>`)}
</select>
</div>`}_toggleWeekday(t){this._weekdays=this._weekdays.includes(t)?this._weekdays.filter(e=>e!==t):[...this._weekdays,t]}_buildSchedule(){let t=i=>{let o=parseInt(this._calOffset,10)||0;return o&&(i.offset=Math.max(-15,Math.min(o,15))),i};if(this._scheduleType==="weekdays")return t({kind:"weekdays",weekdays:[...this._weekdays].sort((i,o)=>i-o)});if(this._scheduleType==="nth_weekday")return t({kind:"nth_weekday",nth:parseInt(this._nth,10),weekday:parseInt(this._nthWeekday,10)});let e={kind:"day_of_month",day:this._domLastDay?-1:parseInt(this._domDay,10)||1};return this._domBusiness&&(e.business=!0),t(e)}_recurrenceExtras(){let t={};if(this._seasonMonths.length&&(t.season_months=[...this._seasonMonths].sort((e,i)=>e-i)),this._endsMode==="count"){let e=parseInt(this._endsCount,10);e>=1&&(t.ends={count:e})}else this._endsMode==="until"&&this._endsUntil&&(t.ends={until:this._endsUntil});return t}_toggleSeasonMonth(t){this._seasonMonths=this._seasonMonths.includes(t)?this._seasonMonths.filter(e=>e!==t):[...this._seasonMonths,t]}_renderRecurrenceExtras(){let t=this._lang;if(!(this._scheduleType==="time_based"||st.includes(this._scheduleType)))return c;let i=Lt(t);return r`
<label class="field-label">${s("season_window_label",t)}</label>
<div class="field-help">${s("season_window_hint",t)}</div>
<div class="weekday-chips season-chips">
${i.map((o,_)=>r`
<button
type="button"
class="season-chip ${this._seasonMonths.includes(_+1)?"selected":""}"
@click=${()=>this._toggleSeasonMonth(_+1)}
>${o}</button>`)}
</div>
<label class="field-label">${s("series_end_label",t)}</label>
<div class="select-row">
<select .value=${this._endsMode}
@change=${o=>this._endsMode=o.target.value}>
<option value="never" ?selected=${this._endsMode==="never"}>${s("series_end_never",t)}</option>
<option value="count" ?selected=${this._endsMode==="count"}>${s("series_end_after_count",t)}</option>
<option value="until" ?selected=${this._endsMode==="until"}>${s("series_end_until",t)}</option>
</select>
</div>
${this._endsMode==="count"?r`
<ms-textfield
label="${s("series_end_count_label",t)}"
type="number" min="1"
.value=${this._endsCount}
@input=${o=>this._endsCount=o.target.value}
></ms-textfield>`:c}
${this._endsMode==="until"?r`
<ms-textfield
label="${s("series_end_until_label",t)}"
type="date"
.value=${this._endsUntil}
@input=${o=>this._endsUntil=o.target.value}
></ms-textfield>`:c}
`}_renderCalendarFields(){let t=this._lang,e=At(t);if(this._scheduleType==="weekdays")return r`
<label class="field-label">${s("recurrence_on_days",t)}</label>
<div class="weekday-chips">
${e.map((i,o)=>r`
<button
type="button"
class="weekday-chip ${this._weekdays.includes(o)?"selected":""}"
@click=${()=>this._toggleWeekday(o)}
>${i}</button>`)}
</div>
${this._renderCalOffsetField()}`;if(this._scheduleType==="nth_weekday"){let i=[["1",s("ord_1",t)],["2",s("ord_2",t)],["3",s("ord_3",t)],["4",s("ord_4",t)],["5",s("ord_5",t)],["-1",s("ord_last",t)]];return r`
<div class="select-row">
<label>${s("recurrence_occurrence",t)}</label>
<select .value=${this._nth} @change=${o=>this._nth=o.target.value}>
${i.map(([o,_])=>r`<option value=${o} ?selected=${o===this._nth}>${_}</option>`)}
</select>
</div>
<div class="select-row">
<label>${s("recurrence_weekday",t)}</label>
<select .value=${this._nthWeekday} @change=${o=>this._nthWeekday=o.target.value}>
${e.map((o,_)=>r`<option value=${String(_)} ?selected=${String(_)===this._nthWeekday}>${o}</option>`)}
</select>
</div>
${this._renderCalOffsetField()}`}return this._scheduleType==="day_of_month"?r`
${this._domLastDay?c:r`
<ms-textfield
label="${s("recurrence_day",t)}"
type="number"
min="1"
max="31"
.value=${this._domDay}
@input=${i=>this._domDay=i.target.value}
></ms-textfield>`}
<label class="checkbox-row">
<input type="checkbox" .checked=${this._domLastDay}
@change=${i=>this._domLastDay=i.target.checked} />
<span>${s("recurrence_last_day",t)}</span>
</label>
<label class="checkbox-row">
<input type="checkbox" .checked=${this._domBusiness}
@change=${i=>this._domBusiness=i.target.checked} />
<span>${s("recurrence_business_day",t)}</span>
</label>
${this._renderCalOffsetField()}`:c}_renderCalOffsetField(){let t=this._lang;return r`
<ms-textfield
label="${s("recurrence_offset",t)}"
helper="${s("recurrence_offset_help",t)}"
type="number"
min="-15"
max="15"
.value=${this._calOffset}
@input=${e=>this._calOffset=e.target.value}
></ms-textfield>`}_renderTriggerTypeFields(){let t=this._lang;return this._triggerType==="threshold"?r`
<ms-textfield
label="${s("trigger_above",t)}"
type="number"
step="any"
.value=${this._triggerAbove}
@input=${e=>this._triggerAbove=e.target.value}
></ms-textfield>
<ms-textfield
label="${s("trigger_below",t)}"
type="number"
step="any"
.value=${this._triggerBelow}
@input=${e=>this._triggerBelow=e.target.value}
></ms-textfield>
<ms-textfield
label="${s("for_at_least_minutes",t)}"
type="number"
.value=${this._triggerForMinutes}
@input=${e=>this._triggerForMinutes=e.target.value}
></ms-textfield>
`:this._triggerType==="counter"?r`
<ms-textfield
label="${s("target_value",t)}"
type="number"
step="any"
.value=${this._triggerTargetValue}
@input=${e=>this._triggerTargetValue=e.target.value}
></ms-textfield>
<label>
<input
type="checkbox"
.checked=${this._triggerDeltaMode}
@change=${e=>this._triggerDeltaMode=e.target.checked}
/>
${s("delta_mode",t)}
</label>
`:this._triggerType==="state_change"?r`
<ms-textfield
label="${s("from_state_optional",t)}"
.value=${this._triggerFromState}
@input=${e=>this._triggerFromState=e.target.value}
></ms-textfield>
<div class="field-help">${s("state_value_help",t)}</div>
<ms-textfield
label="${s("to_state_optional",t)}"
.value=${this._triggerToState}
@input=${e=>this._triggerToState=e.target.value}
></ms-textfield>
<ms-textfield
label="${s("target_changes",t)}"
type="number"
min="1"
.value=${this._triggerTargetChanges}
@input=${e=>this._triggerTargetChanges=e.target.value}
></ms-textfield>
<div class="field-help">${s("target_changes_help",t)}</div>
`:this._triggerType==="runtime"?r`
<ms-textfield
label="${s("runtime_hours",t)}"
type="number"
step="1"
.value=${this._triggerRuntimeHours}
@input=${e=>this._triggerRuntimeHours=e.target.value}
></ms-textfield>
`:c}render(){if(!this._open)return r``;let t=this._lang,e=this._taskId?s("edit_task",t):s("new_task",t);return r`
<ha-dialog open @closed=${this._close}>
<div class="dialog-title">${e}</div>
<div class="content">
${this._error?r`<div class="error">${this._error}</div>`:c}
${this._objectChoices.length>0?r`
<div class="select-row">
<label>${s("object",t)}</label>
<select
.value=${this._entryId}
@change=${i=>this._entryId=i.target.value}
>
${this._objectChoices.map(i=>r`<option value=${i.entry_id} ?selected=${i.entry_id===this._entryId}>${i.name}</option>`)}
</select>
</div>
`:c}
<ms-textfield
label="${s("task_name",t)}"
required
.value=${this._name}
@input=${i=>this._name=i.target.value}
></ms-textfield>
<div class="select-row">
<label>${s("maintenance_type",t)}</label>
<select
.value=${this._type}
@change=${i=>this._type=i.target.value}
>
${$t.map(i=>r`<option value=${i} ?selected=${i===this._type}>${s(i,t)}</option>`)}
</select>
</div>
${this._type==="reading"?r`
<ms-textfield
label="${s("reading_unit_label",t)}"
.value=${this._readingUnit}
@input=${i=>this._readingUnit=i.target.value}
></ms-textfield>
<div class="field-help">${s("reading_unit_help",t)}</div>
`:c}
<div class="select-row">
<label>${s("priority",t)}</label>
<select
.value=${this._priority}
@change=${i=>this._priority=i.target.value}
>
${xt.map(i=>r`<option value=${i} ?selected=${i===this._priority}>${s("priority_"+i,t)}</option>`)}
</select>
</div>
<div class="field">
<label>${s("labels",t)}</label>
<input
type="text"
.value=${this._labels}
placeholder="${s("labels_placeholder",t)}"
@input=${i=>this._labels=i.target.value}
/>
<div class="field-help">${s("labels_help",t)}</div>
</div>
<div class="select-row">
<label>${s("schedule_type",t)}</label>
<select
.value=${this._scheduleType}
@change=${i=>this._scheduleType=i.target.value}
>
${kt.map(i=>r`<option value=${i} ?selected=${i===this._scheduleType}>${s(i,t)}</option>`)}
</select>
</div>
${this._scheduleType==="time_based"?r`
<ms-textfield
label="${s("interval_value",t)}"
type="number"
.value=${this._intervalDays}
@input=${i=>this._intervalDays=i.target.value}
></ms-textfield>
${this._renderUnitSelect()}
<div class="select-row">
<label>${s("interval_anchor",t)}</label>
<select
.value=${this._intervalAnchor}
@change=${i=>this._intervalAnchor=i.target.value}
>
<option value="completion" ?selected=${this._intervalAnchor==="completion"}>${s("anchor_completion",t)}</option>
<option value="planned" ?selected=${this._intervalAnchor==="planned"}>${s("anchor_planned",t)}</option>
</select>
</div>
${this.scheduleTimeEnabled?r`
<ms-textfield
label="${s("schedule_time_optional",t)}"
type="time"
.value=${this._scheduleTime}
helper="${s("schedule_time_help",t)}"
@input=${i=>this._scheduleTime=i.target.value}
></ms-textfield>
`:c}
`:c}
${this._renderCalendarFields()}
${this._scheduleType==="one_time"?r`
<ms-textfield
label="${s("due_date",t)}"
type="date"
.value=${this._dueDate}
@input=${i=>this._dueDate=i.target.value}
></ms-textfield>
`:c}
${this._renderRecurrenceExtras()}
<ms-textfield
label="${s("warning_days",t)}"
type="number"
.value=${this._warningDays}
@input=${i=>this._warningDays=i.target.value}
></ms-textfield>
<ms-textfield
label="${s("earliest_completion_days",t)}"
helper="${s("earliest_completion_days_help",t)}"
type="number"
.value=${this._earliestCompletionDays}
@input=${i=>this._earliestCompletionDays=i.target.value}
></ms-textfield>
${this.checklistsEnabled?r`
<h3>${s("checklist_steps_optional",t)}</h3>
<textarea
id="checklist-textarea"
class="checklist-textarea"
rows="5"
placeholder="${s("checklist_placeholder",t)}"
.value=${this._checklistText}
@input=${i=>this._checklistText=i.target.value}
></textarea>
<div class="field-help">${s("checklist_help",t)}</div>
`:c}
<ms-textfield
label="${s("last_performed_optional",t)}"
type="date"
.value=${this._lastPerformed}
@input=${i=>this._lastPerformed=i.target.value}
></ms-textfield>
<div class="select-row">
<label>${s("responsible_user",t)}</label>
<select
.value=${this._responsibleUserId||""}
@change=${i=>{let o=i.target.value;this._responsibleUserId=o||null}}
>
<option value="" ?selected=${!this._responsibleUserId}>${s("no_user_assigned",t)}</option>
${this._availableUsers.map(i=>r`<option value=${i.id} ?selected=${i.id===this._responsibleUserId}>${i.name}</option>`)}
</select>
</div>
${this._availableUsers.length>=2?r`
<div class="field">
<label>${s("shared_with",t)}</label>
<div class="field-help">${s("shared_with_help",t)}</div>
<div class="assignee-pool">
${this._availableUsers.map(i=>r`
<label class="pool-item">
<input type="checkbox"
.checked=${this._assigneePool.includes(i.id)}
@change=${()=>this._toggleAssignee(i.id)} />
<span>${i.name}</span>
</label>`)}
</div>
</div>
${this._assigneePool.length>=2?r`
<div class="select-row">
<label>${s("rotation_strategy",t)}</label>
<select
.value=${this._rotationStrategy}
@change=${i=>this._rotationStrategy=i.target.value}
>
<option value="" ?selected=${!this._rotationStrategy}>${s("rotation_none",t)}</option>
${["round_robin","least_completed","random"].map(i=>r`<option value=${i} ?selected=${i===this._rotationStrategy}>${s("rotation_"+i,t)}</option>`)}
</select>
</div>`:c}
`:c}
${this._renderTriggerFields()}
${this._scheduleType==="sensor_based"?r`
<ms-textfield
label="${s("environmental_entity_optional",t)}"
helper="${s("environmental_entity_helper",t)}"
.value=${this._environmentalEntity}
@input=${i=>this._environmentalEntity=i.target.value.trim()}
></ms-textfield>
${this._environmentalEntity?r`
<ms-textfield
label="${s("environmental_attribute_optional",t)}"
.value=${this._environmentalAttribute}
@input=${i=>this._environmentalAttribute=i.target.value.trim()}
></ms-textfield>
`:c}
`:c}
<ms-textfield
label="${s("notes_optional",t)}"
.value=${this._notes}
@input=${i=>this._notes=i.target.value}
></ms-textfield>
<ms-textfield
label="${s("documentation_url_optional",t)}"
.value=${this._documentationUrl}
@input=${i=>this._documentationUrl=i.target.value}
></ms-textfield>
<ha-icon-picker
.hass=${this.hass}
label="${s("custom_icon_optional",t)}"
.value=${this._customIcon}
@value-changed=${i=>this._customIcon=i.detail.value||""}
></ha-icon-picker>
${this._availableTags.length>0?r`
<div class="select-row">
<label>${s("nfc_tag_id_optional",t)}</label>
<select
.value=${this._nfcTagId}
@change=${i=>this._nfcTagId=i.target.value}
>
<option value="" ?selected=${!this._nfcTagId}>${s("no_nfc_tag",t)}</option>
${this._availableTags.map(i=>r`<option value=${i.id} ?selected=${i.id===this._nfcTagId}>${i.name}</option>`)}
</select>
<button type="button" class="link-button" @click=${this._loadTags}
title="${s("nfc_tags_refresh",t)}">↻</button>
</div>
`:r`
<ms-textfield
label="${s("nfc_tag_id_optional",t)}"
.value=${this._nfcTagId}
@input=${i=>this._nfcTagId=i.target.value}
></ms-textfield>
<div class="field-help">
${s("nfc_tags_empty_help",t)}
<a href="/config/tags">${s("nfc_tags_open_settings",t)}</a>
·
<button type="button" class="link-button" @click=${this._loadTags}>
${s("nfc_tags_refresh",t)}
</button>
</div>
`}
<label class="toggle-row">
<input
type="checkbox"
.checked=${this._enabled}
@change=${i=>this._enabled=i.target.checked}
/>
${s("task_enabled",t)}
</label>
${this._renderCompletionActionsSection(t)}
</div>
<div class="dialog-actions">
<ha-button appearance="plain" @click=${this._close}>${s("cancel",t)}</ha-button>
<ha-button
@click=${this._save}
.disabled=${this._loading||!this._name.trim()}
>
${this._loading?s("saving",t):s("save",t)}
</ha-button>
</div>
</ha-dialog>
`}};p.styles=$`
.dialog-title {
font-size: 18px;
font-weight: 500;
padding-bottom: 12px;
}
/* v1.3.0: completion-action sections */
.ca-section {
border: 1px solid var(--divider-color);
border-radius: 6px;
padding: 8px 12px;
margin-top: 8px;
}
.ca-section > summary {
cursor: pointer;
font-weight: 500;
}
.ca-section ms-textfield,
.ca-section ha-entity-picker,
.ca-section ha-service-picker,
.ca-section ha-form,
.ca-section .qc-feedback {
width: 100%;
margin-top: 8px;
display: block;
}
.ca-section .qc-feedback {
padding: 8px;
border: 1px solid var(--divider-color);
border-radius: 4px;
background: var(--card-background-color, #fff);
color: var(--primary-text-color);
}
.ca-test-row {
display: flex;
align-items: center;
gap: 12px;
margin-top: 8px;
}
.ca-test-ok { color: var(--success-color, #4caf50); font-size: 13px; }
.ca-test-error { color: var(--error-color, #f44336); font-size: 13px; font-weight: 500; }
.ca-test-error-block { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.ca-test-error-detail {
font-size: 12px;
color: var(--secondary-text-color);
background: rgba(244, 67, 54, 0.08);
padding: 6px 8px; border-radius: 4px;
line-height: 1.4;
word-break: break-word;
}
.content {
display: flex;
flex-direction: column;
gap: 12px;
min-width: 350px;
max-height: 70vh;
overflow-y: auto;
}
@media (max-width: 600px) {
.content {
min-width: 0;
max-height: none;
}
}
.dialog-actions {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
}
ms-textfield {
display: block;
}
.field-label {
font-size: 12px;
color: var(--secondary-text-color);
}
.checklist-textarea {
width: 100%;
min-height: 88px;
padding: 8px;
font-family: inherit;
font-size: 14px;
border: 1px solid var(--divider-color);
border-radius: 4px;
background: var(--card-background-color);
color: var(--primary-text-color);
resize: vertical;
box-sizing: border-box;
}
.field-help {
font-size: 12px;
color: var(--secondary-text-color);
}
.field-help a,
.link-button {
background: none;
border: 0;
padding: 0;
color: var(--primary-color);
cursor: pointer;
font: inherit;
text-decoration: underline;
}
.field-help a:hover,
.link-button:hover {
text-decoration: none;
}
/* Smaller refresh icon-button when shown next to the dropdown. */
.select-row .link-button {
margin-left: 8px;
text-decoration: none;
font-size: 16px;
}
.select-row .link-button:hover {
color: var(--primary-color);
opacity: 0.7;
}
h3 {
margin: 8px 0 0;
font-size: 14px;
color: var(--primary-color);
}
.select-row {
display: flex;
flex-direction: column;
gap: 4px;
}
.assignee-pool {
display: flex;
flex-wrap: wrap;
gap: 6px 14px;
margin-top: 4px;
}
.checkbox-row {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 13px;
cursor: pointer;
margin: 2px 0;
}
.checkbox-row input[type="checkbox"] {
width: 16px;
height: 16px;
cursor: pointer;
}
.pool-item {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
cursor: pointer;
}
.pool-item input[type="checkbox"] {
width: 16px;
height: 16px;
cursor: pointer;
}
.select-row label {
font-size: 12px;
color: var(--secondary-text-color);
}
.select-row select {
padding: 8px;
border: 1px solid var(--divider-color);
border-radius: 4px;
background: var(--card-background-color, #fff);
color: var(--primary-text-color);
font-size: 14px;
}
.field-label {
font-size: 12px;
color: var(--secondary-text-color);
}
.weekday-chips {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.weekday-chip {
padding: 6px 12px;
border: 1px solid var(--divider-color);
border-radius: 16px;
background: var(--card-background-color, #fff);
color: var(--primary-text-color);
font-size: 13px;
cursor: pointer;
}
.weekday-chip.selected {
background: var(--primary-color, #03a9f4);
color: var(--text-primary-color, #fff);
border-color: var(--primary-color, #03a9f4);
}
.season-chip {
padding: 6px 10px;
border: 1px solid var(--divider-color);
border-radius: 16px;
background: var(--card-background-color, #fff);
color: var(--primary-text-color);
font-size: 13px;
cursor: pointer;
}
.season-chip.selected {
background: var(--primary-color, #03a9f4);
color: var(--text-primary-color, #fff);
border-color: var(--primary-color, #03a9f4);
}
.error {
color: var(--error-color, #f44336);
font-size: 13px;
}
.toggle-row {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
cursor: pointer;
}
`,a([g({attribute:!1})],p.prototype,"hass",2),a([g({type:Boolean,attribute:"checklists-enabled"})],p.prototype,"checklistsEnabled",2),a([g({type:Boolean,attribute:"schedule-time-enabled"})],p.prototype,"scheduleTimeEnabled",2),a([g({type:Boolean,attribute:"completion-actions-enabled"})],p.prototype,"completionActionsEnabled",2),a([g({type:Number,attribute:"default-warning-days"})],p.prototype,"defaultWarningDays",2),a([l()],p.prototype,"_open",2),a([l()],p.prototype,"_loading",2),a([l()],p.prototype,"_error",2),a([l()],p.prototype,"_entryId",2),a([l()],p.prototype,"_taskId",2),a([l()],p.prototype,"_objectChoices",2),a([l()],p.prototype,"_name",2),a([l()],p.prototype,"_type",2),a([l()],p.prototype,"_scheduleType",2),a([l()],p.prototype,"_intervalDays",2),a([l()],p.prototype,"_intervalUnit",2),a([l()],p.prototype,"_dueDate",2),a([l()],p.prototype,"_warningDays",2),a([l()],p.prototype,"_earliestCompletionDays",2),a([l()],p.prototype,"_intervalAnchor",2),a([l()],p.prototype,"_weekdays",2),a([l()],p.prototype,"_nth",2),a([l()],p.prototype,"_nthWeekday",2),a([l()],p.prototype,"_domDay",2),a([l()],p.prototype,"_domLastDay",2),a([l()],p.prototype,"_domBusiness",2),a([l()],p.prototype,"_calOffset",2),a([l()],p.prototype,"_seasonMonths",2),a([l()],p.prototype,"_endsMode",2),a([l()],p.prototype,"_endsCount",2),a([l()],p.prototype,"_endsUntil",2),a([l()],p.prototype,"_notes",2),a([l()],p.prototype,"_documentationUrl",2),a([l()],p.prototype,"_customIcon",2),a([l()],p.prototype,"_priority",2),a([l()],p.prototype,"_labels",2),a([l()],p.prototype,"_enabled",2),a([l()],p.prototype,"_triggerEntityId",2),a([l()],p.prototype,"_triggerEntityIds",2),a([l()],p.prototype,"_triggerEntityLogic",2),a([l()],p.prototype,"_triggerAttribute",2),a([l()],p.prototype,"_triggerType",2),a([l()],p.prototype,"_triggerAbove",2),a([l()],p.prototype,"_triggerBelow",2),a([l()],p.prototype,"_triggerForMinutes",2),a([l()],p.prototype,"_triggerTargetValue",2),a([l()],p.prototype,"_triggerDeltaMode",2),a([l()],p.prototype,"_autoCompleteOnRecovery",2),a([l()],p.prototype,"_triggerFromState",2),a([l()],p.prototype,"_triggerToState",2),a([l()],p.prototype,"_triggerTargetChanges",2),a([l()],p.prototype,"_triggerRuntimeHours",2),a([l()],p.prototype,"_compoundLogic",2),a([l()],p.prototype,"_compoundConditions",2),a([l()],p.prototype,"_suggestedAttributes",2),a([l()],p.prototype,"_availableAttributes",2),a([l()],p.prototype,"_entityDomain",2),a([l()],p.prototype,"_lastPerformed",2),a([l()],p.prototype,"_nfcTagId",2),a([l()],p.prototype,"_readingUnit",2),a([l()],p.prototype,"_availableTags",2),a([l()],p.prototype,"_responsibleUserId",2),a([l()],p.prototype,"_assigneePool",2),a([l()],p.prototype,"_rotationStrategy",2),a([l()],p.prototype,"_availableUsers",2),a([l()],p.prototype,"_checklistText",2),a([l()],p.prototype,"_scheduleTime",2),a([l()],p.prototype,"_actionService",2),a([l()],p.prototype,"_actionTargetEntity",2),a([l()],p.prototype,"_actionData",2),a([l()],p.prototype,"_actionDataJsonFallback",2),a([l()],p.prototype,"_actionTesting",2),a([l()],p.prototype,"_actionTestResult",2),a([l()],p.prototype,"_actionTestError",2),a([l()],p.prototype,"_qcNotes",2),a([l()],p.prototype,"_qcCost",2),a([l()],p.prototype,"_qcDuration",2),a([l()],p.prototype,"_qcFeedback",2),a([l()],p.prototype,"_environmentalEntity",2),a([l()],p.prototype,"_environmentalAttribute",2);customElements.get("maintenance-task-dialog")||customElements.define("maintenance-task-dialog",p);var v=class extends x{constructor(){super(...arguments);this.entryId="";this.taskId="";this.taskName="";this.lang="en";this.checklist=[];this.adaptiveEnabled=!1;this.taskType="";this.readingUnit="";this._open=!1;this._notes="";this._cost="";this._duration="";this._loading=!1;this._error="";this._checklistState={};this._feedback="needed";this._photoDocId="";this._photoPreview="";this._photoUploading=!1;this._readingValue=""}open(){this._open||(this._open=!0,this._notes="",this._cost="",this._duration="",this._error="",this._checklistState={},this._feedback="needed",this._photoDocId="",this._photoPreview="",this._photoUploading=!1,this._readingValue="")}_toggleCheck(t){let e=String(t);this._checklistState={...this._checklistState,[e]:!this._checklistState[e]}}_setFeedback(t){this._feedback=t}async _onPhotoInput(t){let e=t.target,i=e.files?.[0];if(e.value="",!!i){this._photoUploading=!0,this._error="";try{let o=new FormData;o.append("entry_id",this.entryId),o.append("tags","photo"),o.append("file",i,i.name);let _=await fetch("/api/maintenance_supporter/document/upload",{method:"POST",headers:{Authorization:`Bearer ${this.hass.auth?.data?.access_token??""}`},body:o});if(!_.ok){this._error=_.status===413?s("doc_too_large",this.lang):s("doc_upload_failed",this.lang);return}let h=await _.json();h.id&&(this._photoDocId=h.id,this._photoPreview=URL.createObjectURL(i))}catch{this._error=s("doc_upload_failed",this.lang)}finally{this._photoUploading=!1}}}_removePhoto(){this._photoPreview&&URL.revokeObjectURL(this._photoPreview),this._photoDocId="",this._photoPreview=""}async _complete(){this._loading=!0,this._error="";try{let t={type:"maintenance_supporter/task/complete",entry_id:this.entryId,task_id:this.taskId};if(this._notes&&(t.notes=this._notes),this._cost){let e=parseFloat(this._cost);!isNaN(e)&&e>=0&&(t.cost=e)}if(this._duration){let e=parseInt(this._duration,10);!isNaN(e)&&e>=0&&(t.duration=e)}if(this.checklist.length>0&&(t.checklist_state=this._checklistState),this.adaptiveEnabled&&(t.feedback=this._feedback),this._photoDocId&&(t.photo_doc_id=this._photoDocId),this._readingValue!==""){let e=parseFloat(this._readingValue);isNaN(e)||(t.reading_value=e)}await this.hass.connection.sendMessagePromise(t),this._open=!1,this.dispatchEvent(new CustomEvent("task-completed"))}catch(t){this._error=k(t,this.lang,s("save_error",this.lang))}finally{this._loading=!1}}_close(){this._open=!1}render(){if(!this._open)return r``;let t=this.lang||this.hass?.language||"en";return r`
<ha-dialog open @closed=${this._close}>
<div class="dialog-title">${s("complete_title",t)}${this.taskName}</div>
<div class="content">
${this._error?r`<div class="error">${this._error}</div>`:c}
${this.checklist.length>0?r`
<div class="checklist-section">
<label class="checklist-label">${s("checklist",t)}</label>
${this.checklist.map((e,i)=>r`
<label class="checklist-item" @click=${()=>this._toggleCheck(i)}>
<input type="checkbox" .checked=${!!this._checklistState[String(i)]} />
<span>${e}</span>
</label>
`)}
</div>
`:c}
${this.taskType==="reading"?r`
<label class="field">
<span class="field-label">${s("reading_value_label",t)}${this.readingUnit?` (${this.readingUnit})`:""}</span>
<input type="number" step="any" class="field-input"
.value=${this._readingValue}
@input=${e=>this._readingValue=e.target.value} />
</label>`:c}
<!-- Native <input>s rather than <ha-textfield>: when this dialog
is opened from a Lovelace card via dialog-mount, ha-textfield
isn't yet registered (HA loads it lazily when its own panels
need it) so the elements render with zero height and the user
only sees the title + Cancel/Complete buttons — the original
bug report. Native inputs always render. -->
<label class="field">
<span class="field-label">${s("notes_optional",t)}</span>
<input type="text" class="field-input"
.value=${this._notes}
@input=${e=>this._notes=e.target.value} />
</label>
<label class="field">
<span class="field-label">${s("cost_optional",t)}</span>
<input type="number" step="0.01" min="0" class="field-input"
.value=${this._cost}
@input=${e=>this._cost=e.target.value} />
</label>
<label class="field">
<span class="field-label">${s("duration_minutes",t)}</span>
<input type="number" step="1" min="0" class="field-input"
.value=${this._duration}
@input=${e=>this._duration=e.target.value} />
</label>
<div class="field">
<span class="field-label">${s("completion_photo_optional",t)}</span>
${this._photoPreview?r`
<div class="photo-preview">
<img src=${this._photoPreview} alt="" />
<button type="button" class="photo-remove" @click=${this._removePhoto}
title="${s("remove",t)}">✕</button>
</div>`:r`
<label class="photo-pick">
<ha-icon icon="mdi:camera"></ha-icon>
<span>${this._photoUploading?s("uploading",t):s("add_photo",t)}</span>
<input type="file" accept="image/*" capture="environment"
?disabled=${this._photoUploading}
@change=${this._onPhotoInput} />
</label>`}
</div>
${this.adaptiveEnabled?r`
<div class="feedback-section">
<label class="feedback-label">${s("was_maintenance_needed",t)}</label>
<div class="feedback-buttons">
<button
class="feedback-btn ${this._feedback==="needed"?"selected":""}"
@click=${()=>this._setFeedback("needed")}
>${s("feedback_needed",t)}</button>
<button
class="feedback-btn ${this._feedback==="not_needed"?"selected":""}"
@click=${()=>this._setFeedback("not_needed")}
>${s("feedback_not_needed",t)}</button>
<button
class="feedback-btn ${this._feedback==="not_sure"?"selected":""}"
@click=${()=>this._setFeedback("not_sure")}
>${s("feedback_not_sure",t)}</button>
</div>
</div>
`:c}
</div>
<div class="dialog-actions">
<ha-button appearance="plain" @click=${this._close}>
${s("cancel",t)}
</ha-button>
<ha-button
@click=${this._complete}
.disabled=${this._loading}
>
${this._loading?s("completing",t):s("complete",t)}
</ha-button>
</div>
</ha-dialog>
`}};v.styles=$`
.dialog-title {
font-size: 18px;
font-weight: 500;
padding-bottom: 12px;
}
.content {
display: flex;
flex-direction: column;
gap: 16px;
min-width: 300px;
}
.dialog-actions {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
}
.error {
color: var(--error-color, #f44336);
font-size: 13px;
}
.field { display: flex; flex-direction: column; gap: 4px; }
.field-label {
font-size: 12px;
color: var(--secondary-text-color);
}
.field-input {
padding: 8px 10px; font-size: 14px;
background: var(--secondary-background-color, rgba(0,0,0,0.06));
color: var(--primary-text-color);
border: 1px solid var(--divider-color); border-radius: 6px;
font-family: inherit;
width: 100%; box-sizing: border-box;
}
.field-input:focus {
outline: none;
border-color: var(--primary-color);
}
.photo-pick {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border: 1px dashed var(--divider-color);
border-radius: 8px;
cursor: pointer;
font-size: 13px;
color: var(--secondary-text-color);
width: fit-content;
}
.photo-pick:hover { border-color: var(--primary-color); }
.photo-pick input[type="file"] { display: none; }
.photo-preview {
position: relative;
width: fit-content;
}
.photo-preview img {
max-width: 160px;
max-height: 160px;
border-radius: 8px;
display: block;
}
.photo-remove {
position: absolute;
top: -8px;
right: -8px;
width: 24px;
height: 24px;
border-radius: 50%;
border: none;
background: var(--error-color, #db4437);
color: #fff;
cursor: pointer;
font-size: 12px;
line-height: 1;
}
.checklist-section {
display: flex;
flex-direction: column;
gap: 8px;
padding: 8px 0;
border-bottom: 1px solid var(--divider-color);
margin-bottom: 4px;
}
.checklist-label {
font-weight: 500;
font-size: 13px;
color: var(--secondary-text-color);
}
.checklist-item {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
padding: 4px 0;
font-size: 14px;
}
.checklist-item input[type="checkbox"] {
width: 18px;
height: 18px;
cursor: pointer;
}
.feedback-section {
display: flex;
flex-direction: column;
gap: 8px;
padding: 8px 0;
border-top: 1px solid var(--divider-color);
}
.feedback-label {
font-weight: 500;
font-size: 13px;
color: var(--secondary-text-color);
}
.feedback-buttons {
display: flex;
gap: 8px;
}
.feedback-btn {
flex: 1;
padding: 8px 12px;
border: 1px solid var(--divider-color);
border-radius: 8px;
background: var(--card-background-color, #fff);
color: var(--primary-text-color);
font-size: 13px;
cursor: pointer;
text-align: center;
transition: all 0.2s;
}
.feedback-btn:hover {
background: var(--secondary-background-color, #f5f5f5);
}
.feedback-btn.selected {
background: var(--primary-color);
color: var(--text-primary-color, #fff);
border-color: var(--primary-color);
}
`,a([g({attribute:!1})],v.prototype,"hass",2),a([g()],v.prototype,"entryId",2),a([g()],v.prototype,"taskId",2),a([g()],v.prototype,"taskName",2),a([g()],v.prototype,"lang",2),a([g({type:Array})],v.prototype,"checklist",2),a([g({type:Boolean})],v.prototype,"adaptiveEnabled",2),a([g()],v.prototype,"taskType",2),a([g()],v.prototype,"readingUnit",2),a([l()],v.prototype,"_open",2),a([l()],v.prototype,"_notes",2),a([l()],v.prototype,"_cost",2),a([l()],v.prototype,"_duration",2),a([l()],v.prototype,"_loading",2),a([l()],v.prototype,"_error",2),a([l()],v.prototype,"_checklistState",2),a([l()],v.prototype,"_feedback",2),a([l()],v.prototype,"_photoDocId",2),a([l()],v.prototype,"_photoPreview",2),a([l()],v.prototype,"_photoUploading",2),a([l()],v.prototype,"_readingValue",2);customElements.get("maintenance-complete-dialog")||customElements.define("maintenance-complete-dialog",v);var R=class extends x{constructor(){super(...arguments);this._open=!1;this._saving=!1;this._error="";this._draft=null;this._originalSnapshot=null}get _lang(){return this.hass?.language||"en"}openEdit(t){this._draft={...t},this._originalSnapshot={...t},this._error="",this._open=!0}close(){this._open=!1,this._error="",this._draft=null,this._originalSnapshot=null}_set(t,e){this._draft&&(this._draft={...this._draft,[t]:e})}async _save(){if(!(!this._draft||!this._originalSnapshot)){this._saving=!0,this._error="";try{let t={type:"maintenance_supporter/task/history/update",entry_id:this._draft.entry_id,task_id:this._draft.task_id,original_timestamp:this._originalSnapshot.original_timestamp};if(this._draft.timestamp!==this._originalSnapshot.timestamp&&(t.timestamp=this._draft.timestamp),this._draft.notes!==this._originalSnapshot.notes&&(t.notes=this._draft.notes),this._draft.cost!==this._originalSnapshot.cost&&(t.cost=this._draft.cost),this._draft.duration!==this._originalSnapshot.duration&&(t.duration=this._draft.duration),this._draft.completed_by!==this._originalSnapshot.completed_by&&(t.completed_by=this._draft.completed_by),Object.keys(t).filter(i=>!["type","entry_id","task_id","original_timestamp"].includes(i)).length===0){this.close();return}await this.hass.connection.sendMessagePromise(t),this.dispatchEvent(new CustomEvent("history-entry-saved",{detail:{entry_id:this._draft.entry_id,task_id:this._draft.task_id,new_timestamp:this._draft.timestamp},bubbles:!0,composed:!0})),this.close()}catch(t){this._error=k(t,this._lang)}finally{this._saving=!1}}}render(){if(!this._open||!this._draft)return c;let t=this._lang,e=this._draft;return r`
<div class="backdrop" @click=${this.close}></div>
<div class="dialog" role="dialog" aria-modal="true">
<h2>${s("history_edit_title",t)||"Edit history entry"}</h2>
<div class="entry-type">
<ha-icon icon="mdi:tag-outline"></ha-icon>
<span>${s(e.type,t)||e.type}</span>
</div>
<label>
<span>${s("history_edit_timestamp",t)||"Timestamp"}</span>
<input type="datetime-local"
.value=${e.timestamp.length>=16?e.timestamp.slice(0,16):e.timestamp}
@change=${i=>{let o=i.target.value;this._set("timestamp",o.length===16?`${o}:00`:o)}} />
</label>
<label>
<span>${s("notes_label",t)}</span>
<textarea
rows="3"
@input=${i=>{let o=i.target.value;this._set("notes",o||null)}}
.value=${e.notes??""}></textarea>
</label>
<div class="row">
<label>
<span>${s("cost",t)||"Cost"}</span>
<input type="number" min="0" step="0.01"
.value=${e.cost!=null?String(e.cost):""}
@input=${i=>{let o=i.target.value;this._set("cost",o?Number(o):null)}} />
</label>
<label>
<span>${s("duration",t)||"Duration (min)"}</span>
<input type="number" min="0"
.value=${e.duration!=null?String(e.duration):""}
@input=${i=>{let o=i.target.value;this._set("duration",o?Number(o):null)}} />
</label>
</div>
${this._error?r`<div class="error">${this._error}</div>`:c}
<div class="actions">
<button class="cancel" @click=${this.close} ?disabled=${this._saving}>
${s("cancel",t)||"Cancel"}
</button>
<button class="save" @click=${this._save} ?disabled=${this._saving}>
${this._saving?s("saving",t)||"Saving\u2026":s("save",t)||"Save"}
</button>
</div>
</div>
`}};R.styles=$`
:host { display: contents; }
.backdrop {
position: fixed; inset: 0;
background: rgba(0,0,0,0.5);
z-index: 100;
}
.dialog {
position: fixed; left: 50%; top: 50%;
transform: translate(-50%, -50%);
width: 95vw; max-width: 480px;
background: var(--card-background-color, var(--ha-card-background, #1c1c1c));
color: var(--primary-text-color);
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.4);
padding: 20px;
display: flex; flex-direction: column; gap: 12px;
z-index: 101;
max-height: 90vh; overflow: auto;
}
h2 { margin: 0; font-size: 18px; }
.entry-type {
display: flex; align-items: center; gap: 6px;
color: var(--secondary-text-color); font-size: 13px;
}
label { display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
label span { color: var(--secondary-text-color); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, textarea {
padding: 8px; font-size: 14px;
background: var(--secondary-background-color, #2c2c2c);
color: var(--primary-text-color);
border: 1px solid var(--divider-color, #444);
border-radius: 6px;
width: 100%; box-sizing: border-box;
font-family: inherit;
}
.actions {
display: flex; gap: 8px; justify-content: flex-end;
margin-top: 8px;
}
button {
padding: 8px 16px; font-size: 14px;
border-radius: 6px; cursor: pointer;
border: none; font-weight: 500;
}
button.cancel {
background: transparent;
color: var(--primary-text-color);
border: 1px solid var(--divider-color);
}
button.save {
background: var(--primary-color);
color: var(--text-primary-color, white);
}
button[disabled] { opacity: 0.5; cursor: wait; }
.error {
color: var(--error-color, #d32f2f);
font-size: 13px; padding: 8px;
background: rgba(211,47,47,0.1);
border-radius: 6px;
}
`,a([g({attribute:!1})],R.prototype,"hass",2),a([l()],R.prototype,"_open",2),a([l()],R.prototype,"_saving",2),a([l()],R.prototype,"_error",2),a([l()],R.prototype,"_draft",2);customElements.get("maintenance-history-edit-dialog")||customElements.define("maintenance-history-edit-dialog",R);function U(n){return n.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;")}function rt(n){return!n.startsWith("data:image/svg+xml,")&&!n.startsWith("data:image/png;base64,")?"":U(n)}function Ct(n){return n.replace(/[/\\:*?"<>|#%]+/g,"").replace(/\s+/g,"-").toLowerCase().substring(0,100)}var T=class extends x{constructor(){super(...arguments);this.lang="en";this._open=!1;this._loading=!1;this._error="";this._viewResult=null;this._completeResult=null;this._urlMode="companion";this._entryId="";this._taskId=null;this._objectName="";this._taskName="";this._generateSeq=0}openForObject(t,e){this._entryId=t,this._taskId=null,this._objectName=e,this._taskName="",this._urlMode="companion",this._error="",this._viewResult=null,this._completeResult=null,this._open=!0,this._generate()}openForTask(t,e,i,o){this._entryId=t,this._taskId=e,this._objectName=i,this._taskName=o,this._urlMode="companion",this._error="",this._viewResult=null,this._completeResult=null,this._open=!0,this._generate()}async _generate(){let t=++this._generateSeq;this._loading=!0,this._error="",this._viewResult=null,this._completeResult=null;try{let e={type:"maintenance_supporter/qr/generate",entry_id:this._entryId,url_mode:this._urlMode};this._taskId&&(e.task_id=this._taskId);let i=[this.hass.connection.sendMessagePromise({...e,action:"view"})];this._taskId&&i.push(this.hass.connection.sendMessagePromise({...e,action:"complete"}));let o=await Promise.all(i);if(t!==this._generateSeq)return;this._viewResult=o[0],o.length>1&&(this._completeResult=o[1])}catch(e){if(t!==this._generateSeq)return;let i=e?.code,o=e?.message;this._error=i==="no_url"||typeof o=="string"&&o.includes("No Home Assistant URL")?s("qr_error_no_url",this.lang):s("qr_error",this.lang)}finally{t===this._generateSeq&&(this._loading=!1)}}_setUrlMode(t){this._urlMode!==t&&(this._urlMode=t,this._generate())}_print(){if(!this._viewResult)return;let t=this._viewResult,e=t.label.task_name?`${t.label.object_name} \u2014 ${t.label.task_name}`:t.label.object_name,i=[t.label.manufacturer,t.label.model].filter(Boolean).join(" "),o=window.open("","_blank","width=600,height=500");if(!o)return;let _=this.lang||"en",h=U(e),m=U(i),u=!!this._completeResult,y=U(s("qr_action_view",_)),I=U(s("qr_action_complete",_));o.document.write(`<!DOCTYPE html><html><head><meta charset="utf-8">
<title>${h}</title>
<style>
body{font-family:sans-serif;text-align:center;padding:20px}
h2{margin:0 0 4px}
.sub{color:#666;font-size:14px;margin-bottom:16px}
.qr-row{display:flex;justify-content:center;gap:24px;margin:12px 0}
.qr-col{display:flex;flex-direction:column;align-items:center;gap:6px}
.qr-col img{width:${u?"200px":"280px"}}
.qr-label{font-size:13px;font-weight:500;color:#333}
.url{font-size:10px;color:#999;word-break:break-all;margin-top:8px;max-width:480px}
</style></head><body>
<h2>${h}</h2>
${m?`<div class="sub">${m}</div>`:""}
<div class="qr-row">
<div class="qr-col">
<img src="${rt(this._viewResult.svg_data_uri)}" alt="QR Info" />
<div class="qr-label">${y}</div>
</div>
${u?`<div class="qr-col">
<img src="${rt(this._completeResult.svg_data_uri)}" alt="QR Complete" />
<div class="qr-label">${I}</div>
</div>`:""}
</div>
<div class="url">${U(this._viewResult.url)}</div>
<script>setTimeout(()=>window.print(),300)<\/script>
</body></html>`),o.document.close()}_downloadSvg(t,e){let i=decodeURIComponent(t.svg_data_uri.replace("data:image/svg+xml,","")),o=new Blob([i],{type:"image/svg+xml"}),_=URL.createObjectURL(o),h=document.createElement("a");h.href=_;let m=this._taskName?`${this._objectName}-${this._taskName}`:this._objectName;h.download=`qr-${Ct(m)}-${e}.svg`,h.click(),URL.revokeObjectURL(_)}_close(){this._open=!1,this._viewResult=null,this._completeResult=null,this._error="",this._loading=!1}render(){if(!this._open)return r``;let t=this.lang||this.hass?.language||"en",e=this._taskName?`${s("qr_code",t)}: ${this._objectName} \u2014 ${this._taskName}`:`${s("qr_code",t)}: ${this._objectName}`,i=!!this._viewResult;return r`
<ha-dialog open @closed=${this._close}>
<div class="dialog-title">${e}</div>
<div class="content">
${this._loading?r`<div class="loading">${s("qr_generating",t)}</div>`:this._error?r`<div class="error">${this._error}</div>`:i?r`
<div class="qr-pair">
<div class="qr-item">
<img
class="qr-image ${this._completeResult?"small":""}"
src="${this._viewResult.svg_data_uri}"
alt="QR Info"
/>
<div class="qr-item-label">${s("qr_action_view",t)}</div>
<button class="dl-btn"
@click=${()=>this._downloadSvg(this._viewResult,"info")}>
<ha-icon icon="mdi:download"></ha-icon>
${s("qr_download",t)}
</button>
</div>
${this._completeResult?r`
<div class="qr-item">
<img
class="qr-image small"
src="${this._completeResult.svg_data_uri}"
alt="QR Complete"
/>
<div class="qr-item-label">${s("qr_action_complete",t)}</div>
<button class="dl-btn"
@click=${()=>this._downloadSvg(this._completeResult,"complete")}>
<ha-icon icon="mdi:download"></ha-icon>
${s("qr_download",t)}
</button>
</div>
`:c}
</div>
<div class="url-display">${this._viewResult.url}</div>
`:c}
<div class="action-row">
<label>${s("qr_url_mode",t)}</label>
<div class="action-toggle">
<button class="toggle-btn ${this._urlMode==="companion"?"active":""}"
@click=${()=>this._setUrlMode("companion")}>${s("qr_mode_companion",t)}</button>
<button class="toggle-btn ${this._urlMode==="local"?"active":""}"
@click=${()=>this._setUrlMode("local")}>${s("qr_mode_local",t)}</button>
<button class="toggle-btn ${this._urlMode==="server"?"active":""}"
@click=${()=>this._setUrlMode("server")}>${s("qr_mode_server",t)}</button>
</div>
</div>
</div>
<div class="dialog-actions">
<ha-button appearance="plain" @click=${this._close}>
${s("cancel",t)}
</ha-button>
<ha-button
@click=${this._print}
.disabled=${!i}
>
${s("qr_print",t)}
</ha-button>
</div>
</ha-dialog>
`}};T.styles=$`
.dialog-title {
font-size: 18px;
font-weight: 500;
padding-bottom: 12px;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
min-width: 300px;
}
.dialog-actions {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
}
.qr-pair {
display: flex;
gap: 20px;
justify-content: center;
width: 100%;
}
.qr-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
}
.qr-image {
width: 240px;
height: 240px;
image-rendering: pixelated;
}
.qr-image.small {
width: 180px;
height: 180px;
}
.qr-item-label {
font-size: 12px;
font-weight: 500;
color: var(--secondary-text-color);
text-align: center;
}
.dl-btn {
display: inline-flex;
align-items: center;
gap: 6px;
background: none;
border: 1px solid var(--divider-color, #e0e0e0);
cursor: pointer;
font-size: 13px;
color: var(--primary-text-color);
padding: 6px 14px;
border-radius: 18px;
transition: background 0.2s, border-color 0.2s;
}
.dl-btn:hover {
background: var(--secondary-background-color, #f5f5f5);
border-color: var(--primary-color);
}
.dl-btn ha-icon {
--mdc-icon-size: 18px;
}
.url-display {
font-size: 11px;
color: var(--secondary-text-color);
word-break: break-all;
text-align: center;
max-width: 400px;
}
.loading {
padding: 40px 0;
color: var(--secondary-text-color);
}
.error {
padding: 20px 0;
color: var(--error-color, #f44336);
}
.action-row {
display: flex;
flex-direction: column;
gap: 6px;
width: 100%;
}
.action-row label {
font-size: 13px;
color: var(--secondary-text-color);
}
.action-toggle {
display: flex;
gap: 4px;
background: var(--divider-color, #e0e0e0);
border-radius: 6px;
padding: 3px;
}
.toggle-btn {
flex: 1;
padding: 8px 12px;
border: none;
background: transparent;
color: var(--primary-text-color);
cursor: pointer;
border-radius: 4px;
font-size: 13px;
transition: all 0.2s;
line-height: 1.3;
}
.toggle-btn:hover {
background: rgba(0, 0, 0, 0.05);
}
.toggle-btn.active {
background: var(--primary-color);
color: var(--text-primary-color, #fff);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
`,a([g({attribute:!1})],T.prototype,"hass",2),a([g()],T.prototype,"lang",2),a([l()],T.prototype,"_open",2),a([l()],T.prototype,"_loading",2),a([l()],T.prototype,"_error",2),a([l()],T.prototype,"_viewResult",2),a([l()],T.prototype,"_completeResult",2),a([l()],T.prototype,"_urlMode",2);customElements.get("maintenance-qr-dialog")||customElements.define("maintenance-qr-dialog",T);function nt(n,d){let t=n.interval_analysis,e=t?.weibull_beta,i=t?.weibull_eta;if(e==null||i==null||i<=0)return c;let o=n.interval_days??0,_=n.suggested_interval??o;return r`
<div class="weibull-section">
<div class="weibull-title">
<ha-svg-icon aria-hidden="true" path="M3,14L3.5,14.07L8.07,9.5C7.89,8.85 8.06,8.11 8.59,7.59C9.37,6.8 10.63,6.8 11.41,7.59C11.94,8.11 12.11,8.85 11.93,9.5L14.5,12.07L15,12C15.18,12 15.35,12 15.5,12.07L19.07,8.5C19,8.35 19,8.18 19,8A2,2 0 0,1 21,6A2,2 0 0,1 23,8A2,2 0 0,1 21,10C20.82,10 20.65,10 20.5,9.93L16.93,13.5C17,13.65 17,13.82 17,14A2,2 0 0,1 15,16A2,2 0 0,1 13,14L13.07,13.5L10.5,10.93C10.18,11 9.82,11 9.5,10.93L4.93,15.5L5,16A2,2 0 0,1 3,18A2,2 0 0,1 1,16A2,2 0 0,1 3,14Z"></ha-svg-icon>
${s("weibull_reliability_curve",d)}
${Ht(e,d)}
</div>
${St(e,i,o,_,d)}
${Rt(t,d)}
${t?.confidence_interval_low!=null?Pt(t,n,d):c}
</div>
`}function Ht(n,d){let t,e,i;return n<.8?(t="early_failures",e="M13,14H11V10H13M13,18H11V16H13M1,21H23L12,2L1,21Z",i="beta_early_failures"):n<=1.2?(t="random_failures",e="M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M13,17H11V15H13V17M13,13H11V7H13V13Z",i="beta_random_failures"):n<=3.5?(t="wear_out",e="M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2M12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20A8,8 0 0,0 20,12A8,8 0 0,0 12,4M12,6A6,6 0 0,1 18,12H12V6Z",i="beta_wear_out"):(t="highly_predictable",e="M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2M11,16.5L18,9.5L16.59,8.09L11,13.67L7.91,10.59L6.5,12L11,16.5Z",i="beta_highly_predictable"),r`
<span class="beta-badge ${t}">
<ha-svg-icon path="${e}"></ha-svg-icon>
${s(i,d)} (\u03B2=${n.toFixed(2)})
</span>
`}function St(n,d,t,e,i){let w=Math.max(t,e,d,1)*1.3,H=50,S=[];for(let A=0;A<=H;A++){let L=A/H*w,ft=1-Math.exp(-Math.pow(L/d,n)),bt=32+L/w*260,yt=136-ft*128;S.push([bt,yt])}let D=S.map(([A,L])=>`${A.toFixed(1)},${L.toFixed(1)}`).join(" "),K="M32,136 "+S.map(([A,L])=>`L${A.toFixed(1)},${L.toFixed(1)}`).join(" ")+` L${S[H][0].toFixed(1)},136 Z`,z=32+t/w*260,j=1-Math.exp(-Math.pow(t/d,n)),O=136-j*128,gt=((1-j)*100).toFixed(0),Y=32+e/w*260,vt=[0,.25,.5,.75,1];return r`
<div class="weibull-chart">
<svg viewBox="0 0 ${300} ${160}" preserveAspectRatio="xMidYMid meet" role="img" aria-label="${s("chart_weibull",i)}">
${vt.map(A=>{let L=136-A*128;return q`
<line x1="${32}" y1="${L.toFixed(1)}" x2="${292}" y2="${L.toFixed(1)}"
stroke="var(--divider-color)" stroke-width="0.5" stroke-dasharray="${A===.5?"4,3":c}" />
<text x="${28}" y="${(L+3).toFixed(1)}" fill="var(--secondary-text-color)"
font-size="8" text-anchor="end">${(A*100).toFixed(0)}%</text>
`})}
<text x="${32}" y="${156}" fill="var(--secondary-text-color)" font-size="8" text-anchor="middle">0</text>
<text x="${324/2}" y="${156}" fill="var(--secondary-text-color)" font-size="8" text-anchor="middle">${Math.round(w/2)}</text>
<text x="${292}" y="${156}" fill="var(--secondary-text-color)" font-size="8" text-anchor="middle">${Math.round(w)}</text>
<path d="${K}" fill="var(--primary-color, #03a9f4)" opacity="0.08" />
<polyline points="${D}" fill="none"
stroke="var(--primary-color, #03a9f4)" stroke-width="2" />
${t>0?q`
<line x1="${z.toFixed(1)}" y1="${8}" x2="${z.toFixed(1)}" y2="${136 .toFixed(1)}"
stroke="var(--primary-color, #03a9f4)" stroke-width="1.5" stroke-dasharray="4,3" />
<circle cx="${z.toFixed(1)}" cy="${O.toFixed(1)}" r="3"
fill="var(--primary-color, #03a9f4)" />
<text x="${(z+4).toFixed(1)}" y="${(O-6).toFixed(1)}" fill="var(--primary-color, #03a9f4)"
font-size="9" font-weight="600">R=${gt}%</text>
`:c}
${e>0&&e!==t?q`
<line x1="${Y.toFixed(1)}" y1="${8}" x2="${Y.toFixed(1)}" y2="${136 .toFixed(1)}"
stroke="var(--success-color, #4caf50)" stroke-width="1.5" stroke-dasharray="4,3" />
`:c}
<line x1="${32}" y1="${8}" x2="${32}" y2="${136}"
stroke="var(--secondary-text-color)" stroke-width="1" />
<line x1="${32}" y1="${136}" x2="${292}" y2="${136}"
stroke="var(--secondary-text-color)" stroke-width="1" />
</svg>
</div>
<div class="chart-legend">
<span class="legend-item"><span class="legend-swatch" style="background:var(--primary-color, #03a9f4)"></span> ${s("weibull_failure_probability",i)}</span>
${t>0?r`<span class="legend-item"><span class="legend-swatch" style="background:var(--primary-color, #03a9f4); opacity:0.5"></span> ${s("current_interval_marker",i)}</span>`:c}
${e>0&&e!==t?r`<span class="legend-item"><span class="legend-swatch" style="background:var(--success-color, #4caf50)"></span> ${s("recommended_marker",i)}</span>`:c}
</div>
`}function Rt(n,d){return r`
<div class="weibull-info-row">
<div class="weibull-info-item">
<span>${s("characteristic_life",d)}</span>
<span class="weibull-info-value">${Math.round(n.weibull_eta)} ${s("days",d)}</span>
</div>
${n.weibull_r_squared!=null?r`
<div class="weibull-info-item">
<span>${s("weibull_r_squared",d)}</span>
<span class="weibull-info-value">${n.weibull_r_squared.toFixed(3)}</span>
</div>
`:c}
</div>
`}function Pt(n,d,t){let e=n.confidence_interval_low,i=n.confidence_interval_high,o=d.suggested_interval??d.interval_days??0,_=d.interval_days??0,h=Math.max(0,e-5),u=i+5-h,y=(e-h)/u*100,I=(i-e)/u*100,F=(o-h)/u*100,w=_>0?(_-h)/u*100:-1;return r`
<div class="confidence-range">
<div class="confidence-range-title">
${s("confidence_interval",t)}: ${o} ${s("days",t)} (${e}\u2013${i})
</div>
<div class="confidence-bar">
<div class="confidence-fill" style="left:${y.toFixed(1)}%;width:${I.toFixed(1)}%"></div>
${w>=0?r`<div class="confidence-marker current" style="left:${w.toFixed(1)}%"></div>`:c}
<div class="confidence-marker recommended" style="left:${F.toFixed(1)}%"></div>
</div>
<div class="confidence-labels">
<span class="confidence-text low">${s("confidence_conservative",t)} (${e}${s("days",t).charAt(0)})</span>
<span class="confidence-text high">${s("confidence_aggressive",t)} (${i}${s("days",t).charAt(0)})</span>
</div>
</div>
`}function ot(n,d,t){let e=n.degradation_trend!=null&&n.degradation_trend!=="insufficient_data",i=n.days_until_threshold!=null,o=n.environmental_factor!=null&&n.environmental_factor!==1;if(!e&&!i&&!o)return c;let _=n.degradation_trend==="rising"?"M16,6L18.29,8.29L13.41,13.17L9.41,9.17L2,16.59L3.41,18L9.41,12L13.41,16L19.71,9.71L22,12V6H16Z":n.degradation_trend==="falling"?"M16,18L18.29,15.71L13.41,10.83L9.41,14.83L2,7.41L3.41,6L9.41,12L13.41,8L19.71,14.29L22,12V18H16Z":"M22,12L18,8V11H3V13H18V16L22,12Z";return r`
<div class="prediction-section">
${n.sensor_prediction_urgency?r`
<div class="prediction-urgency-banner">
<ha-svg-icon path="M1,21H23L12,2L1,21M12,18A1,1 0 0,1 11,17A1,1 0 0,1 12,16A1,1 0 0,1 13,17A1,1 0 0,1 12,18M13,15H11V10H13V15Z"></ha-svg-icon>
${s("sensor_prediction_urgency",d).replace("{days}",String(Math.round(n.days_until_threshold||0)))}
</div>
`:c}
<div class="prediction-title">
<ha-svg-icon path="M2,2V4H7V2H2M22,2V4H13V2H22M7,7V9H2V7H7M22,7V9H13V7H22M7,12V14H2V12H7M22,12V14H13V12H22M7,17V19H2V17H7M22,17V19H13V17H22M9,2V19L12,22L15,19V2H9M11,4H13V17.17L12,18.17L11,17.17V4Z"></ha-svg-icon>
${s("sensor_prediction",d)}
</div>
<div class="prediction-grid">
${e?r`
<div class="prediction-item">
<ha-svg-icon path="${_}"></ha-svg-icon>
<span class="prediction-label">${s("degradation_trend",d)}</span>
<span class="prediction-value ${n.degradation_trend}">${s("trend_"+n.degradation_trend,d)}</span>
${n.degradation_rate!=null?r`<span class="prediction-rate">${n.degradation_rate>0?"+":""}${Math.abs(n.degradation_rate)>=10?Math.round(n.degradation_rate).toLocaleString():n.degradation_rate.toFixed(1)} ${n.trigger_entity_info?.unit_of_measurement||""}/${s("day_short",d)}</span>`:c}
</div>
`:c}
${i?r`
<div class="prediction-item">
<ha-svg-icon path="M12,20A7,7 0 0,1 5,13A7,7 0 0,1 12,6A7,7 0 0,1 19,13A7,7 0 0,1 12,20M12,4A9,9 0 0,0 3,13A9,9 0 0,0 12,22A9,9 0 0,0 21,13A9,9 0 0,0 12,4M12.5,8H11V14L15.75,16.85L16.5,15.62L12.5,13.25V8M7.88,3.39L6.6,1.86L2,5.71L3.29,7.24L7.88,3.39M22,5.72L17.4,1.86L16.11,3.39L20.71,7.25L22,5.72Z"></ha-svg-icon>
<span class="prediction-label">${s("days_until_threshold",d)}</span>
<span class="prediction-value prediction-days${n.days_until_threshold===0?" exceeded":n.sensor_prediction_urgency?" urgent":""}">${n.days_until_threshold===0?s("threshold_exceeded",d):"~"+Math.round(n.days_until_threshold)+" "+s("days",d)}</span>
${n.threshold_prediction_date?r`<span class="prediction-date">${N(n.threshold_prediction_date,d)}</span>`:c}
${n.threshold_prediction_confidence?r`<span class="confidence-dot ${n.threshold_prediction_confidence}"></span>`:c}
</div>
`:c}
${o&&t.environmental?r`
<div class="prediction-item">
<ha-svg-icon path="M15,13V5A3,3 0 0,0 12,2A3,3 0 0,0 9,5V13A5,5 0 0,0 7,17A5,5 0 0,0 12,22A5,5 0 0,0 17,17A5,5 0 0,0 15,13M12,4A1,1 0 0,1 13,5V8H11V5A1,1 0 0,1 12,4Z"></ha-svg-icon>
<span class="prediction-label">${s("environmental_adjustment",d)}</span>
<span class="prediction-value">${n.environmental_factor.toFixed(2)}x</span>
${n.environmental_entity?r`<span class="prediction-entity entity-link" @click=${h=>et(h,n.environmental_entity)}>${n.environmental_entity}</span>`:c}
</div>
`:c}
</div>
</div>
`}function lt(n,d,t,e){let i=Math.max(n||1,d);return r`
<div class="interval-comparison">
<div class="interval-bar">
<div class="interval-label">
${s("current",e)}: ${n??"\u2014"} ${n!=null?s("days",e):""}
</div>
<div class="interval-visual current"
style="width: ${n!=null?Math.min(n/i*100,100):0}%"></div>
</div>
<div class="interval-bar">
<div class="interval-label">
${s("recommended",e)}: ${d} ${s("days",e)}
<span class="confidence-badge ${t}">${s(`confidence_${t}`,e)}</span>
</div>
<div class="interval-visual suggested"
style="width: ${Math.min(d/i*100,100)}%"></div>
</div>
</div>
`}var dt=["month_jan","month_feb","month_mar","month_apr","month_may","month_jun","month_jul","month_aug","month_sep","month_oct","month_nov","month_dec"];function ct(n,d,t){if(!t.seasonal||!n.seasonal_factor||n.seasonal_factor===1)return c;let e=dt.map(h=>s(h,d)),i=new Date().getMonth(),o=n.seasonal_factors||n.interval_analysis?.seasonal_factors||null,_=o&&o.length===12?o:e.map((h,m)=>{let u=n.seasonal_factor||1,y=Math.sin((m-6)*Math.PI/6)*.3;return Math.max(.7,Math.min(1.3,u+y))});return r`
<div class="seasonal-card-compact">
<h4>${s("seasonal_awareness",d)}</h4>
<div class="seasonal-mini-chart">
${_.map((h,m)=>{let u=h*40,y=h<.9?"low":h>1.1?"high":"normal";return r`
<div class="seasonal-bar ${y} ${m===i?"current":""}"
style="height: ${u}px"
title="${e[m]}: ${h.toFixed(2)}x">
</div>
`})}
</div>
<div class="seasonal-legend">
<span class="legend-item"><span class="dot low"></span> ${s("shorter",d)||"K\xFCrzer"}</span>
<span class="legend-item"><span class="dot normal"></span> ${s("normal",d)||"Normal"}</span>
<span class="legend-item"><span class="dot high"></span> ${s("longer",d)||"L\xE4nger"}</span>
</div>
</div>
`}function pt(n,d){return Mt(n,d)}function Mt(n,d){let t=n.seasonal_factors??n.interval_analysis?.seasonal_factors;if(!t||t.length!==12)return c;let e=n.interval_analysis?.seasonal_reason,i=new Date().getMonth(),o=300,_=100,h=8,u=_-h-4,y=Math.max(...t,1.5),I=o/12,F=I*.65,w=h+u-1/y*u;return r`
<div class="seasonal-chart">
<div class="seasonal-chart-title">
<ha-svg-icon aria-hidden="true" path="M17.75 4.09L15.22 6.03L16.13 9.09L13.5 7.28L10.87 9.09L11.78 6.03L9.25 4.09L12.44 4L13.5 1L14.56 4L17.75 4.09M21.25 11L19.61 12.25L20.2 14.23L18.5 13.06L16.8 14.23L17.39 12.25L15.75 11L17.81 10.95L18.5 9L19.19 10.95L21.25 11M18.97 15.95C19.8 15.87 20.69 17.05 20.16 17.8C19.84 18.25 19.5 18.67 19.08 19.07C15.17 23 8.84 23 4.94 19.07C1.03 15.17 1.03 8.83 4.94 4.93C5.34 4.53 5.76 4.17 6.21 3.85C6.96 3.32 8.14 4.21 8.06 5.04C7.79 7.9 8.75 10.87 10.95 13.06C13.14 15.26 16.1 16.22 18.97 15.95Z"></ha-svg-icon>
${s("seasonal_chart_title",d)}
${e?r`<span class="source-tag">${e==="learned"?s("seasonal_learned",d):s("seasonal_manual",d)}</span>`:c}
</div>
<svg viewBox="0 0 ${o} ${_}" preserveAspectRatio="xMidYMid meet" role="img" aria-label="${s("chart_seasonal",d)}">
<line x1="0" y1="${w.toFixed(1)}" x2="${o}" y2="${w.toFixed(1)}"
stroke="var(--divider-color)" stroke-width="1" stroke-dasharray="4,3" />
${t.map((H,S)=>{let D=H/y*u,K=S*I+(I-F)/2,z=h+u-D,j=S===i,O=H<1?"var(--success-color, #4caf50)":H>1?"var(--warning-color, #ff9800)":"var(--secondary-text-color)";return q`
<rect x="${K.toFixed(1)}" y="${z.toFixed(1)}"
width="${F.toFixed(1)}" height="${D.toFixed(1)}"
fill="${O}" opacity="${j?1:.5}" rx="2" />
`})}
</svg>
<div class="seasonal-labels">
${dt.map((H,S)=>r`<span class="seasonal-label ${S===i?"active-month":""}">${s(H,d)}</span>`)}
</div>
</div>
`}var b=class extends x{constructor(){super(...arguments);this._open=!1;this._entryId=null;this._taskId=null;this._task=null;this._objectName="";this._busy=!1;this._error="";this._showSkip=!1;this._showReset=!1;this._showDetails=!1;this._showAdaptive=!1;this._skipReason="";this._resetDate="";this._features={adaptive:!1,predictions:!1,seasonal:!1,environmental:!1,budget:!1,groups:!1,checklists:!1,schedule_time:!1,completion_actions:!1};this._toast="";this._featuresLoaded=!1}get _lang(){return this.hass?.language||"en"}async openFor(t,e){this._entryId=t,this._taskId=e,this._error="",this._showSkip=!1,this._showReset=!1,this._showAdaptive=!1,this._skipReason="",this._resetDate=new Date().toISOString().slice(0,10),this._open=!0,await Promise.all([this._loadTask(),this._loadFeatures()])}async _loadFeatures(){if(!this._featuresLoaded)try{let t=await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/settings"});t?.features&&(this._features={...this._features,...t.features}),this._featuresLoaded=!0}catch{}}close(){this._open=!1,this._task=null,this._error=""}async _loadTask(){if(!(!this._entryId||!this._taskId))try{let t=await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/object",entry_id:this._entryId});this._objectName=t.object?.name||"";let e=(t.tasks||[]).find(i=>i.id===this._taskId);this._task=e??null}catch(t){this._error=k(t,this._lang)}}async _runWs(t){this._busy=!0,this._error="";try{return await this.hass.connection.sendMessagePromise(t),this._busy=!1,!0}catch(e){return this._error=k(e,this._lang),this._busy=!1,!1}}_notifyChanged(t){this.dispatchEvent(new CustomEvent("task-action-fired",{detail:{entry_id:this._entryId,task_id:this._taskId,action:t},bubbles:!0,composed:!0}))}_onComplete(){!this._entryId||!this._taskId||!this._task||import("./dialog-mount-3CFCNZ5R.js").then(({openCompleteDialog:t})=>{t({entry_id:this._entryId,task_id:this._taskId,task_name:this._task.name,checklist:this._task.checklist||[],adaptive_enabled:!!this._task.adaptive_config?.enabled})&&(this._notifyChanged("complete"),this.close())})}async _onSkipConfirm(){if(!this._entryId||!this._taskId)return;await this._runWs({type:"maintenance_supporter/task/skip",entry_id:this._entryId,task_id:this._taskId,reason:this._skipReason.trim()||null})&&(this._notifyChanged("skip"),this.close())}async _onResetConfirm(){if(!this._entryId||!this._taskId)return;await this._runWs({type:"maintenance_supporter/task/reset",entry_id:this._entryId,task_id:this._taskId,date:this._resetDate||void 0})&&(this._notifyChanged("reset"),this.close())}_onEdit(){!this._entryId||!this._taskId||import("./dialog-mount-3CFCNZ5R.js").then(({openEditTaskDialog:t})=>{t(this._entryId,this._taskId),this.close()})}_onQr(){!this._entryId||!this._taskId||!this._task||import("./dialog-mount-3CFCNZ5R.js").then(({openQrDialog:t})=>{t({entry_id:this._entryId,task_id:this._taskId,task_name:this._task.name,object_name:this._objectName}),this.close()})}async _onDelete(){if(!this._entryId||!this._taskId)return;let t=s("delete_task_confirm",this._lang)||`Delete "${this._task?.name}"?`;if(!window.confirm(t))return;await this._runWs({type:"maintenance_supporter/task/delete",entry_id:this._entryId,task_id:this._taskId})&&(this._notifyChanged("delete"),this.close())}async _onArchive(){if(!this._entryId||!this._taskId)return;await this._runWs({type:"maintenance_supporter/task/archive",entry_id:this._entryId,task_id:this._taskId})&&(this._notifyChanged("archive"),this.close())}async _onUnarchive(){if(!this._entryId||!this._taskId)return;await this._runWs({type:"maintenance_supporter/task/unarchive",entry_id:this._entryId,task_id:this._taskId})&&(this._notifyChanged("unarchive"),this.close())}_onOpenInPanel(){if(!this._entryId||!this._taskId)return;let t=`/maintenance-supporter?entry_id=${encodeURIComponent(this._entryId)}&task_id=${encodeURIComponent(this._taskId)}`;history.pushState(null,"",t),window.dispatchEvent(new CustomEvent("location-changed")),this.close()}async _applySuggestion(){if(!this._entryId||!this._taskId||!this._task?.suggested_interval)return;await this._runWs({type:"maintenance_supporter/task/apply_suggestion",entry_id:this._entryId,task_id:this._taskId,interval:this._task.suggested_interval})&&(this._toast=s("suggestion_applied",this._lang)||"Applied",this._notifyChanged("apply_suggestion"),await this._loadTask(),setTimeout(()=>{this._toast=""},2500))}async _reanalyzeInterval(){if(!(!this._entryId||!this._taskId)){this._busy=!0,this._error="";try{let t=await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/task/analyze_interval",entry_id:this._entryId,task_id:this._taskId});this._toast=t.recommended_interval?`${s("reanalyze_result",this._lang)||"Recomputed"}: ${t.recommended_interval}d (${t.data_points} pts)`:s("reanalyze_insufficient_data",this._lang)||"Not enough data",await this._loadTask(),setTimeout(()=>{this._toast=""},3500)}catch(t){this._error=k(t,this._lang)}finally{this._busy=!1}}}_onEditHistoryEntry(t){!this._entryId||!this._taskId||import("./dialog-mount-3CFCNZ5R.js").then(({openHistoryEditDialog:e})=>{e({entry_id:this._entryId,task_id:this._taskId,original_timestamp:t.timestamp,type:t.type,timestamp:t.timestamp,notes:t.notes??null,cost:t.cost??null,duration:t.duration??null,completed_by:t.completed_by??null})})}_renderRecommendation(t){if(!this._features.adaptive||!t.suggested_interval||t.suggested_interval===t.interval_days)return c;let e=this._lang;return r`
<div class="recommendation-card">
<h4>${s("suggested_interval",e)}</h4>
${lt(t.interval_days,t.suggested_interval,t.interval_confidence||"medium",e)}
<div class="recommendation-actions">
<button class="btn primary"
@click=${this._applySuggestion} ?disabled=${this._busy}>
<ha-icon icon="mdi:check"></ha-icon>
${s("apply_suggestion",e)}
</button>
<button class="btn"
@click=${this._reanalyzeInterval} ?disabled=${this._busy}>
<ha-icon icon="mdi:refresh"></ha-icon>
${s("reanalyze",e)}
</button>
</div>
</div>
`}_renderAdaptive(t){let e=this._lang,i=this._features.adaptive&&t.suggested_interval&&t.suggested_interval!==t.interval_days,o=t.degradation_trend!=null&&t.degradation_trend!=="insufficient_data"||t.days_until_threshold!=null||t.environmental_factor!=null&&t.environmental_factor!==1,_=this._features.adaptive&&t.interval_analysis?.weibull_beta!=null&&t.interval_analysis?.weibull_eta!=null,h=this._features.seasonal&&t.seasonal_factor&&t.seasonal_factor!==1;return!i&&!o&&!_&&!h?r`<div class="adaptive-empty">
${s("adaptive_no_data",e)||"Not enough completion history yet for adaptive analysis."}
</div>`:r`
<div class="adaptive-stack">
${this._toast?r`<div class="toast">${this._toast}</div>`:c}
${i?this._renderRecommendation(t):c}
${o?ot(t,e,this._features):c}
${_?nt(t,e):c}
${h?r`
${ct(t,e,this._features)}
${t.seasonal_factors?.length===12||t.interval_analysis?.seasonal_factors?.length===12?pt(t,e):c}
`:c}
</div>
`}_renderDetails(t){let e=this._lang,i=t.history||[],o=i.filter(m=>m.type==="completed"),_=o.reduce((m,u)=>m+(typeof u.cost=="number"?u.cost:0),0),h=(()=>{let m=o.map(u=>typeof u.duration=="number"?u.duration:null).filter(u=>u!=null);return m.length?Math.round(m.reduce((u,y)=>u+y,0)/m.length):null})();return r`
<div class="details">
<div class="stats-grid">
<div class="stat">
<span class="stat-label">${s("times_performed",e)||"Performed"}</span>
<span class="stat-value">${o.length}</span>
</div>
<div class="stat">
<span class="stat-label">${s("total_cost",e)||"Total cost"}</span>
<span class="stat-value">${_.toFixed(2)}</span>
</div>
<div class="stat">
<span class="stat-label">${s("avg_duration",e)||"Avg duration"}</span>
<span class="stat-value">${h!=null?`${h}m`:"\u2014"}</span>
</div>
</div>
<div class="history-header">
<strong>${s("history",e)||"History"}</strong>
<span class="history-count">${i.length}</span>
</div>
${i.length===0?r`<div class="history-empty">${s("history_empty",e)||"No history yet."}</div>`:r`
<div class="history-list">
${[...i].reverse().slice(0,20).map(m=>{let u=["completed","reset","skipped"].includes(m.type);return r`
<div class="history-entry">
<div class="history-line">
<span class="history-type type-${m.type}">${s(m.type,e)}</span>
<span class="history-date">${X(m.timestamp,e)}</span>
${u?r`<button class="history-edit"
title="${s("history_edit_button",e)||"Edit"}"
@click=${()=>this._onEditHistoryEntry(m)}>
<ha-icon icon="mdi:pencil"></ha-icon>
</button>`:c}
</div>
${m.notes?r`<div class="history-notes">${m.notes}</div>`:c}
${m.cost!=null||m.duration!=null?r`<div class="history-meta">
${m.cost!=null?r`<span>💰 ${m.cost.toFixed(2)}</span>`:c}
${m.duration!=null?r`<span>⏱️ ${m.duration}m</span>`:c}
</div>`:c}
</div>
`})}
${i.length>20?r`<div class="history-more">… +${i.length-20} ${s("older_entries",e)||"older"}</div>`:c}
</div>
`}
</div>
`}render(){if(!this._open)return c;let t=this._lang,e=this._task,i=this.hass?.user?.is_admin??!0;return r`
<div class="backdrop" @click=${this.close}></div>
<div class="dialog" role="dialog" aria-modal="true">
${e?r`
<div class="header">
<div class="title">
<span class="status-dot" style="background: ${V[e.status]||"#ccc"}"></span>
<span class="task-name">${e.name}</span>
</div>
<div class="object">
<button class="link-inline" @click=${()=>{this._entryId&&import("./dialog-mount-3CFCNZ5R.js").then(({openObjectQuickActions:o})=>{o(this._entryId),this.close()})}}>${this._objectName}</button>
</div>
<div class="quick-info">
${e.next_due?r`<span><strong>${s("next_due",t)||"Next due"}:</strong> ${N(e.next_due,t)}</span>`:c}
${e.last_performed?r`<span><strong>${s("last_performed",t)||"Last"}:</strong> ${N(e.last_performed,t)}</span>`:c}
${e.schedule?.kind&&!["manual","one_time"].includes(e.schedule.kind)||e.interval_days!=null?r`<span><strong>${s("interval",t)||"Interval"}:</strong> ${tt(e,t)}</span>`:c}
</div>
</div>
${this._error?r`<div class="error">${this._error}</div>`:c}
${this._showSkip?r`
<div class="inline-form">
<label>${s("skip_reason",t)||"Skip reason (optional)"}</label>
<input type="text" .value=${this._skipReason}
@input=${o=>{this._skipReason=o.target.value}} />
<div class="inline-actions">
<button class="btn cancel" @click=${()=>{this._showSkip=!1}} ?disabled=${this._busy}>
${s("cancel",t)||"Cancel"}
</button>
<button class="btn primary" @click=${this._onSkipConfirm} ?disabled=${this._busy}>
${s("skip",t)||"Skip"}
</button>
</div>
</div>
`:this._showReset?r`
<div class="inline-form">
<label>${s("reset_to_date",t)||"Reset last_performed to"}</label>
<input type="date" .value=${this._resetDate}
@input=${o=>{this._resetDate=o.target.value}} />
<div class="inline-actions">
<button class="btn cancel" @click=${()=>{this._showReset=!1}} ?disabled=${this._busy}>
${s("cancel",t)||"Cancel"}
</button>
<button class="btn primary" @click=${this._onResetConfirm} ?disabled=${this._busy}>
${s("reset",t)||"Reset"}
</button>
</div>
</div>
`:r`
<div class="actions primary-row">
<button class="btn primary" @click=${this._onComplete} ?disabled=${this._busy}>
<ha-icon icon="mdi:check"></ha-icon>
${s("complete",t)||"Complete"}
</button>
<button class="btn" @click=${()=>{this._showSkip=!0}} ?disabled=${this._busy}>
<ha-icon icon="mdi:skip-next"></ha-icon>
${s("skip",t)||"Skip"}
</button>
<button class="btn" @click=${()=>{this._showReset=!0}} ?disabled=${this._busy}>
<ha-icon icon="mdi:restart"></ha-icon>
${s("reset",t)||"Reset"}
</button>
</div>
${i?r`
<div class="actions secondary-row">
<button class="btn ghost" @click=${this._onEdit} ?disabled=${this._busy}>
<ha-icon icon="mdi:pencil"></ha-icon>
${s("edit",t)||"Edit"}
</button>
<button class="btn ghost" @click=${this._onQr} ?disabled=${this._busy}>
<ha-icon icon="mdi:qrcode"></ha-icon>
${s("qr_code",t)||"QR"}
</button>
<button class="btn ghost"
@click=${e.archived?this._onUnarchive:this._onArchive}
?disabled=${this._busy}>
<ha-icon icon="${e.archived?"mdi:archive-arrow-up-outline":"mdi:archive-outline"}"></ha-icon>
${e.archived?s("unarchive",t)||"Unarchive":s("archive",t)||"Archive"}
</button>
<button class="btn ghost danger" @click=${this._onDelete} ?disabled=${this._busy}>
<ha-icon icon="mdi:delete"></ha-icon>
${s("delete",t)||"Delete"}
</button>
</div>
`:c}
<div class="details-toggle">
<button class="link" @click=${()=>{this._showDetails=!this._showDetails}}>
<ha-icon icon="${this._showDetails?"mdi:chevron-up":"mdi:chevron-down"}"></ha-icon>
${this._showDetails?s("hide_details",t)||"Hide details":s("show_details",t)||"Show history + stats"}
</button>
${this._features.adaptive||this._features.seasonal||this._features.environmental?r`<button class="link" @click=${()=>{this._showAdaptive=!this._showAdaptive}}>
<ha-icon icon="${this._showAdaptive?"mdi:chart-line":"mdi:chart-line-variant"}"></ha-icon>
${this._showAdaptive?s("hide_stats",t)||"Hide stats":s("show_stats",t)||"Show stats + graphs"}
</button>`:c}
</div>
${this._showDetails?this._renderDetails(e):c}
${this._showAdaptive?this._renderAdaptive(e):c}
<div class="footer">
<button class="link" @click=${this._onOpenInPanel}>
<ha-icon icon="mdi:open-in-new"></ha-icon>
${s("open_in_panel",t)||"Open in Maintenance panel"}
</button>
</div>
`}
`:r`<div class="loading">${s("loading",t)||"Loading\u2026"}</div>`}
</div>
`}};b.styles=[it,$`
:host { display: contents; }
.backdrop {
position: fixed; inset: 0; z-index: 100;
background: rgba(0,0,0,0.5);
}
.dialog {
position: fixed; left: 50%; top: 50%;
transform: translate(-50%, -50%);
width: 95vw; max-width: 460px;
max-height: 92vh; overflow: auto;
background: var(--card-background-color, var(--ha-card-background, #1c1c1c));
color: var(--primary-text-color);
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.4);
padding: 20px;
display: flex; flex-direction: column; gap: 14px;
z-index: 101;
}
.header { display: flex; flex-direction: column; gap: 6px; }
.title { display: flex; align-items: center; gap: 10px; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.task-name { font-size: 18px; font-weight: 600; }
.object { font-size: 13px; color: var(--secondary-text-color); }
.link-inline {
background: transparent; border: none; padding: 0; cursor: pointer;
color: var(--primary-color); font-size: inherit; font-family: inherit;
}
.link-inline:hover { text-decoration: underline; }
.quick-info {
display: flex; flex-wrap: wrap; gap: 12px;
font-size: 12px; color: var(--secondary-text-color);
padding-top: 4px; border-top: 1px solid var(--divider-color);
}
.quick-info strong { color: var(--primary-text-color); font-weight: 500; }
.actions { display: flex; gap: 8px; }
.actions.primary-row { gap: 6px; }
.actions.primary-row .btn { flex: 1; }
/* Edit + QR are admin-tools — left-align as a group; Delete is destructive
so it gets pushed to the far right with margin-left:auto for visual
separation. Earlier this row was flex-end which left a strange empty
gap on the left (user feedback). */
.actions.secondary-row {
padding-top: 8px; border-top: 1px solid var(--divider-color);
justify-content: flex-start;
}
.actions.secondary-row .btn.danger {
margin-left: auto;
}
.btn {
padding: 8px 12px; font-size: 14px;
border-radius: 6px; cursor: pointer;
border: 1px solid var(--divider-color);
background: var(--secondary-background-color, transparent);
color: var(--primary-text-color);
font-weight: 500;
display: inline-flex; align-items: center; gap: 6px;
transition: background 0.12s;
}
.btn:hover { background: var(--state-icon-color, rgba(255,255,255,0.06)); }
.btn[disabled] { opacity: 0.5; cursor: wait; }
.btn.primary {
background: var(--primary-color);
color: var(--text-primary-color, white);
border-color: var(--primary-color);
}
.btn.cancel { background: transparent; }
.btn.ghost { padding: 6px 10px; font-size: 13px; }
.btn.danger { color: var(--error-color); }
.btn ha-icon { --mdc-icon-size: 18px; }
.inline-form { display: flex; flex-direction: column; gap: 8px; }
.inline-form label { font-size: 13px; color: var(--secondary-text-color); }
.inline-form input {
padding: 8px; font-size: 14px;
background: var(--secondary-background-color, #2c2c2c);
color: var(--primary-text-color);
border: 1px solid var(--divider-color, #444);
border-radius: 6px;
}
.inline-actions { display: flex; gap: 8px; justify-content: flex-end; }
.footer { display: flex; justify-content: center; padding-top: 4px; }
.link {
background: transparent; border: none; cursor: pointer;
color: var(--primary-color); font-size: 13px;
display: inline-flex; align-items: center; gap: 4px;
}
.link:hover { text-decoration: underline; }
.link ha-icon { --mdc-icon-size: 14px; }
.loading { padding: 24px; text-align: center; color: var(--secondary-text-color); }
.error {
padding: 8px; border-radius: 6px;
background: rgba(211,47,47,0.1);
color: var(--error-color, #d32f2f); font-size: 13px;
}
/* Details (expandable Show details section) */
.details-toggle { display: flex; justify-content: center; margin-top: 4px; }
.details {
display: flex; flex-direction: column; gap: 12px;
border-top: 1px solid var(--divider-color);
padding-top: 12px;
}
.stats-grid {
display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.stat {
display: flex; flex-direction: column; gap: 2px;
background: var(--secondary-background-color, rgba(255,255,255,0.04));
padding: 8px; border-radius: 6px;
align-items: center;
}
.stat-label { font-size: 11px; color: var(--secondary-text-color); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-value { font-size: 16px; font-weight: 600; }
.history-header {
display: flex; align-items: baseline; gap: 8px;
font-size: 14px;
}
.history-count {
font-size: 12px; color: var(--secondary-text-color);
background: var(--secondary-background-color); padding: 2px 8px; border-radius: 999px;
}
.history-empty { color: var(--secondary-text-color); font-style: italic; font-size: 13px; }
.history-list { display: flex; flex-direction: column; gap: 8px; max-height: 280px; overflow: auto; }
.history-entry {
padding: 6px 8px; border-radius: 6px;
background: var(--secondary-background-color, rgba(255,255,255,0.03));
font-size: 13px;
}
.history-line {
display: flex; align-items: center; gap: 8px;
justify-content: space-between;
}
.history-type {
font-weight: 600; font-size: 11px;
padding: 2px 6px; border-radius: 4px;
text-transform: uppercase; letter-spacing: 0.5px;
}
.type-completed { background: rgba(46,125,50,0.2); color: #66bb6a; }
.type-skipped { background: rgba(158,158,158,0.2); color: var(--secondary-text-color); }
.type-reset { background: rgba(33,150,243,0.2); color: #64b5f6; }
.type-triggered { background: rgba(255,87,34,0.2); color: #ff8a65; }
.history-date { font-size: 11px; color: var(--secondary-text-color); flex: 1; text-align: right; }
.history-edit {
background: transparent; border: none; cursor: pointer;
padding: 4px; border-radius: 4px;
color: var(--secondary-text-color);
}
.history-edit:hover { background: var(--state-icon-color, rgba(255,255,255,0.06)); color: var(--primary-color); }
.history-edit ha-icon { --mdc-icon-size: 14px; }
.history-notes { margin-top: 4px; color: var(--primary-text-color); }
.history-meta { display: flex; gap: 12px; margin-top: 4px; color: var(--secondary-text-color); font-size: 11px; }
.history-more { padding: 8px; text-align: center; font-size: 12px; color: var(--secondary-text-color); font-style: italic; }
/* Adaptive section — wraps the panel renderers (which assume sharedStyles
are present) and adds dialog-specific layout. */
.adaptive-stack {
display: flex; flex-direction: column; gap: 12px;
border-top: 1px solid var(--divider-color);
padding-top: 12px;
}
.adaptive-empty {
padding: 16px; text-align: center;
color: var(--secondary-text-color);
font-style: italic; font-size: 13px;
border-top: 1px solid var(--divider-color);
}
.toast {
padding: 8px 12px; border-radius: 6px;
background: rgba(76, 175, 80, 0.15);
color: #4caf50; font-size: 13px; font-weight: 500;
}
/* The panel's recommendation-card uses ha-button. We use plain <button>
in this dialog's button styles. Re-style the action row to match. */
.recommendation-actions {
display: flex; gap: 8px; margin-top: 8px;
}
/* Constrain SVG charts so they fit the dialog width even on mobile. */
.weibull-section, .seasonal-card-compact { max-width: 100%; }
.weibull-chart svg { max-width: 100%; height: auto; }
.details-toggle { gap: 12px; flex-wrap: wrap; }
`],a([g({attribute:!1})],b.prototype,"hass",2),a([l()],b.prototype,"_open",2),a([l()],b.prototype,"_entryId",2),a([l()],b.prototype,"_taskId",2),a([l()],b.prototype,"_task",2),a([l()],b.prototype,"_objectName",2),a([l()],b.prototype,"_busy",2),a([l()],b.prototype,"_error",2),a([l()],b.prototype,"_showSkip",2),a([l()],b.prototype,"_showReset",2),a([l()],b.prototype,"_showDetails",2),a([l()],b.prototype,"_showAdaptive",2),a([l()],b.prototype,"_skipReason",2),a([l()],b.prototype,"_resetDate",2),a([l()],b.prototype,"_features",2),a([l()],b.prototype,"_toast",2);customElements.get("maintenance-task-quick-actions-dialog")||customElements.define("maintenance-task-quick-actions-dialog",b);var C=class extends x{constructor(){super(...arguments);this._open=!1;this._entryId=null;this._data=null;this._busy=!1;this._error=""}get _lang(){return this.hass?.language||"en"}async openFor(t){this._entryId=t,this._error="",this._open=!0,await this._load()}close(){this._open=!1,this._data=null,this._error=""}async _load(){if(this._entryId)try{let t=await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/object",entry_id:this._entryId});this._data=t}catch(t){this._error=k(t,this._lang)}}_onEditObject(){!this._entryId||!this._data||import("./dialog-mount-3CFCNZ5R.js").then(({openEditObjectDialog:t})=>{t(this._entryId,this._data.object),this.close()})}_onAddTask(){this._entryId&&import("./dialog-mount-3CFCNZ5R.js").then(({openCreateTaskDialog:t})=>{t(),this.close()})}async _onDelete(){if(!this._entryId||!this._data)return;let t=s("delete_object_confirm",this._lang)||`Delete "${this._data.object.name}" and all its tasks?`;if(window.confirm(t)){this._busy=!0,this._error="";try{await this.hass.connection.sendMessagePromise({type:"maintenance_supporter/object/delete",entry_id:this._entryId}),this.dispatchEvent(new CustomEvent("object-deleted",{detail:{entry_id:this._entryId},bubbles:!0,composed:!0})),this.close()}catch(e){this._error=k(e,this._lang)}finally{this._busy=!1}}}async _onArchiveObject(){if(!this._entryId||!this._data)return;let t=!!this._data.object.archived;if(!t){let e=s("confirm_archive_object",this._lang)||"Archive this object and its tasks?";if(!window.confirm(e))return}this._busy=!0,this._error="";try{await this.hass.connection.sendMessagePromise({type:t?"maintenance_supporter/object/unarchive":"maintenance_supporter/object/archive",entry_id:this._entryId}),this.dispatchEvent(new CustomEvent("object-changed",{detail:{entry_id:this._entryId},bubbles:!0,composed:!0})),this.close()}catch(e){this._error=k(e,this._lang)}finally{this._busy=!1}}_onTaskClick(t){this._entryId&&import("./dialog-mount-3CFCNZ5R.js").then(({openTaskQuickActions:e})=>{e(this._entryId,t)})}render(){if(!this._open)return c;let t=this._lang,e=this._data,i=e?.object,o=e?.tasks||[],_=this.hass?.user?.is_admin??!0;return r`
<div class="backdrop" @click=${this.close}></div>
<div class="dialog" role="dialog" aria-modal="true">
${e&&i?r`
<div class="header">
<div class="title">${i.name}</div>
${this._renderMetaRow(i)}
</div>
${this._error?r`<div class="error">${this._error}</div>`:c}
<div class="tasks-section">
<div class="section-header">
<strong>${s("tasks",t)||"Tasks"}</strong>
<span class="count">${o.length}</span>
</div>
${o.length===0?r`<div class="empty">${s("no_tasks",t)||"No tasks yet."}</div>`:r`
<div class="task-list">
${o.map(h=>r`
<div class="task-row" @click=${()=>this._onTaskClick(h.id)}>
<span class="status-dot" style="background: ${V[h.status]||"#ccc"}"></span>
<span class="task-name">${h.name}</span>
<span class="task-status">${s(h.status||"ok",t)}</span>
</div>
`)}
</div>
`}
</div>
${i.notes?r`
<div class="notes-section">
<strong>${s("object_notes_label",t)}</strong>
<div class="notes-body">${i.notes}</div>
</div>
`:c}
${_?r`
<div class="actions">
<button class="btn primary" @click=${this._onAddTask} ?disabled=${this._busy}>
<ha-icon icon="mdi:plus"></ha-icon>
${s("add_task",t)||"Add task"}
</button>
<button class="btn" @click=${this._onEditObject} ?disabled=${this._busy}>
<ha-icon icon="mdi:pencil"></ha-icon>
${s("edit",t)||"Edit"}
</button>
<button class="btn" @click=${this._onArchiveObject} ?disabled=${this._busy}>
<ha-icon icon="${i.archived?"mdi:archive-arrow-up-outline":"mdi:archive-outline"}"></ha-icon>
${i.archived?s("unarchive_object",t)||"Unarchive object":s("archive_object",t)||"Archive object"}
</button>
<button class="btn danger" @click=${this._onDelete} ?disabled=${this._busy}>
<ha-icon icon="mdi:delete"></ha-icon>
${s("delete",t)||"Delete"}
</button>
</div>
`:c}
`:r`<div class="loading">${s("loading",t)||"Loading\u2026"}</div>`}
</div>
`}_renderMetaRow(t){let e=this._lang,i=[];return t.area_id&&i.push([s("area",e),t.area_id]),t.manufacturer&&i.push([s("manufacturer",e),t.manufacturer]),t.model&&i.push([s("model",e),t.model]),t.serial_number&&i.push([s("serial_number_label",e),t.serial_number]),t.installation_date&&i.push([s("installed",e),t.installation_date]),t.warranty_expiry&&i.push([s("warranty",e),t.warranty_expiry]),t.documentation_url&&i.push([s("documentation_url_label",e),t.documentation_url]),i.length===0?c:r`
<div class="meta">
${i.map(([o,_])=>r`
<div class="meta-item">
<span class="meta-label">${o}</span>
<span class="meta-value">${/^https?:\/\//i.test(_)?r`<a href="${_}" target="_blank" rel="noopener noreferrer">${_}</a>`:_}</span>
</div>
`)}
</div>
`}};C.styles=$`
:host { display: contents; }
.backdrop {
position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.5);
}
.dialog {
position: fixed; left: 50%; top: 50%;
transform: translate(-50%, -50%);
width: 95vw; max-width: 480px;
max-height: 92vh; overflow: auto;
background: var(--card-background-color, var(--ha-card-background, #1c1c1c));
color: var(--primary-text-color);
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.4);
padding: 20px; z-index: 101;
display: flex; flex-direction: column; gap: 14px;
}
.header { display: flex; flex-direction: column; gap: 6px; }
.title { font-size: 20px; font-weight: 600; }
.meta { display: flex; flex-direction: column; gap: 4px; padding-top: 4px; border-top: 1px solid var(--divider-color); }
.meta-item { display: flex; gap: 8px; font-size: 12px; }
.meta-label { color: var(--secondary-text-color); min-width: 100px; }
.meta-value { color: var(--primary-text-color); flex: 1; word-break: break-word; }
.meta-value a { color: var(--primary-color); }
.tasks-section, .notes-section { display: flex; flex-direction: column; gap: 6px; }
.section-header { display: flex; align-items: baseline; gap: 8px; }
.count {
font-size: 11px; color: var(--secondary-text-color);
background: var(--secondary-background-color); padding: 2px 8px; border-radius: 999px;
}
.empty { color: var(--secondary-text-color); font-style: italic; font-size: 13px; padding: 8px 0; }
.task-list { display: flex; flex-direction: column; gap: 4px; max-height: 200px; overflow: auto; }
.task-row {
display: flex; align-items: center; gap: 10px;
padding: 8px; border-radius: 6px; cursor: pointer;
background: var(--secondary-background-color, rgba(255,255,255,0.03));
transition: background 0.12s;
}
.task-row:hover { background: var(--state-icon-color, rgba(255,255,255,0.06)); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.task-name { flex: 1; font-size: 14px; }
.task-status { font-size: 11px; color: var(--secondary-text-color); text-transform: uppercase; }
.notes-body { white-space: pre-wrap; font-size: 13px; padding: 8px; background: var(--secondary-background-color); border-radius: 6px; }
.actions { display: flex; gap: 8px; padding-top: 8px; border-top: 1px solid var(--divider-color); }
.actions .btn { flex: 1; }
.btn {
padding: 8px; font-size: 13px; border-radius: 6px; cursor: pointer;
border: 1px solid var(--divider-color);
background: var(--secondary-background-color, transparent);
color: var(--primary-text-color); font-weight: 500;
display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.btn:hover { background: var(--state-icon-color, rgba(255,255,255,0.06)); }
.btn[disabled] { opacity: 0.5; cursor: wait; }
.btn.primary { background: var(--primary-color); color: var(--text-primary-color, white); border-color: var(--primary-color); }
.btn.danger { color: var(--error-color); }
.btn ha-icon { --mdc-icon-size: 16px; }
.loading { padding: 24px; text-align: center; color: var(--secondary-text-color); }
.error { padding: 8px; border-radius: 6px; background: rgba(211,47,47,0.1); color: var(--error-color); font-size: 13px; }
`,a([g({attribute:!1})],C.prototype,"hass",2),a([l()],C.prototype,"_open",2),a([l()],C.prototype,"_entryId",2),a([l()],C.prototype,"_data",2),a([l()],C.prototype,"_busy",2),a([l()],C.prototype,"_error",2);customElements.get("maintenance-object-quick-actions-dialog")||customElements.define("maintenance-object-quick-actions-dialog",C);var _t="maintenance-object-dialog",ut="maintenance-task-dialog",Ft="maintenance-history-edit-dialog",zt="maintenance-complete-dialog",qt="maintenance-qr-dialog",Ut="maintenance-task-quick-actions-dialog",Nt="maintenance-object-quick-actions-dialog";function G(){return document.querySelector("home-assistant")?.hass}function P(n){let d=document.body.querySelector(n);return d||(d=document.createElement(n),document.body.appendChild(d)),d}function M(n){let d=G();if(!d)return!1;n.hass=d;let t=d.language||"en";return Z(t)||J(t).then(()=>{n.requestUpdate?.()}),!0}var ht={features:{adaptive:!1,predictions:!1,seasonal:!1,environmental:!1,budget:!1,groups:!1,checklists:!1,schedule_time:!1,completion_actions:!1},defaultWarningDays:7},B=null;function mt(n){return B||(B=n.connection.sendMessagePromise({type:"maintenance_supporter/settings"}).then(d=>({features:d.features??ht.features,defaultWarningDays:d.general?.default_warning_days??7})).catch(()=>ht),B)}function ni(){let n=P(_t);return M(n)?(n.openCreate(),!0):!1}function oi(n,d){let t=P(_t);return M(t)?(t.openEdit(n,d),!0):!1}function li(){let n=P(ut);if(!M(n))return!1;let d=G();return d?((async()=>{let t=await mt(d),e=n;e.checklistsEnabled=t.features.checklists,e.scheduleTimeEnabled=t.features.schedule_time,e.completionActionsEnabled=t.features.completion_actions,e.defaultWarningDays=t.defaultWarningDays,e.openCreate()})(),!0):!1}function di(n,d){let t=P(ut);if(!M(t))return!1;let e=G();return e?((async()=>{try{let[i,o]=await Promise.all([e.connection.sendMessagePromise({type:"maintenance_supporter/object",entry_id:n}),mt(e)]),_=(i.tasks||[]).find(m=>m.id===d);if(!_){console.warn(`openEditTaskDialog: task ${d} not found in entry ${n}`);return}let h=t;h.checklistsEnabled=o.features.checklists,h.scheduleTimeEnabled=o.features.schedule_time,h.completionActionsEnabled=o.features.completion_actions,h.defaultWarningDays=o.defaultWarningDays,await h.openEdit(n,_)}catch(i){console.warn("openEditTaskDialog: failed to load task/features",i)}})(),!0):!1}function ci(n){let d=P(Ft);return M(d)?(d.openEdit(n),!0):!1}function pi(n){let d=P(zt);return M(d)?(d.entryId=n.entry_id,d.taskId=n.task_id,d.taskName=n.task_name,d.checklist=n.checklist??[],d.adaptiveEnabled=!!n.adaptive_enabled,d.lang=G()?.language||"en",d.open(),!0):!1}function hi(n){let d=P(qt);return M(d)?(d.openForTask(n.entry_id,n.task_id,n.object_name,n.task_name),!0):!1}function _i(n,d){let t=P(Ut);return M(t)?(t.openFor(n,d),!0):!1}function ui(n){let d=P(Nt);return M(d)?(d.openFor(n),!0):!1}export{pi as openCompleteDialog,ni as openCreateObjectDialog,li as openCreateTaskDialog,oi as openEditObjectDialog,di as openEditTaskDialog,ci as openHistoryEditDialog,ui as openObjectQuickActions,hi as openQrDialog,_i as openTaskQuickActions};