Fix Block.is_previewable detection on blocks with non-None unset default values

pull/12838/head
Sage Abdullah 2025-01-29 15:21:32 +00:00 zatwierdzone przez Matt Westcott
rodzic b365206d05
commit e4748e45de
5 zmienionych plików z 26 dodań i 2 usunięć

Wyświetl plik

@ -298,6 +298,10 @@ class Block(metaclass=BaseBlock):
return self.normalize(self.meta.preview_value)
return self.get_default()
@cached_property
def _has_default(self):
return getattr(self.meta, "default", None) is not None
@cached_property
def is_previewable(self):
# To prevent showing a broken preview if the block preview has not been
@ -314,7 +318,7 @@ class Block(metaclass=BaseBlock):
)
has_preview_value = (
hasattr(self.meta, "preview_value")
or getattr(self.meta, "default", None) is not None
or self._has_default
or self.__class__.get_preview_context is not Block.get_preview_context
or self.__class__.get_preview_value is not Block.get_preview_value
)

Wyświetl plik

@ -147,7 +147,8 @@ class ListBlock(Block):
else:
self.child_block = child_block
if not hasattr(self.meta, "default"):
self._has_default = hasattr(self.meta, "default")
if not self._has_default:
# Default to a list consisting of one empty (i.e. default-valued) child item
self.meta.default = [self.child_block.get_default()]

Wyświetl plik

@ -460,6 +460,10 @@ class BaseStreamBlock(Block):
return errors
@cached_property
def _has_default(self):
return self.meta.default is not BaseStreamBlock._meta_class.default
class Meta:
# No icon specified here, because that depends on the purpose that the
# block is being used for. Feel encouraged to specify an icon in your

Wyświetl plik

@ -382,6 +382,10 @@ class BaseStructBlock(Block):
"prefix": prefix,
}
@cached_property
def _has_default(self):
return self.meta.default is not BaseStructBlock._meta_class.default
class Meta:
default = {}
form_classname = "struct-block"

Wyświetl plik

@ -93,6 +93,11 @@ class TestBlock(SimpleTestCase):
"specific_template_and_custom_value": [
blocks.Block(preview_template="foo.html", preview_value="bar"),
],
"unset_default_not_none": [
blocks.ListBlock(blocks.Block()),
blocks.StreamBlock(),
blocks.StructBlock(),
],
}
# Test without a global template override
@ -109,6 +114,9 @@ class TestBlock(SimpleTestCase):
# Providing both a preview template and value also makes the block
# previewable, this is the same as providing a custom template only
("specific_template_and_custom_value", True),
# These blocks define their own unset default value that is not
# `None`, and that value should not make it previewable
("unset_default_not_none", False),
]
for variant, is_previewable in cases:
with self.subTest(variant=variant, custom_global_template=False):
@ -134,6 +142,9 @@ class TestBlock(SimpleTestCase):
("custom_value", True),
# Unchanged – providing both also makes the block previewable
("specific_template_and_custom_value", True),
# Unchanged – even after providing a global template override,
# these blocks should not be previewable
("unset_default_not_none", False),
]
for variant, is_previewable in cases:
with self.subTest(variant=variant, custom_global_template=True):