Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translation of models with ParentalManyToManyField #564

Merged
merged 1 commit into from
Oct 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion wagtail_localize/fields.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.db import models
from modelcluster.fields import ParentalKey
from modelcluster.fields import ParentalKey, ParentalManyToManyField
from modelcluster.models import ClusterableModel, get_all_child_relations
from treebeard.mp_tree import MP_Node
from wagtail.fields import RichTextField, StreamField
Expand Down Expand Up @@ -285,6 +285,13 @@ def copy_synchronised_fields(source, target):
else:
source.copy_child_relation(field.name, target)

elif isinstance(field, ParentalManyToManyField):
parental_field = getattr(source, field.name)
if hasattr(parental_field, "all"):
values = parental_field.all()
if values:
setattr(target, field.attname, values)

else:
# For all other fields, just set the attribute
setattr(target, field.attname, getattr(source, field.attname))
53 changes: 53 additions & 0 deletions wagtail_localize/test/migrations/0004_testparentalsnippet.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Generated by Django 3.2.5 on 2022-05-06 18:53

from django.db import migrations, models
import django.db.models.deletion
import modelcluster.fields
import uuid


class Migration(migrations.Migration):

dependencies = [
("wagtail_localize_test", "0003_wagtail_3_use_json_field"),
]

operations = [
migrations.CreateModel(
name="TestParentalSnippet",
fields=[
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
(
"translation_key",
models.UUIDField(default=uuid.uuid4, editable=False),
),
(
"field",
modelcluster.fields.ParentalManyToManyField(
blank=True, to="wagtail_localize_test.TestUUIDModel"
),
),
(
"locale",
models.ForeignKey(
editable=False,
on_delete=django.db.models.deletion.PROTECT,
related_name="+",
to="wagtailcore.locale",
),
),
],
options={
"abstract": False,
"unique_together": {("translation_key", "locale")},
},
),
]
12 changes: 11 additions & 1 deletion wagtail_localize/test/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from django.db import models
from django.utils.translation import gettext_lazy
from modelcluster.fields import ParentalKey
from modelcluster.fields import ParentalKey, ParentalManyToManyField
from modelcluster.models import ClusterableModel
from wagtail import blocks, telepath
from wagtail.admin.panels import (
Expand Down Expand Up @@ -77,6 +77,16 @@ class TestUUIDSnippet(TranslatableMixin, models.Model):
translatable_fields = [SynchronizedField("field")]


@register_snippet
class TestParentalSnippet(TranslatableMixin, ClusterableModel):
field = ParentalManyToManyField(
TestUUIDModel,
blank=True,
)

translatable_fields = [SynchronizedField("field")]


@register_snippet
class NonTranslatableSnippet(models.Model):
field = models.TextField()
Expand Down
17 changes: 17 additions & 0 deletions wagtail_localize/tests/test_translation_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
from wagtail_localize.strings import StringValue
from wagtail_localize.test.models import (
TestPage,
TestParentalSnippet,
TestSnippet,
TestUUIDModel,
TestUUIDSnippet,
Expand Down Expand Up @@ -714,6 +715,22 @@ def test_uuid_snippet_save_target(self):
translated_snippet = snippet.get_translation(self.fr_locale)
self.assertEqual(translated_snippet.field.charfield, "Some Test")

def test_parental_many_to_many(self):
foreign_key_target = TestUUIDModel.objects.create(charfield="Some Test")
snippet = TestParentalSnippet.objects.create()
snippet.field = [foreign_key_target]

source, created = TranslationSource.get_or_create_from_instance(snippet)
translation = Translation.objects.create(
source=source,
target_locale=self.fr_locale,
)

translation.save_target()

translated_snippet = snippet.get_translation(self.fr_locale)
self.assertEqual(list(translated_snippet.field.all()), [foreign_key_target])


@override_settings(WAGTAILLOCALIZE_DISABLE_ON_DELETE=True)
class TestDeleteSourceDisablesTranslation(TestCase):
Expand Down