UI Dashboards - thlucas1/homeassistantcomponent_spotifyplus GitHub Wiki

The following dashboards are useful to me in my environment, so I thought I would post them here in case anyone else finds them useful.

Index

Mini Media Player

Configuration using the Mini Media Player custom card by kalkih.

Check out the Using the Card page section for details on how to modify the look and feel of the player UI.

How it Looks

Requirements

The following are required in order to use this dashboard:

Lovelace UI Card Definition

Add the following YAML to a dashboard of your choice.

You will need to make the following changes to the yaml:

  • change media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID to your SpotifyPlus player entity_id (e.g. media_player.spotifyplus_username)
type: entities
title: Mini Media Player - SpotifyPlus
entities:
  - type: custom:mini-media-player
    entity: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID
    artwork: full-cover
    artwork_border: true
    power_color: true
    show_source: true
    group: false
    source: full
    info: long
    hide:
      power: true
      repeat: false
      runtime: false
      shuffle: false
      source: false
      volume: false

Add Track To Favorites

Configuration using the Mini Media Player custom card (by kalkih) that defines shortcut buttons to add / remove the currently playing track to your Spotify user favorite tracks list.

This only works for track and episode items being played.

Note that there is no feedback that the track was added to the favorites; however, a popup message is displayed if an error occurs while calling the underlying service.

Check out the Using the Card page section for details on how to modify the look and feel of the player UI.

How it Looks

Requirements

The following are required in order to use this dashboard:

Lovelace UI Card Definition

Add the following YAML to a dashboard of your choice.

You will need to make the following changes to the yaml:

  • change media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID to your SpotifyPlus player entity_id (e.g. media_player.spotifyplus_username)
type: entities
title: Mini Media Player - SpotifyPlus
entities:
  - type: custom:mini-media-player
    entity: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID
    artwork: full-cover
    artwork_border: true
    power_color: true
    show_source: true
    group: false
    source: full
    info: long
    hide:
      power: true
      repeat: false
      runtime: false
      shuffle: false
      source: false
      volume: false
    shortcuts:
      columns: 2
      buttons:
        - name: Add Favorite
          type: service
          id: spotifyplus.save_track_favorites
          data:
            entity_id: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID
        - name: Remove Favorite
          type: service
          id: spotifyplus.remove_track_favorites
          data:
            entity_id: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID

Add Track To Playlist

Configuration using the Mini Media Player custom card (by kalkih) that defines a shortcut button to add the currently playing track to a specified Spotify playlist.

Note that there is no feedback that the track was added to the playlist; however, a popup message is displayed if an error occurs while calling the underlying service.

Check out the Using the Card page section for details on how to modify the look and feel of the player UI.

How it Looks

Requirements

The following are required in order to use this dashboard:

Lovelace UI Card Definition

Add the following YAML to a dashboard of your choice.

You will need to make the following changes to the yaml:

  • change media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID to your SpotifyPlus player entity_id (e.g. media_player.spotifyplus_username)
  • change SPOTIFY_PLAYLIST_ID to your Spotify playlist id. Note that this is an ID value (e.g. 4yptcTKnXjCu3V92tVVafS) and not a URI value (e.g. spotify:playlist:4yptcTKnXjCu3V92tVVafS).
type: entities
title: Mini Media Player - SpotifyPlus
entities:
  - type: custom:mini-media-player
    entity: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID
    artwork: full-cover
    artwork_border: true
    power_color: true
    show_source: true
    group: false
    source: full
    info: long
    hide:
      power: true
      repeat: false
      runtime: false
      shuffle: false
      source: false
      volume: false
    shortcuts:
      columns: 1
      buttons:
        - name: Add Playing Track to Playlist
          type: service
          id: spotifyplus.playlist_items_add
          data:
            entity_id: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID
            playlist_id: SPOTIFY_PLAYLIST_ID

Browse Media Library

Configuration using the Mini Media Player custom card (by kalkih) that defines shortcut buttons to display the Media Library Browser for a specified media player that support media browsing. In this example, five buttons are defined that take you directly to the specified Spotify content: Playlists, Followed Artists, Favorite Albums, Favorite Tracks, and the root Spotify media Library node.

Check out the Using the Card page section for details on how to modify the look and feel of the player UI.

How it Looks

Requirements

The following are required in order to use this dashboard:

  • Mini Media Player Custom Card is used to display the player UI. Install it via HACS using the Install Instructions.
  • Browser_Mod 2 Custom Card is used to navigate to the media library. Install it via HACS using the Install Instructions.
  • Ensure you have configured your browser(s) in the Browser Mod configuration settings.
  • Ensure you have popups enabled in your browser of choice for the Home Assistant site. Failure to allow popups for the HA site will result in nothing happening when you click a button shortcut.

Lovelace UI Card Definition

Add the following YAML to a dashboard of your choice.

You will need to make the following changes to the yaml:

  • change media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID to your SpotifyPlus player entity_id (e.g. media_player.spotifyplus_username)
  • change http://homeassistant.local:8123 to your Home Assistant UI url prefix (if needed).
type: entities
title: Mini Media Player - SpotifyPlus
entities:
  - type: custom:mini-media-player
    entity: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID
    artwork: full-cover
    artwork_border: true
    power_color: true
    show_source: true
    group: false
    source: full
    info: long
    hide:
      power: true
      repeat: false
      runtime: false
      shuffle: false
      source: false
      volume: false
    shortcuts:
      columns: 4
      buttons:
        - name: Playlists
          type: service
          id: browser_mod.navigate
          data:
            entity_id: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID
            device_id: THIS
            path: >-
              http://homeassistant.local:8123/media-browser/media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID/spotify_user_playlists%2Cspotify_user_playlists
        - name: Artists
          type: service
          id: browser_mod.navigate
          data:
            entity_id: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID
            device_id: THIS
            path: >-
              http://homeassistant.local:8123/media-browser/media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID/spotify_user_followed_artists%2Cspotify_user_followed_artists
        - name: Albums
          type: service
          id: browser_mod.navigate
          data:
            entity_id: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID
            device_id: THIS
            path: >-
              http://homeassistant.local:8123/media-browser/media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID/spotify_user_saved_albums%2Cspotify_user_saved_albums
        - name: Tracks
          type: service
          id: browser_mod.navigate
          data:
            entity_id: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID
            device_id: THIS
            path: >-
              http://homeassistant.local:8123/media-browser/media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID/spotify_user_saved_tracks%2Cspotify_user_saved_tracks
        - name: Browse All Media
          type: service
          id: browser_mod.navigate
          data:
            entity_id: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID
            device_id: THIS
            path: >-
              http://homeassistant.local:8123/media-browser/media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID

Standard Media Player

Configuration using the Standard HA Media Player.

Check out the Configuration Variables section for details on how to modify the look and feel of the player UI.

How it Looks

Requirements

The following are required in order to use this dashboard:

  • Standard HA Media Player is used to display the player UI. Install is not necessary, as it comes pre-installed with HA.

Lovelace UI Card Definition

Add the following YAML to a dashboard of your choice.

You will need to make the following changes to the yaml:

  • change media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID to your SpotifyPlus player entity_id (e.g. media_player.spotifyplus_username)
type: media-control
entity: media_player.YOUR_SPOTIFYPLUS_PLAYER_ENTITY_ID

Playing Track Favorite Status

Displays the Spotify currently playing track favorite status for a given SpotifyPlus media player.

How it Looks

How it Works

A template trigger is defined (via configuration.yaml) that will fire when the integration updates its media_content_id attribute (e.g. a Spotify track uri value). The integration updates this attribute whenever the current track ends, and a new track begins.

The template trigger action calls the integrations' check_track_favorites service to retrieve the favorite status of the currently playing media item. The favorite status and track id are returned as service response data, which gets stored to a variable named service_response.

The template trigger sensor step updates the sensor.spotifyplus_playing_favorite_track template sensor state to the current datetime value. It also sets the following attributes with favorite details:

  • is_favorite contains True if the playing track is a favorite; otherwise, False.
  • favorite_id contains the Spotify ID of the track (e.g. 4eoYKv2kDwJS7gRGh5q6SK).

The template sensor can then be referenced in Lovelace UI cards that support templates.

Requirements

The following are required in order to use this dashboard:

  • configuration.yaml trigger definitions (see below).

configuration.yaml Changes

The following must be added to your configuration.yaml (or equivalent template definitions file). It is a trigger that detects when the track media_content_id changes on the media player, and updates a template sensor with favorite details.

You will need to make the following changes to the yaml:

  • change media_player.YOUR_SPOTIFYPLUS_ENTITY_ID to your SpotifyPlus media player entity_id (e.g. media_player.spotifyplus_username)
# SpotifyPlus Queue Info Update Template Sensor.
# Triggered when the 'media_content_id' state changes (or when HA starts).
# IMPORTANT - Always set the sensor name and unique_id to match
template:
  - trigger:
      - platform: state
        entity_id:
          - media_player.YOUR_SPOTIFYPLUS_ENTITY_ID
        attribute: media_content_id
    action:
      - service: system_log.write
        data:
          level: info
          logger: my_templates_automation
          message: "Automation triggered: SpotifyPlus playing_is_favorite_track Update Trigger"
      - service: spotifyplus.check_track_favorites
        data:
          entity_id: media_player.YOUR_SPOTIFYPLUS_ENTITY_ID
        response_variable: service_response
    sensor:
      - name: spotifyplus_playing_favorite_track
        unique_id: spotifyplus_playing_favorite_track
        state: "{{ now().strftime('%Y-%m-%d %H:%M:%S') }}"
        attributes:
          is_favorite: >
            {{ service_response['result'].values()|first }}
          favorite_id: >
            {{ service_response['result'].keys()|first }}

Lovelace UI Card Definition

Add the following YAML to a dashboard of your choice.

This will build a simple favorite status display of the currently playing track.

You will need to make the following changes to the yaml:

  • change media_player.YOUR_SPOTIFYPLUS_ENTITY_ID to your SpotifyPlus media player entity_id (e.g. media_player.spotifyplus_username)
type: markdown
content: |-
  # Track Favorite Status
  Last refreshed on: {{ states('sensor.spotifyplus_playing_favorite_track') }}
  Is Favorite? {{ state_attr('sensor.spotifyplus_playing_favorite_track','is_favorite') }}
  Track ID: {{ state_attr('sensor.spotifyplus_playing_favorite_track', 'favorite_id') }}

Queue Info List Dashboard

Displays the Spotify Queue Info list for a given SpotifyPlus media player.

This will allow you to select a queue item for play on the media player by tapping on a track image.

How it Looks

How it Works

A template trigger is defined (via configuration.yaml) that will fire when the integration updates its media_content_id attribute (e.g. a Spotify track uri value). The integration updates this attribute whenever the current track ends, and a new track begins.

The template trigger action calls the integrations' get_player_queue_info service to retrieve the current list of Spotify queue entries. The queue list is returned as service response data, which gets stored to a variable named service_response.

The template trigger sensor step updates the sensor.spotifyplus_queue_info template sensor state to the current datetime value. It also sets the tracks attribute with a summarized list of queue info track data: name, uri, image_url, and artist.

The template sensor can then be referenced in Lovelace UI cards that support templates.

Requirements

The following are required in order to use this dashboard:

  • configuration.yaml trigger definitions (see below).
  • input_boolean.always_enabled_helper must be defined as an 'always on' toggle switch. This is defined in the HA Configuration Helpers page as a toggle switch named always_enabled_helper. Once it is defined set it to On and leave it on.

Limitations

The returned list of items will be truncated if the size of the list exceeds 16k in length. This should not be a problem, unless you start adding more track fields to the data that is stored for each track. This is due to the fact that the HA trigger sensor can only store a maximum of 16k of data in the HA state database entry.

configuration.yaml Changes

The following must be added to your configuration.yaml (or equivalent template definitions file). It is a trigger that detects when the track media_content_id changes on the media player, and updates a template sensor with the current queue info.

You will need to make the following changes to the yaml:

  • change media_player.YOUR_SPOTIFYPLUS_ENTITY_ID to your SpotifyPlus media player entity_id (e.g. media_player.spotifyplus_username)
# SpotifyPlus Queue Info Update Template Sensor.
# Triggered when the 'media_content_id' state changes (or when HA starts).
# IMPORTANT - Always set the sensor name and unique_id to match
template:
  - trigger:
      - platform: state
        entity_id:
          - media_player.YOUR_SPOTIFYPLUS_ENTITY_ID 
        attribute: media_content_id
      - platform: homeassistant
        event: start
    action:
      - service: system_log.write
        data:
          level: info
          logger: my_templates_automation
          message: "Automation triggered: SpotifyPlus Queue Info Update Trigger"
      - service: spotifyplus.get_player_queue_info
        data:
          entity_id: media_player.YOUR_SPOTIFYPLUS_ENTITY_ID
        response_variable: service_response
    sensor:
      - name: spotifyplus_queue_info
        unique_id: spotifyplus_queue_info
        state: "{{ now().strftime('%Y-%m-%d %H:%M:%S') }}"
        attributes:
          tracks: >
            {% set ns = namespace(tracks=[]) %}
            {%- for item in service_response['result']['queue'] -%}
              {%- set trackName = item['name'] | default('') -%}
              {%- set trackImageUrl = item['image_url'] | default('') -%}
              {%- set trackUri = item['uri'] | default('') -%}
              {%- set trackArtist = item['artists'][0]['name'] | default('') -%}
              {%- set track = {'name': trackName, 'uri': trackUri, 'image_url': trackImageUrl, 'artist': trackArtist} -%}
              {%- set ns.tracks = ns.tracks + [track]  -%}
            {%- endfor -%}
            {{ ns.tracks|to_json(sort_keys=True,ensure_ascii=True,pretty_print=True) }}

Lovelace UI Card Definition

Add the following YAML to a dashboard of your choice. I chose a View Type of Panel (1 card) for my recently played dashboard, so it covers the entire width of the viewport.

This will dynamically build and format the queue info list into a grid with cover artwork and titles.

You will need to make the following changes to the yaml:

  • change media_player.YOUR_SPOTIFYPLUS_ENTITY_ID to your SpotifyPlus media player entity_id (e.g. media_player.spotifyplus_username)
  • change YOUR_DEVICE_ID to the Spotify Connect device id you want to play the track on (e.g. Office Speaker)
type: vertical-stack
cards:
  - type: markdown
    content: |-
      # SpotifyPlus Queue List
      Tap an item to play the content.
      Last refreshed on: {{ states('sensor.spotifyplus_queue_info') }}
  - type: custom:auto-entities
    card:
      type: grid
      columns: 8
    card_param: cards
    filter:
      template: >-
        {% set serviceResponse = None -%} 

        {%- set itmMediaPlayerEntityId = 'media_player.YOUR_SPOTIFYPLUS_ENTITY_ID' -%}

        {%- set itmDeviceId = 'YOUR_DEVICE_ID' -%}

        {%- if has_value('sensor.spotifyplus_queue_info') -%}

        {%-   set serviceResponse =
        state_attr('sensor.spotifyplus_queue_info','tracks') -%}

        {%- endif -%}

        {%- if serviceResponse != None -%}
          {%- for track in serviceResponse -%}
          
            {%- set trackImageUrl = track['image_url'] | default('/local/images/soundtouchplus_no_image.png') -%}
            {%- set trackName = track['name'] | default('unknown') -%}
            {%- set trackUri = track['uri'] | default('') -%}
            {{
              {
        'type': 'picture-entity',
        'entity': 'input_boolean.always_enabled_helper',
        'image': trackImageUrl,
        'show_state': false,
        'show_name': true,
        'name': trackName, 
        'tap_action': {
          'action': 'perform-action',
          'perform_action': 'spotifyplus.player_media_play_tracks',
          'data': {
            'entity_id': itmMediaPlayerEntityId,
            'uris': trackUri,
            'device_id': itmDeviceId
            }
          }
              }
            }},
          {%- endfor -%}
        {%- endif -%}