ha-frontend/src/state-summary/state-card-media_player.js

98 lines
2.4 KiB
JavaScript

import "@polymer/iron-flex-layout/iron-flex-layout-classes";
import { html } from "@polymer/polymer/lib/utils/html-tag";
/* eslint-plugin-disable lit */
import { PolymerElement } from "@polymer/polymer/polymer-element";
import { computeStateDisplay } from "../common/entity/compute_state_display";
import "../components/entity/state-info";
import LocalizeMixin from "../mixins/localize-mixin";
import HassMediaPlayerEntity from "../util/hass-media-player-model";
/*
* @appliesMixin LocalizeMixin
*/
class StateCardMediaPlayer extends LocalizeMixin(PolymerElement) {
static get template() {
return html`
<style include="iron-flex iron-flex-alignment"></style>
<style>
:host {
line-height: 1.5;
}
.state {
@apply --paper-font-common-nowrap;
@apply --paper-font-body1;
margin-left: 16px;
text-align: right;
}
.main-text {
@apply --paper-font-common-nowrap;
color: var(--primary-text-color);
}
.main-text[take-height] {
line-height: 40px;
}
.secondary-text {
@apply --paper-font-common-nowrap;
color: var(--secondary-text-color);
}
</style>
<div class="horizontal justified layout">
${this.stateInfoTemplate}
<div class="state">
<div class="main-text" take-height$="[[!playerObj.secondaryTitle]]">
[[computePrimaryText(localize, playerObj)]]
</div>
<div class="secondary-text">[[playerObj.secondaryTitle]]</div>
</div>
</div>
`;
}
static get stateInfoTemplate() {
return html`
<state-info
hass="[[hass]]"
state-obj="[[stateObj]]"
in-dialog="[[inDialog]]"
></state-info>
`;
}
static get properties() {
return {
hass: Object,
stateObj: Object,
inDialog: {
type: Boolean,
value: false,
},
playerObj: {
type: Object,
computed: "computePlayerObj(hass, stateObj)",
},
};
}
computePlayerObj(hass, stateObj) {
return new HassMediaPlayerEntity(hass, stateObj);
}
computePrimaryText(localize, playerObj) {
return (
playerObj.primaryTitle ||
computeStateDisplay(
localize,
playerObj.stateObj,
this.hass.locale,
this.hass.entities
)
);
}
}
customElements.define("state-card-media_player", StateCardMediaPlayer);