1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 02:38:53 +00:00
Files
frontend/js/panel-config/condition/time.js
Paulus Schoutsen 912969111f Move all of hassUtil to JS (#1153)
* Move all of hassUtil to JS

* Fix tests
2018-05-09 21:33:31 -04:00

36 lines
878 B
JavaScript

import { h, Component } from 'preact';
import { onChangeEvent } from '../../common/preact/event.js';
export default class TimeCondition extends Component {
constructor() {
super();
this.onChange = onChangeEvent.bind(this, 'condition');
}
/* eslint-disable camelcase */
render({ condition, localize }) {
const { after, before } = condition;
return (
<div>
<paper-input
label={localize('ui.panel.config.automation.editor.conditions.type.time.after')}
name="after"
value={after}
onvalue-changed={this.onChange}
/>
<paper-input
label={localize('ui.panel.config.automation.editor.conditions.type.time.before')}
name="before"
value={before}
onvalue-changed={this.onChange}
/>
</div>
);
}
}
TimeCondition.defaultConfig = {
};