- Issue created by @roderik
- Merge request !114Change default CE field formatter for single-value file/image fields → (Open) created by roderik
- 🇳🇱Netherlands roderik Amsterdam,NL / Budapest,HU
Only adding for completeness: if we remove FileReferenceFieldItemListProcessor altogether (which is responsible for producing the Drupal-HTML output), and let it fall through to the DefaultFieldItemListProcessor, the output becomes:
"featuredImage": { "element": "field-image", "mediaImageTargetId": "3", "mediaImageAlt": "The Drupal logo", "mediaImageTitle": "", "mediaImageWidth": "1080", "mediaImageHeight": "1080", "content": "3" },
...which is not good: there is no "URL" property (and instead there's an opaque entity ID).
I'm guessing FileReferenceFieldItemListProcessor may not have been used in years (and therefore we haven't really paid attention to this old code yet), because our custom internal distro uses custom processors.
- 🇳🇱Netherlands roderik Amsterdam,NL / Budapest,HU
@fago needs review. If the "Alternative A" output (in the issue summary) is OK for a default, then I will amend this MR to also support multi-value file/image fields.
My first thought would be to add multi-value support to the "Flattened" formatter, so that its output becomes non-flattened for multi-value fields. But I know you've spoken out against that, so I'll instead copy some code into FileCeFieldFormatter to support the two cases, and possibly make it not extend FlattenedCeFieldFormatter anymore.
This still means that FileCeFieldFormatter will output a somewhat different structure for single- vs multi-cardinality fields. (Just like DefaultFieldItemListProcessor does, basically.)
- 🇦🇹Austria fago Vienna
yes, alterantive-A with customized default config is great!
- Let's stop using legacy processors for things like this! They are mostly around for BC, we should adapt the new API for new things!
My first thought would be to add multi-value support to the "Flattened" formatter, so that its output becomes non-flattened for multi-value fields
yeah, I see no point in configuring a "flattened" formatter when the data is multiple. We cannot flatten it then.
That said, the configured default behaviour for multiple image/media fields should mimic the one for single ones, but instead of a single, flattend JS object it should give us an array of similar objects. Can we configure that? Then we should simply have default-config generated based upon the field cardinality and use flattening only for single-value fields.
. But I know you've spoken out against that, so I'll instead copy some code into FileCeFieldFormatter to support the two cases, and possibly make it not extend FlattenedCeFieldFormatter anymore.
hm, the "flattening" issue seems generic, thus we should better avoid building it into FileCeFieldFormatter - this would mean we would have to build it into many plugins in the end imo. Can we solve it by generating suiting config as suggested above instead?