Inconsistent rendering response when unpublished content is present in an entity reference field

Created on 16 February 2024, about 1 year ago

Problem/Motivation

When using the plugin entity_reference_export, if some of the entities referenced in the field are not published, the export is an object rather than an array

Steps to reproduce

Create an entity reference field on a node type, such as to nodes or taxonomy terms.
Create a rest export view where that field is rendered via "Export rendered entity"
Create a node where some of the referenced entities are not published - e.g. using an admin user.
GET that view response. Please use an user that is not allowed to view unpublished content.

Expected result:

...
                        "field_reference": [
                            {
                                "id": 2371,
                                 ...
                            },
                            {
                                "id": 2941,
                                ...
                            }
                        ],

Actual result:

...
                        "field_reference": [
                           "0" {
                                "id": 2371,
                                 ...
                            },
                           "2" {
                                "id": 2941,
                                ...
                            }
                        ],

In this example, the 2nd element of the array - key "1" - is not published and therefore skipped in the rendering.

Proposed resolution

In EntityReferenceExportFormatter.php filter the $items not published and reindex the arrays should work.

🐛 Bug report
Status

Active

Version

3.0

Component

Code

Created by

🇮🇹Italy Giuseppe87

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

Merge Requests

Comments & Activities

Production build 0.71.5 2024