Add support for asymmetric paragraph translation

Created on 17 November 2023, over 1 year ago

Problem/Motivation

When you translate a node with asymmetric translated paragraphs ( https://www.drupal.org/project/paragraphs_asymmetric_translation_widgets ), Entity share is only fetching the base language which results in a wrong node.

Steps to reproduce

  1. Create a node in one language (e.g. en), add one paragraph
  2. Translate to another language (e.g. de), remove paragraph, and add different paragraph (to be asymmetric)
  3. Sync translation and it will fetch only the paragraphs of the base language (en)

Proposed resolution

It should correctly sync the paragraphs of that specific translation.

Feature request
Status

Active

Version

3.0

Component

Code

Created by

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

Comments & Activities

  • Issue created by @daou
  • 🇵🇱Poland bartosz.trajder

    Has anyone managed to solve this problem? I would like to use this module in my projects, but unfortunately, this is the only blocker.

    I have tried analyzing the code based on two language versions, EN and PL. I am attaching screenshots from Xdebug and the database, as well as the JSON API response.

    Problem description:

    The content type has a field called field_component (Entity Reference Revisions - Paragraph). This field contains other paragraphs. The paragraphs in field_component have the widget set to "Paragraphs Legacy Asymmetric". As a result, when retrieving content for the PL version (which is a translation), it is empty.

    Code analysis:

    In entity_share/modules/entity_share_client/src/Plugin/EntityShareClient/Processor/EntityReference::importUrl, there is a piece of code responsible for fetching the data. This URL comes from the same class in the processEntity method. In line 145, we can see where the URL is taken from.

    In the attached screenshots, we can see that $entity_json_data contains the correct data, but the URL in $field_data[links][related][href] points to the EN version (from the provided JSON file).

    Moreover, in another screenshot, we can see that resourceVersion points to ID 85. In the database screenshot, revision_id: 54 and field_component_target_revision_id: 85 indicate the EN version instead of the PL version.

    I would be grateful for any suggestions on how to resolve this issue or for a patch! :)

Production build 0.71.5 2024