custom-cards / flex-table-card

Highly Flexible Lovelace Card - arbitrary contents/columns/rows, regex matched, perfect to show appdaemon created content and anything breaking out of the entity_id + attributes concept
GNU General Public License v3.0
198 stars 23 forks source link

Allow sub-object in data selector #86

Open Veejer opened 1 year ago

Veejer commented 1 year ago

Suppose I have an attribute named: my_data. My data is an object that contains another object named: more_data. Inside more_data is a field named: my_field. The problem is that the data selector can only access the top object as in: data: my_field

I can use the modify selector to access the rest of the object as in: modify: x.more_data.my_field.

However this means that I cannot use the fmt selector and would therefore have to add additional code in the modify selector to format the data.

So, I propose that the data selector be able to use dotted notation to access the correct field. For example: data: my_data.more_data.my_field

This allows me to use the fmt option if I choose or I can continue to use the modify option to format the x value. The modification I propose should be flexible enough to allow any number of sub-levels. This modification should only apply to attributes and not to any other entity key.

jata1 commented 12 months ago

Just checking in to see if this feature has been merged and released. The documentation seems to suggest it has but I can't get it to work. Using modify: x.blar instead but keen to change to this once released.

ildar170975 commented 12 months ago

Have you tried smth like this?

      - name: long_state -> subattr
        data: long_state
        modify: >-
          x.subattr
jata1 commented 12 months ago

Thanks. Yes that is what I currently do and it works fine but thought this solution was better and I would like to avoid using modify: x.subattr

jata1 commented 12 months ago

In the docs (data column examples), this is included "When accessing attributes, sometimes an attribute object will itself contain objects. In that case, you can access the lower object using dotted notation. eg: object1.object2.field1"

ildar170975 commented 12 months ago

Hmmm, strange, I think I never used this (at least do not remember). This does not work: image

jata1 commented 12 months ago

Yep. I found the same. I think this will be a great addition if/when it gets implemented/released.

I have an entity for connected devices on my LAN that uses nested objects/attributes. So it would literally require - object1.object2.field1

It is working fine using modify so I was just interested to see if I could get it working...

Thanks for helping/discussing this with me :-)

jata1 commented 12 months ago

one more question. See below for attributes for an entity. For the 'actions' attribute, I want to return the 'data' value. How would I do this?

I have tried the following...

image

image

`weekdays:

jata1 commented 12 months ago

Please ignore last post - got it working.

image

ildar170975 commented 12 months ago

@jata1 Here is a thread for this card, some solutions provided: https://community.home-assistant.io/t/flex-table-card/461173

daringer commented 10 months ago

mmmh, for me the following works e.g. for weather:

type: custom:flex-table-card
title: Test-case nested attributes
entities:
  include: weather.*
columns:
  - data: name
  - data: forecast.0.condition

the 0 makes somehow sense, as forcast contains multiple items (objects) with condition ... that's kind of very explicit - not optimal ...

ildar170975 commented 10 months ago

@daringer Assume some attribute is a list (like in the weather entity): image Noticed this works:

          - name: value_1
            data: list_attribute.1.value_1

and it creates ONE row for a particular array's element (as it is expected): image But I cannot extract data from all array's elements like:

          - name: value_1
            data: list_attribute.value_1

image Have to use modify then:

  - name: value_1
    data: list_attribute
    modify: x.value_1

image P.S. As for me, I am rather satisfied with the current behaviour.