blocks.py 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. from wagtail.wagtailimages.blocks import ImageChooserBlock
  2. from wagtail.wagtailembeds.blocks import EmbedBlock
  3. from wagtail.wagtailcore.blocks import (
  4. CharBlock, ChoiceBlock, RichTextBlock, StreamBlock, StructBlock, TextBlock,
  5. )
  6. class ImageBlock(StructBlock):
  7. """
  8. Custom `StructBlock` for utilizing images with associated caption and
  9. attribution data
  10. """
  11. image = ImageChooserBlock(required=True)
  12. caption = CharBlock(required=False)
  13. attribution = CharBlock(required=False)
  14. class Meta:
  15. icon = 'image'
  16. template = "blocks/image_block.html"
  17. class HeadingBlock(StructBlock):
  18. """
  19. Custom `StructBlock` that allows the user to select h2 - h4 sizes for headers
  20. """
  21. heading_text = CharBlock(classname="title", required=True)
  22. size = ChoiceBlock(choices=[
  23. ('', 'Select a header size'),
  24. ('h2', 'H2'),
  25. ('h3', 'H3'),
  26. ('h4', 'H4')
  27. ], blank=True, required=False)
  28. class Meta:
  29. icon = "title"
  30. template = "blocks/heading_block.html"
  31. class BlockQuote(StructBlock):
  32. """
  33. Custom `StructBlock` that allows the user to attribute a quote to the author
  34. """
  35. text = TextBlock()
  36. attribute_name = CharBlock(
  37. blank=True, required=False, label='e.g. Guy Picciotto')
  38. class Meta:
  39. icon = "fa-quote-left"
  40. template = "blocks/blockquote.html"
  41. # StreamBlocks
  42. class BaseStreamBlock(StreamBlock):
  43. """
  44. Define the custom blocks that `StreamField` will utilize
  45. """
  46. intro_block = TextBlock()
  47. heading_block = HeadingBlock()
  48. paragraph_block = RichTextBlock(
  49. icon="fa-paragraph",
  50. template="blocks/paragraph_block.html"
  51. )
  52. image_block = ImageBlock()
  53. block_quote = BlockQuote()
  54. embed_block = EmbedBlock(
  55. help_text='Insert an embed URL e.g https://www.youtube.com/embed/SGJFWirQ3ks',
  56. icon="fa-s15",
  57. template="blocks/embed_block.html")