Add color temp slider if ct_color is supported

This commit is contained in:
Tom Duijf 2015-10-27 22:08:36 +00:00
parent 24623ff26a
commit 83eb223169
2 changed files with 29 additions and 2 deletions

View File

@ -40,9 +40,19 @@
on-change='brightnessSliderChanged' class='flex'> on-change='brightnessSliderChanged' class='flex'>
</paper-slider> </paper-slider>
</div> </div>
<template is="dom-if" if="{{ctSliderValue}}">
<div class='brightness center horizontal layout'>
<div>Color temperature</div>
<paper-slider min="154" max="500"
id='ct' value='{{ctSliderValue}}'
on-change='ctSliderChanged' class='flex'>
</paper-slider>
</div>
</template>
<ha-color-picker on-colorselected='colorPicked' width='350' height='200'> <ha-color-picker on-colorselected='colorPicked' width='350' height='200'>
</color-picker> </ha-color-picker>
</div> </div>
</template> </template>
</dom-module> </dom-module>

View File

@ -5,7 +5,7 @@ import attributeClassNames from '../util/attribute-class-names';
require('../components/ha-color-picker'); require('../components/ha-color-picker');
const ATTRIBUTE_CLASSES = ['brightness', 'xy_color']; const ATTRIBUTE_CLASSES = ['brightness', 'xy_color', 'ct_color'];
export default new Polymer({ export default new Polymer({
is: 'more-info-light', is: 'more-info-light',
@ -20,11 +20,17 @@ export default new Polymer({
type: Number, type: Number,
value: 0, value: 0,
}, },
ctSliderValue: {
type: Number,
value: 0,
},
}, },
stateObjChanged(newVal) { stateObjChanged(newVal) {
if (newVal && newVal.state === 'on') { if (newVal && newVal.state === 'on') {
this.brightnessSliderValue = newVal.attributes.brightness; this.brightnessSliderValue = newVal.attributes.brightness;
this.ctSliderValue = newVal.attributes.ct_color;
} }
this.async(() => this.fire('iron-resize'), 500); this.async(() => this.fire('iron-resize'), 500);
@ -49,6 +55,17 @@ export default new Polymer({
} }
}, },
ctSliderChanged(ev) {
const ct = parseInt(ev.target.value, 10);
if (isNaN(ct)) return;
serviceActions.callService('light', 'turn_on', {
entity_id: this.stateObj.entityId,
ct_color: ct,
});
},
colorPicked(ev) { colorPicked(ev) {
const color = ev.detail.rgb; const color = ev.detail.rgb;