Does the module support multiple value reference fields?

Created on 23 August 2024, 8 months ago

Hi!
Does the module support multiple value reference fields?
I'm trying to create the filter for the multiple value taxonomy reference field. I've a views page on Order Items. Have added relations to the product variation and product. The product entity contains taxonomy reference field which can have multiple values. I've added the field to the view and added the selective filter on those field, but the exposed filter is empty. I've also enabled aggregation in the views settings and aggregated the terms by Entity ID to not have duplicated rows for the same order item.

I've found that the $key is NULL in:

if (!is_scalar($key)) {
          $alias = $field->aliases[$field->realField] ?? $field->field_alias;
          $key = $row->{$alias} ?? NULL;
        }

Is it possible to make it work? and have separate options for each value for the field found in the view's results?

Thanks in advance!

πŸ’¬ Support request
Status

Active

Version

2.0

Component

User interface

Created by

πŸ‡ΊπŸ‡¦Ukraine khiminrm

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @khiminrm
  • πŸ‡ΊπŸ‡¦Ukraine khiminrm

    I've partially fixed it with a draft quick patch. The filter contains values now - separate terms as options. But for some reason $view_copy->result contains only one first row, so I don't have values from the second row in the results of the view.

  • πŸ‡ΊπŸ‡¦Ukraine khiminrm

    weird, when I add sorting by product variation SKU - I have expected two rows in results of the $view_copy for the filter. Without sorting - 1 row. But in original views results I always get 2 results regardless there is or not sorting.

  • πŸ‡ΊπŸ‡¦Ukraine khiminrm

    another one noticed bug. with added selective filters the bulk operations checkboxes have disappeared from the view :((

  • πŸ‡ΊπŸ‡¦Ukraine khiminrm

    I've noticed some other bugs e.g. not empty value when twig debug is enabled (so I've moved striping tags earlier and added removing new lines in a value), also noticed errors when $key is not numeric but Entity Storage is selected and I think we need to improve logic when we need to build empty value
    $value = $this->t('Empty (@key)', ['@key' => empty($$sub_key) ? json_encode($sub_key) : $sub_key]);

  • πŸ‡ΊπŸ‡¦Ukraine khiminrm

    Removed some lines from the patch which are related to another issue.

  • πŸ‡ΊπŸ‡¦Ukraine khiminrm

    Fixed option labels.

  • πŸ‡ΊπŸ‡¦Ukraine khiminrm

    After testing and debugging other cases, I've reverted almost all changes and just improved one condition as $field->getValue($row); can return FALSE when value of a field is empty. In Drupal\views\Plugin\views\field::getValue():

        if ($field_item_definition->getFieldStorageDefinition()->getCardinality() == 1) {
          return reset($values);
        }
    

    And added one more

            if (is_null($key)) {
              continue;
            }
    

    just in case the code inif (!is_scalar($key) || $key === FALSE) { returns NULL for the $key.

  • πŸ‡ΊπŸ‡¦Ukraine khiminrm

    Added small fix to remove new lines from the value.

  • Status changed to Needs review 9 days ago
  • πŸ‡ΊπŸ‡ΈUnited States joshmiller Indianapolis, Indiana, USA

    I appreciate the work here, and I'm contributing additional feature. I also found selective filter wasn't working with entity reference fields when using aggregation. When I use aggregation, the keys we have in the same place here are an array of keys. So I've tried to be the least intrusive and least duplicative as possible. I've kept the work in the original patch, but also included support for arrays of keys when aggregation is turned on and entity reference fields are aggregating with entity ID instead of target ID.

Production build 0.71.5 2024