-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added "Media player volume slider" card feature. (#23199)
* Added "Media player volume" card feature. * Make sure the feature is not displayed on unsupported players Co-authored-by: Petar Petrov <[email protected]> * Renamed to Media player volume *slider* * Missed one rename. --------- Co-authored-by: Simon Zumbrunnen <[email protected]> Co-authored-by: Petar Petrov <[email protected]>
- Loading branch information
1 parent
9d83cc6
commit da727d3
Showing
6 changed files
with
124 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
97 changes: 97 additions & 0 deletions
97
src/panels/lovelace/card-features/hui-media-player-volume-slider-card-feature.ts
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,97 @@ | ||
import type { HassEntity } from "home-assistant-js-websocket"; | ||
import { html, LitElement, nothing } from "lit"; | ||
import { customElement, property, state } from "lit/decorators"; | ||
import { computeDomain } from "../../../common/entity/compute_domain"; | ||
import { stateActive } from "../../../common/entity/state_active"; | ||
import "../../../components/ha-control-slider"; | ||
import { isUnavailableState } from "../../../data/entity"; | ||
import type { HomeAssistant } from "../../../types"; | ||
import type { LovelaceCardFeature } from "../types"; | ||
import { cardFeatureStyles } from "./common/card-feature-styles"; | ||
import type { MediaPlayerVolumeSliderCardFeatureConfig } from "./types"; | ||
import { MediaPlayerEntityFeature } from "../../../data/media-player"; | ||
import { supportsFeature } from "../../../common/entity/supports-feature"; | ||
|
||
export const supportsMediaPlayerVolumeSliderCardFeature = ( | ||
stateObj: HassEntity | ||
) => { | ||
const domain = computeDomain(stateObj.entity_id); | ||
return ( | ||
domain === "media_player" && | ||
supportsFeature(stateObj, MediaPlayerEntityFeature.VOLUME_SET) | ||
); | ||
}; | ||
|
||
@customElement("hui-media-player-volume-slider-card-feature") | ||
class HuiMediaPlayerVolumeSliderCardFeature | ||
extends LitElement | ||
implements LovelaceCardFeature | ||
{ | ||
@property({ attribute: false }) public hass?: HomeAssistant; | ||
|
||
@property({ attribute: false }) public stateObj?: HassEntity; | ||
|
||
@state() private _config?: MediaPlayerVolumeSliderCardFeatureConfig; | ||
|
||
static getStubConfig(): MediaPlayerVolumeSliderCardFeatureConfig { | ||
return { | ||
type: "media-player-volume-slider", | ||
}; | ||
} | ||
|
||
public setConfig(config: MediaPlayerVolumeSliderCardFeatureConfig): void { | ||
if (!config) { | ||
throw new Error("Invalid configuration"); | ||
} | ||
this._config = config; | ||
} | ||
|
||
protected render() { | ||
if ( | ||
!this._config || | ||
!this.hass || | ||
!this.stateObj || | ||
!supportsMediaPlayerVolumeSliderCardFeature(this.stateObj) | ||
) { | ||
return nothing; | ||
} | ||
|
||
const position = | ||
this.stateObj.attributes.volume_level != null | ||
? Math.round(this.stateObj.attributes.volume_level * 100) | ||
: undefined; | ||
|
||
return html` | ||
<ha-control-slider | ||
.value=${position} | ||
min="0" | ||
max="100" | ||
.showHandle=${stateActive(this.stateObj)} | ||
.disabled=${!this.stateObj || isUnavailableState(this.stateObj.state)} | ||
@value-changed=${this._valueChanged} | ||
unit="%" | ||
.locale=${this.hass.locale} | ||
></ha-control-slider> | ||
`; | ||
} | ||
|
||
private _valueChanged(ev: CustomEvent) { | ||
ev.stopPropagation(); | ||
const value = ev.detail.value; | ||
|
||
this.hass!.callService("media_player", "volume_set", { | ||
entity_id: this.stateObj!.entity_id, | ||
volume_level: value / 100, | ||
}); | ||
} | ||
|
||
static get styles() { | ||
return cardFeatureStyles; | ||
} | ||
} | ||
|
||
declare global { | ||
interface HTMLElementTagNameMap { | ||
"hui-media-player-volume-slider-card-feature": HuiMediaPlayerVolumeSliderCardFeature; | ||
} | ||
} |
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
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
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
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