-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53390cc
commit 28d60ca
Showing
1 changed file
with
158 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
class CustomBinaryRow extends Polymer.Element { | ||
|
||
static get template() { | ||
return Polymer.html` | ||
<style is="custom-style" include="iron-flex iron-flex-alignment"></style> | ||
<style> | ||
:host { | ||
line-height: inherit; | ||
} | ||
.switch { | ||
min-width: 30px; | ||
max-width: 30px; | ||
height: 30px; | ||
margin-left: 2px; | ||
margin-right: 2px; | ||
background-color: #759aaa; | ||
border: 1px solid lightgrey; | ||
border-radius: 4px; | ||
font-size: 10px !important; | ||
color: inherit; | ||
text-align: center; | ||
float: right !important; | ||
padding: 1px; | ||
} | ||
</style> | ||
<hui-generic-entity-row hass="[[hass]]" config="[[_config]]"> | ||
<div class='horizontal justified layout' on-click="stopPropagation"> | ||
<button | ||
class='switch' | ||
style='[[_onColor]]' | ||
toggles name="on" | ||
on-click='setState' | ||
disabled='[[_isOnState]]'>ON</button> | ||
<button | ||
class='switch' | ||
style='[[_offColor]]' | ||
toggles name="off" | ||
on-click='setState' | ||
disabled='[[_isOffState]]'>OFF</button> | ||
</div> | ||
</hui-generic-entity-row> | ||
`; | ||
} | ||
|
||
static get properties() { | ||
return { | ||
hass: { | ||
type: Object, | ||
observer: 'hassChanged' | ||
}, | ||
_config: Object, | ||
_stateObj: Object, | ||
_onColor: String, | ||
_offColor: String, | ||
_isOffState: Boolean, | ||
_isOnState: Boolean, | ||
} | ||
} | ||
|
||
setConfig(config) { | ||
this._config = config; | ||
|
||
this._config = { | ||
customTheme: false, | ||
IsOnColor: '#43A047', | ||
IsOffColor: '#f44c09', | ||
ButtonInactiveColor: '#759aaa', | ||
...config | ||
}; | ||
} | ||
|
||
hassChanged(hass) { | ||
|
||
const config = this._config; | ||
const stateObj = hass.states[config.entity]; | ||
const custTheme = config.customTheme; | ||
const custOnClr = config.IsOnColor; | ||
const custOffClr = config.IsOffColor; | ||
const custInactiveClr = config.ButtonInactiveColor; | ||
|
||
|
||
|
||
|
||
let state; | ||
if (stateObj) { | ||
state = stateObj.state; | ||
} | ||
|
||
let onstate; | ||
let offstate; | ||
|
||
if (stateObj) { | ||
if (stateObj.state == 'on') { | ||
onstate = 'on'; | ||
} else { | ||
offstate = 'on'; | ||
} | ||
} | ||
|
||
let oncolor; | ||
let offcolor; | ||
|
||
if (custTheme) { | ||
|
||
if (onstate == 'on') { | ||
oncolor = 'background-color:' + custOnClr; | ||
} else { | ||
oncolor = 'background-color:' + custInactiveClr; | ||
} | ||
|
||
if (offstate == 'on') { | ||
offcolor = 'background-color:' + custOffClr; | ||
} else { | ||
offcolor = 'background-color:' + custInactiveClr; | ||
} | ||
|
||
} else { | ||
|
||
if (onstate == 'on') { | ||
oncolor = 'background-color: var(--primary-color)'; | ||
} else { | ||
oncolor = 'background-color: var(--disabled-text-color)'; | ||
} | ||
|
||
if (offstate == 'on') { | ||
offcolor = 'background-color: var(--primary-color)'; | ||
} else { | ||
offcolor = 'background-color: var(--disabled-text-color)'; | ||
} | ||
} | ||
|
||
|
||
this.setProperties({ | ||
_stateObj: stateObj, | ||
_isOffState: stateObj.state == 'off', | ||
_isOnState: stateObj.state === 'on', | ||
_onColor: oncolor, | ||
_offColor: offcolor, | ||
}); | ||
} | ||
|
||
stopPropagation(e) { | ||
e.stopPropagation(); | ||
} | ||
|
||
setState(e) { | ||
const state = e.currentTarget.getAttribute('name'); | ||
if( state == 'off' ){ | ||
this.hass.callService('homeassistant', 'turn_off', {entity_id: this._config.entity}); | ||
} else { | ||
this.hass.callService('homeassistant', 'turn_on', {entity_id: this._config.entity}); | ||
} | ||
} | ||
|
||
} | ||
|
||
customElements.define('binary-control-button-row', CustomBinaryRow); |