diff --git a/etna/blog/migrations/0006_alter_blogpostpage_body.py b/etna/blog/migrations/0006_alter_blogpostpage_body.py new file mode 100644 index 000000000..12479ac7d --- /dev/null +++ b/etna/blog/migrations/0006_alter_blogpostpage_body.py @@ -0,0 +1,365 @@ +# Generated by Django 5.1.2 on 2024-12-10 17:46 +# etna:allowAlterField + +import django.core.validators +import wagtail.fields +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("blog", "0005_alter_blogpostpage_body"), + ] + + operations = [ + migrations.AlterField( + model_name="blogpostpage", + name="body", + field=wagtail.fields.StreamField( + [ + ("call_to_action", 6), + ("contact", 12), + ("document", 16), + ("featured_external_link", 21), + ("featured_page", 24), + ("image", 28), + ("image_gallery", 30), + ("inset_text", 32), + ("media", 36), + ("paragraph", 32), + ("quote", 39), + ("table", 41), + ("youtube_video", 47), + ("content_section", 52), + ], + block_lookup={ + 0: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + { + "features": ["bold", "italic", "link", "ol", "ul"], + "max_length": 100, + }, + ), + 1: ("wagtail.blocks.CharBlock", (), {}), + 2: ( + "etna.core.blocks.page_chooser.APIPageChooserBlock", + (), + {"required": False}, + ), + 3: ("wagtail.blocks.URLBlock", (), {"required": False}), + 4: ( + "wagtail.blocks.BooleanBlock", + (), + { + "help_text": "Use the accented button style", + "label": "Accented", + "required": False, + }, + ), + 5: ( + "wagtail.blocks.StructBlock", + [ + [ + ("label", 1), + ("link", 2), + ("external_link", 3), + ("accented", 4), + ] + ], + {}, + ), + 6: ( + "wagtail.blocks.StructBlock", + [[("body", 0), ("button", 5)]], + {}, + ), + 7: ( + "wagtail.blocks.TextBlock", + (), + {"features": ["bold", "italic", "link"], "required": False}, + ), + 8: ("wagtail.blocks.CharBlock", (), {"required": False}), + 9: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + {"required": False}, + ), + 10: ("wagtail.blocks.EmailBlock", (), {"required": False}), + 11: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + {"features": ["bold", "italic", "link"], "required": False}, + ), + 12: ( + "wagtail.blocks.StructBlock", + [ + [ + ("title", 1), + ("address", 7), + ("telephone", 8), + ("chat_link", 3), + ("chat_note", 9), + ("email", 10), + ("website_link", 3), + ("social_media", 11), + ] + ], + {}, + ), + 13: ( + "wagtail.documents.blocks.DocumentChooserBlock", + (), + {"required": True}, + ), + 14: ("wagtail.blocks.StructBlock", [[("file", 13)]], {}), + 15: ("wagtail.blocks.ListBlock", (14,), {}), + 16: ("wagtail.blocks.StructBlock", [[("documents", 15)]], {}), + 17: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "max_length": 100}, + ), + 18: ("wagtail.blocks.CharBlock", (), {"label": "Description"}), + 19: ("wagtail.blocks.URLBlock", (), {"label": "URL"}), + 20: ( + "etna.core.blocks.image.APIImageChooserBlock", + (), + {"label": "Image", "required": False}, + ), + 21: ( + "wagtail.blocks.StructBlock", + [ + [ + ("title", 17), + ("description", 18), + ("url", 19), + ("image", 20), + ] + ], + {}, + ), + 22: ( + "etna.core.blocks.page_chooser.APIPageChooserBlock", + (), + { + "label": "Page", + "page_type": ["wagtailcore.Page"], + "required": True, + }, + ), + 23: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Optional override for the teaser text", + "label": "Teaser text override", + "required": False, + }, + ), + 24: ( + "wagtail.blocks.StructBlock", + [[("page", 22), ("teaser_text", 23)]], + {}, + ), + 25: ( + "etna.core.blocks.image.APIImageChooserBlock", + (), + {"rendition_size": "max-900x900", "required": True}, + ), + 26: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": 'Alternative (alt) text describes images when they fail to load, and is read aloud by assistive technologies. Use a maximum of 100 characters to describe your image. Check the guidance for tips on writing alt text.', + "label": "Alternative text", + "max_length": 100, + }, + ), + 27: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + { + "features": ["bold", "italic", "link"], + "help_text": "If provided, displays directly below the image. Can be used to specify sources, transcripts or other useful metadata.", + "label": "Caption (optional)", + "required": False, + }, + ), + 28: ( + "wagtail.blocks.StructBlock", + [[("image", 25), ("alt_text", 26), ("caption", 27)]], + {}, + ), + 29: ("wagtail.blocks.ListBlock", (28,), {}), + 30: ( + "wagtail.blocks.StructBlock", + [[("title", 8), ("description", 11), ("images", 29)]], + {}, + ), + 31: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + {"features": ["bold", "italic", "link", "ol", "ul"]}, + ), + 32: ("wagtail.blocks.StructBlock", [[("text", 31)]], {}), + 33: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "A descriptive title for the media block", + "required": True, + }, + ), + 34: ( + "etna.core.blocks.image.APIImageChooserBlock", + (), + { + "help_text": "A thumbnail image for the media block", + "required": False, + }, + ), + 35: ("etna.media.blocks.MediaChooserBlock", (), {}), + 36: ( + "wagtail.blocks.StructBlock", + [[("title", 33), ("thumbnail", 34), ("media", 35)]], + {}, + ), + 37: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + {"features": ["bold", "italic", "link"], "required": True}, + ), + 38: ( + "wagtail.blocks.CharBlock", + (), + {"max_length": 100, "required": False}, + ), + 39: ( + "wagtail.blocks.StructBlock", + [[("quote", 37), ("attribution", 38)]], + {}, + ), + 40: ( + "wagtail.contrib.table_block.blocks.TableBlock", + (), + { + "table_options": { + "contextMenu": [ + "row_above", + "row_below", + "---------", + "col_left", + "col_right", + "---------", + "remove_row", + "remove_col", + "---------", + "undo", + "redo", + "---------", + "alignment", + ] + } + }, + ), + 41: ("wagtail.blocks.StructBlock", [[("table", 40)]], {}), + 42: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "max_length": 100, "required": True}, + ), + 43: ( + "wagtail.blocks.CharBlock", + (), + { + "label": "YouTube Video ID", + "max_length": 11, + "required": True, + "validators": [ + django.core.validators.RegexValidator( + message="Invalid YouTube Video ID", + regex="^[a-zA-Z0-9_-]{11}$", + ) + ], + }, + ), + 44: ( + "etna.core.blocks.image.APIImageChooserBlock", + (), + { + "label": "Preview Image", + "rendition_size": "fill-640x360", + "required": True, + }, + ), + 45: ( + "wagtail.blocks.RichTextBlock", + (), + {"label": "Transcript", "required": False}, + ), + 46: ( + "wagtail.blocks.BooleanBlock", + (), + { + "help_text": "Tick if the video has captions on YouTube", + "label": "Captions available", + "required": False, + }, + ), + 47: ( + "wagtail.blocks.StructBlock", + [ + [ + ("title", 42), + ("video_id", 43), + ("preview_image", 44), + ("transcript", 45), + ("captions_available", 46), + ] + ], + {}, + ), + 48: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Heading", "max_length": 100}, + ), + 49: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Sub-heading", "max_length": 100}, + ), + 50: ("wagtail.blocks.StructBlock", [[("heading", 49)]], {}), + 51: ( + "wagtail.blocks.StreamBlock", + [ + [ + ("call_to_action", 6), + ("contact", 12), + ("document", 16), + ("featured_external_link", 21), + ("featured_page", 24), + ("image", 28), + ("image_gallery", 30), + ("inset_text", 32), + ("media", 36), + ("paragraph", 32), + ("quote", 39), + ("sub_heading", 50), + ("table", 41), + ("youtube_video", 47), + ] + ], + {"required": False}, + ), + 52: ( + "wagtail.blocks.StructBlock", + [[("heading", 48), ("content", 51)]], + {}, + ), + }, + ), + ), + ] diff --git a/etna/core/blocks/video.py b/etna/core/blocks/video.py index a58258faa..ab39c3b0a 100644 --- a/etna/core/blocks/video.py +++ b/etna/core/blocks/video.py @@ -20,7 +20,7 @@ class YouTubeBlock(blocks.StructBlock): ], ) preview_image = APIImageChooserBlock( - rendition_size="max-640x360", required=False, label="Preview Image" + rendition_size="fill-640x360", required=True, label="Preview Image" ) transcript = blocks.RichTextBlock(required=False, label="Transcript") captions_available = blocks.BooleanBlock( diff --git a/etna/generic_pages/migrations/0040_alter_generalpage_body.py b/etna/generic_pages/migrations/0040_alter_generalpage_body.py new file mode 100644 index 000000000..db0f7da68 --- /dev/null +++ b/etna/generic_pages/migrations/0040_alter_generalpage_body.py @@ -0,0 +1,586 @@ +# Generated by Django 5.1.2 on 2024-12-10 17:46 +# etna:allowAlterField + +import django.core.validators +import etna.records.blocks +import wagtail.fields +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("generic_pages", "0039_alter_generalpage_body"), + ] + + operations = [ + migrations.AlterField( + model_name="generalpage", + name="body", + field=wagtail.fields.StreamField( + [ + ("accordions", 10), + ("button", 15), + ("call_to_action", 17), + ("contact", 23), + ("description_list", 27), + ("details", 28), + ("document", 6), + ("do_dont_list", 33), + ("featured_external_link", 38), + ("featured_page", 41), + ("featured_record_article", 43), + ("image", 47), + ("image_gallery", 49), + ("inset_text", 51), + ("media", 55), + ("paragraph", 51), + ("promoted_item", 67), + ("quote", 70), + ("record_links", 72), + ("table", 74), + ("warning_text", 75), + ("youtube_video", 81), + ("content_section", 88), + ], + blank=True, + block_lookup={ + 0: ("wagtail.blocks.CharBlock", (), {"required": True}), + 1: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + { + "features": ["bold", "italic", "link", "ol", "ul"], + "required": True, + }, + ), + 2: ("wagtail.contrib.table_block.blocks.TableBlock", (), {}), + 3: ( + "wagtail.documents.blocks.DocumentChooserBlock", + (), + {"required": True}, + ), + 4: ("wagtail.blocks.StructBlock", [[("file", 3)]], {}), + 5: ("wagtail.blocks.ListBlock", (4,), {}), + 6: ("wagtail.blocks.StructBlock", [[("documents", 5)]], {}), + 7: ( + "wagtail.blocks.StreamBlock", + [[("text", 1), ("table", 2), ("documents", 6)]], + {}, + ), + 8: ( + "wagtail.blocks.StructBlock", + [[("title", 0), ("body", 7)]], + {}, + ), + 9: ("wagtail.blocks.ListBlock", (8,), {}), + 10: ("wagtail.blocks.StructBlock", [[("items", 9)]], {}), + 11: ("wagtail.blocks.CharBlock", (), {}), + 12: ( + "etna.core.blocks.page_chooser.APIPageChooserBlock", + (), + {"required": False}, + ), + 13: ("wagtail.blocks.URLBlock", (), {"required": False}), + 14: ( + "wagtail.blocks.BooleanBlock", + (), + { + "help_text": "Use the accented button style", + "label": "Accented", + "required": False, + }, + ), + 15: ( + "wagtail.blocks.StructBlock", + [ + [ + ("label", 11), + ("link", 12), + ("external_link", 13), + ("accented", 14), + ] + ], + {}, + ), + 16: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + { + "features": ["bold", "italic", "link", "ol", "ul"], + "max_length": 100, + }, + ), + 17: ( + "wagtail.blocks.StructBlock", + [[("body", 16), ("button", 15)]], + {}, + ), + 18: ( + "wagtail.blocks.TextBlock", + (), + {"features": ["bold", "italic", "link"], "required": False}, + ), + 19: ("wagtail.blocks.CharBlock", (), {"required": False}), + 20: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + {"required": False}, + ), + 21: ("wagtail.blocks.EmailBlock", (), {"required": False}), + 22: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + {"features": ["bold", "italic", "link"], "required": False}, + ), + 23: ( + "wagtail.blocks.StructBlock", + [ + [ + ("title", 11), + ("address", 18), + ("telephone", 19), + ("chat_link", 13), + ("chat_note", 20), + ("email", 21), + ("website_link", 13), + ("social_media", 22), + ] + ], + {}, + ), + 24: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + {"features": ["bold", "italic", "link"]}, + ), + 25: ( + "wagtail.blocks.StructBlock", + [[("term", 0), ("detail", 24)]], + {}, + ), + 26: ("wagtail.blocks.ListBlock", (25,), {}), + 27: ("wagtail.blocks.StructBlock", [[("items", 26)]], {}), + 28: ( + "wagtail.blocks.StructBlock", + [[("title", 0), ("body", 1)]], + {}, + ), + 29: ( + "wagtail.blocks.StructBlock", + [[("text", 24)]], + {"icon": "check", "label": "Do item"}, + ), + 30: ("wagtail.blocks.ListBlock", (29,), {"label": "Dos"}), + 31: ( + "wagtail.blocks.StructBlock", + [[("text", 24)]], + {"icon": "cross", "label": "Don't item"}, + ), + 32: ("wagtail.blocks.ListBlock", (31,), {"label": "Don'ts"}), + 33: ( + "wagtail.blocks.StructBlock", + [[("do", 30), ("dont", 32)]], + {}, + ), + 34: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "max_length": 100}, + ), + 35: ("wagtail.blocks.CharBlock", (), {"label": "Description"}), + 36: ("wagtail.blocks.URLBlock", (), {"label": "URL"}), + 37: ( + "etna.core.blocks.image.APIImageChooserBlock", + (), + {"label": "Image", "required": False}, + ), + 38: ( + "wagtail.blocks.StructBlock", + [ + [ + ("title", 34), + ("description", 35), + ("url", 36), + ("image", 37), + ] + ], + {}, + ), + 39: ( + "etna.core.blocks.page_chooser.APIPageChooserBlock", + (), + { + "label": "Page", + "page_type": ["wagtailcore.Page"], + "required": True, + }, + ), + 40: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Optional override for the teaser text", + "label": "Teaser text override", + "required": False, + }, + ), + 41: ( + "wagtail.blocks.StructBlock", + [[("page", 39), ("teaser_text", 40)]], + {}, + ), + 42: ( + "etna.core.blocks.page_chooser.APIPageChooserBlock", + (), + { + "label": "Page", + "page_type": ["articles.RecordArticlePage"], + "required_api_fields": ["teaser_image"], + }, + ), + 43: ("wagtail.blocks.StructBlock", [[("page", 42)]], {}), + 44: ( + "etna.core.blocks.image.APIImageChooserBlock", + (), + {"rendition_size": "max-900x900", "required": True}, + ), + 45: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": 'Alternative (alt) text describes images when they fail to load, and is read aloud by assistive technologies. Use a maximum of 100 characters to describe your image. Check the guidance for tips on writing alt text.', + "label": "Alternative text", + "max_length": 100, + }, + ), + 46: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + { + "features": ["bold", "italic", "link"], + "help_text": "If provided, displays directly below the image. Can be used to specify sources, transcripts or other useful metadata.", + "label": "Caption (optional)", + "required": False, + }, + ), + 47: ( + "wagtail.blocks.StructBlock", + [[("image", 44), ("alt_text", 45), ("caption", 46)]], + {}, + ), + 48: ("wagtail.blocks.ListBlock", (47,), {}), + 49: ( + "wagtail.blocks.StructBlock", + [[("title", 19), ("description", 22), ("images", 48)]], + {}, + ), + 50: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + {"features": ["bold", "italic", "link", "ol", "ul"]}, + ), + 51: ("wagtail.blocks.StructBlock", [[("text", 50)]], {}), + 52: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "A descriptive title for the media block", + "required": True, + }, + ), + 53: ( + "etna.core.blocks.image.APIImageChooserBlock", + (), + { + "help_text": "A thumbnail image for the media block", + "required": False, + }, + ), + 54: ("etna.media.blocks.MediaChooserBlock", (), {}), + 55: ( + "wagtail.blocks.StructBlock", + [[("title", 52), ("thumbnail", 53), ("media", 54)]], + {}, + ), + 56: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Title of the promoted page", + "label": "Title", + "max_length": 100, + }, + ), + 57: ( + "wagtail.blocks.ChoiceBlock", + [], + { + "choices": [ + ("blog", "Blog post"), + ("podcast", "Podcast"), + ("video", "Video"), + ("video-external", "External video"), + ("external-link", "External link"), + ], + "label": "Category", + }, + ), + 58: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "This is a free text field. Please enter date as per agreed format: 14 April 2021", + "required": False, + }, + ), + 59: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "Podcast or video duration.", + "label": "Duration", + "max_length": 50, + "required": False, + }, + ), + 60: ( + "wagtail.blocks.URLBlock", + (), + { + "help_text": "URL for the external page", + "label": "External URL", + }, + ), + 61: ( + "wagtail.blocks.BooleanBlock", + (), + { + "label": "Should this URL open in a new tab?

Tick the box if 'yes'

", + "required": False, + }, + ), + 62: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "The text displayed on the button for your URL. If your URL links to an external site, please add the name of the site users will land on, and what they will find on this page. For example 'Watch our short film about Shakespeare on YouTube'.", + "label": "Call to action label", + "max_length": 50, + }, + ), + 63: ( + "wagtail.blocks.BooleanBlock", + (), + { + "default": False, + "help_text": 'Decorative images are used for visual effect and do not add information to the content of a page. "Check the guidance to see if your image is decorative.', + "label": "Is this image decorative?

Tick the box if 'yes'

", + "required": False, + }, + ), + 64: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": 'Alternative (alt) text describes images when they fail to load, and is read aloud by assistive technologies. Use a maximum of 100 characters to describe your image. Decorative images do not require alt text. Check the guidance for tips on writing alt text.', + "label": "Image alternative text", + "max_length": 100, + "required": False, + }, + ), + 65: ( + "wagtail.blocks.StructBlock", + [[("image", 44), ("decorative", 63), ("alt_text", 64)]], + { + "label": "Teaser image", + "template": "articles/blocks/images/blog-embed__image-container.html", + }, + ), + 66: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + { + "features": ["bold", "italic", "link"], + "help_text": "A description of the promoted page", + }, + ), + 67: ( + "wagtail.blocks.StructBlock", + [ + [ + ("title", 56), + ("category", 57), + ("publication_date", 58), + ("author", 19), + ("duration", 59), + ("url", 60), + ("target_blank", 61), + ("cta_label", 62), + ("image", 65), + ("description", 66), + ] + ], + {}, + ), + 68: ( + "etna.core.blocks.paragraph.APIRichTextBlock", + (), + {"features": ["bold", "italic", "link"], "required": True}, + ), + 69: ( + "wagtail.blocks.CharBlock", + (), + {"max_length": 100, "required": False}, + ), + 70: ( + "wagtail.blocks.StructBlock", + [[("quote", 68), ("attribution", 69)]], + {}, + ), + 71: ( + "wagtail.blocks.ListBlock", + (etna.records.blocks.RecordLinkBlock,), + {"label": "Items"}, + ), + 72: ("wagtail.blocks.StructBlock", [[("items", 71)]], {}), + 73: ( + "wagtail.contrib.table_block.blocks.TableBlock", + (), + { + "table_options": { + "contextMenu": [ + "row_above", + "row_below", + "---------", + "col_left", + "col_right", + "---------", + "remove_row", + "remove_col", + "---------", + "undo", + "redo", + "---------", + "alignment", + ] + } + }, + ), + 74: ("wagtail.blocks.StructBlock", [[("table", 73)]], {}), + 75: ("wagtail.blocks.StructBlock", [[("body", 50)]], {}), + 76: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "max_length": 100, "required": True}, + ), + 77: ( + "wagtail.blocks.CharBlock", + (), + { + "label": "YouTube Video ID", + "max_length": 11, + "required": True, + "validators": [ + django.core.validators.RegexValidator( + message="Invalid YouTube Video ID", + regex="^[a-zA-Z0-9_-]{11}$", + ) + ], + }, + ), + 78: ( + "etna.core.blocks.image.APIImageChooserBlock", + (), + { + "label": "Preview Image", + "rendition_size": "fill-640x360", + "required": True, + }, + ), + 79: ( + "wagtail.blocks.RichTextBlock", + (), + {"label": "Transcript", "required": False}, + ), + 80: ( + "wagtail.blocks.BooleanBlock", + (), + { + "help_text": "Tick if the video has captions on YouTube", + "label": "Captions available", + "required": False, + }, + ), + 81: ( + "wagtail.blocks.StructBlock", + [ + [ + ("title", 76), + ("video_id", 77), + ("preview_image", 78), + ("transcript", 79), + ("captions_available", 80), + ] + ], + {}, + ), + 82: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Heading", "max_length": 100}, + ), + 83: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Sub-heading", "max_length": 100}, + ), + 84: ("wagtail.blocks.StructBlock", [[("heading", 83)]], {}), + 85: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Sub-sub-heading", "max_length": 100}, + ), + 86: ("wagtail.blocks.StructBlock", [[("heading", 85)]], {}), + 87: ( + "wagtail.blocks.StreamBlock", + [ + [ + ("accordions", 10), + ("button", 15), + ("call_to_action", 17), + ("contact", 23), + ("description_list", 27), + ("details", 28), + ("document", 6), + ("do_dont_list", 33), + ("featured_external_link", 38), + ("featured_page", 41), + ("featured_record_article", 43), + ("image", 47), + ("image_gallery", 49), + ("inset_text", 51), + ("media", 55), + ("paragraph", 51), + ("promoted_item", 67), + ("quote", 70), + ("record_links", 72), + ("sub_heading", 84), + ("sub_sub_heading", 86), + ("table", 74), + ("warning_text", 75), + ("youtube_video", 81), + ] + ], + {"required": False}, + ), + 88: ( + "wagtail.blocks.StructBlock", + [[("heading", 82), ("content", 87)]], + {}, + ), + }, + null=True, + ), + ), + ] diff --git a/etna/whatson/migrations/0015_alter_exhibitionpage_video.py b/etna/whatson/migrations/0015_alter_exhibitionpage_video.py new file mode 100644 index 000000000..0c31ad9b0 --- /dev/null +++ b/etna/whatson/migrations/0015_alter_exhibitionpage_video.py @@ -0,0 +1,104 @@ +# Generated by Django 5.1.2 on 2024-12-10 17:46 +# etna:allowAlterField + +import django.core.validators +import wagtail.fields +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("whatson", "0014_alter_exhibitionpage_options_and_more"), + ] + + operations = [ + migrations.AlterField( + model_name="exhibitionpage", + name="video", + field=wagtail.fields.StreamField( + [("youtube", 5), ("media", 9)], + blank=True, + block_lookup={ + 0: ( + "wagtail.blocks.CharBlock", + (), + {"label": "Title", "max_length": 100, "required": True}, + ), + 1: ( + "wagtail.blocks.CharBlock", + (), + { + "label": "YouTube Video ID", + "max_length": 11, + "required": True, + "validators": [ + django.core.validators.RegexValidator( + message="Invalid YouTube Video ID", + regex="^[a-zA-Z0-9_-]{11}$", + ) + ], + }, + ), + 2: ( + "etna.core.blocks.image.APIImageChooserBlock", + (), + { + "label": "Preview Image", + "rendition_size": "fill-640x360", + "required": True, + }, + ), + 3: ( + "wagtail.blocks.RichTextBlock", + (), + {"label": "Transcript", "required": False}, + ), + 4: ( + "wagtail.blocks.BooleanBlock", + (), + { + "help_text": "Tick if the video has captions on YouTube", + "label": "Captions available", + "required": False, + }, + ), + 5: ( + "wagtail.blocks.StructBlock", + [ + [ + ("title", 0), + ("video_id", 1), + ("preview_image", 2), + ("transcript", 3), + ("captions_available", 4), + ] + ], + {}, + ), + 6: ( + "wagtail.blocks.CharBlock", + (), + { + "help_text": "A descriptive title for the media block", + "required": True, + }, + ), + 7: ( + "etna.core.blocks.image.APIImageChooserBlock", + (), + { + "help_text": "A thumbnail image for the media block", + "required": False, + }, + ), + 8: ("etna.media.blocks.MediaChooserBlock", (), {}), + 9: ( + "wagtail.blocks.StructBlock", + [[("title", 6), ("thumbnail", 7), ("media", 8)]], + {}, + ), + }, + ), + ), + ]