models.py 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. from django import forms
  2. from django.db import models
  3. from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
  4. from modelcluster.fields import ParentalManyToManyField
  5. from wagtail.admin.panels import FieldPanel, MultiFieldPanel
  6. from wagtail.fields import StreamField
  7. from wagtail.models import Page
  8. from wagtail.search import index
  9. from wagtail.snippets.models import register_snippet
  10. from bakerydemo.base.blocks import BaseStreamBlock
  11. @register_snippet
  12. class Country(models.Model):
  13. """
  14. A Django model to store set of countries of origin.
  15. It uses the `@register_snippet` decorator to allow it to be accessible
  16. via the Snippets UI (e.g. /admin/snippets/breads/country/) In the BreadPage
  17. model you'll see we use a ForeignKey to create the relationship between
  18. Country and BreadPage. This allows a single relationship (e.g only one
  19. Country can be added) that is one-way (e.g. Country will have no way to
  20. access related BreadPage objects).
  21. """
  22. title = models.CharField(max_length=100)
  23. def __str__(self):
  24. return self.title
  25. class Meta:
  26. verbose_name_plural = "Countries of Origin"
  27. @register_snippet
  28. class BreadIngredient(models.Model):
  29. """
  30. Standard Django model that is displayed as a snippet within the admin due
  31. to the `@register_snippet` decorator. We use a new piece of functionality
  32. available to Wagtail called the ParentalManyToManyField on the BreadPage
  33. model to display this. The Wagtail Docs give a slightly more detailed example
  34. https://docs.wagtail.org/en/stable/getting_started/tutorial.html#categories
  35. """
  36. name = models.CharField(max_length=255)
  37. panels = [
  38. FieldPanel("name"),
  39. ]
  40. def __str__(self):
  41. return self.name
  42. class Meta:
  43. verbose_name_plural = "Bread ingredients"
  44. @register_snippet
  45. class BreadType(models.Model):
  46. """
  47. A Django model to define the bread type
  48. It uses the `@register_snippet` decorator to allow it to be accessible
  49. via the Snippets UI. In the BreadPage model you'll see we use a ForeignKey
  50. to create the relationship between BreadType and BreadPage. This allows a
  51. single relationship (e.g only one BreadType can be added) that is one-way
  52. (e.g. BreadType will have no way to access related BreadPage objects)
  53. """
  54. title = models.CharField(max_length=255)
  55. panels = [
  56. FieldPanel("title"),
  57. ]
  58. def __str__(self):
  59. return self.title
  60. class Meta:
  61. verbose_name_plural = "Bread types"
  62. class BreadPage(Page):
  63. """
  64. Detail view for a specific bread
  65. """
  66. introduction = models.TextField(help_text="Text to describe the page", blank=True)
  67. image = models.ForeignKey(
  68. "wagtailimages.Image",
  69. null=True,
  70. blank=True,
  71. on_delete=models.SET_NULL,
  72. related_name="+",
  73. help_text="Landscape mode only; horizontal width between 1000px and 3000px.",
  74. )
  75. body = StreamField(
  76. BaseStreamBlock(), verbose_name="Page body", blank=True, use_json_field=True
  77. )
  78. origin = models.ForeignKey(
  79. Country,
  80. on_delete=models.SET_NULL,
  81. null=True,
  82. blank=True,
  83. )
  84. # We include related_name='+' to avoid name collisions on relationships.
  85. # e.g. there are two FooPage models in two different apps,
  86. # and they both have a FK to bread_type, they'll both try to create a
  87. # relationship called `foopage_objects` that will throw a valueError on
  88. # collision.
  89. bread_type = models.ForeignKey(
  90. "breads.BreadType",
  91. null=True,
  92. blank=True,
  93. on_delete=models.SET_NULL,
  94. related_name="+",
  95. )
  96. ingredients = ParentalManyToManyField("BreadIngredient", blank=True)
  97. content_panels = Page.content_panels + [
  98. FieldPanel("introduction", classname="full"),
  99. FieldPanel("image"),
  100. FieldPanel("body"),
  101. FieldPanel("origin"),
  102. FieldPanel("bread_type"),
  103. MultiFieldPanel(
  104. [
  105. FieldPanel(
  106. "ingredients",
  107. widget=forms.CheckboxSelectMultiple,
  108. ),
  109. ],
  110. heading="Additional Metadata",
  111. classname="collapsible collapsed",
  112. ),
  113. ]
  114. search_fields = Page.search_fields + [
  115. index.SearchField("body"),
  116. ]
  117. parent_page_types = ["BreadsIndexPage"]
  118. class BreadsIndexPage(Page):
  119. """
  120. Index page for breads.
  121. This is more complex than other index pages on the bakery demo site as we've
  122. included pagination. We've separated the different aspects of the index page
  123. to be discrete functions to make it easier to follow
  124. """
  125. introduction = models.TextField(help_text="Text to describe the page", blank=True)
  126. image = models.ForeignKey(
  127. "wagtailimages.Image",
  128. null=True,
  129. blank=True,
  130. on_delete=models.SET_NULL,
  131. related_name="+",
  132. help_text="Landscape mode only; horizontal width between 1000px and " "3000px.",
  133. )
  134. content_panels = Page.content_panels + [
  135. FieldPanel("introduction", classname="full"),
  136. FieldPanel("image"),
  137. ]
  138. # Can only have BreadPage children
  139. subpage_types = ["BreadPage"]
  140. # Returns a queryset of BreadPage objects that are live, that are direct
  141. # descendants of this index page with most recent first
  142. def get_breads(self):
  143. return (
  144. BreadPage.objects.live().descendant_of(self).order_by("-first_published_at")
  145. )
  146. # Allows child objects (e.g. BreadPage objects) to be accessible via the
  147. # template. We use this on the HomePage to display child items of featured
  148. # content
  149. def children(self):
  150. return self.get_children().specific().live()
  151. # Pagination for the index page. We use the `django.core.paginator` as any
  152. # standard Django app would, but the difference here being we have it as a
  153. # method on the model rather than within a view function
  154. def paginate(self, request, *args):
  155. page = request.GET.get("page")
  156. paginator = Paginator(self.get_breads(), 12)
  157. try:
  158. pages = paginator.page(page)
  159. except PageNotAnInteger:
  160. pages = paginator.page(1)
  161. except EmptyPage:
  162. pages = paginator.page(paginator.num_pages)
  163. return pages
  164. # Returns the above to the get_context method that is used to populate the
  165. # template
  166. def get_context(self, request):
  167. context = super(BreadsIndexPage, self).get_context(request)
  168. # BreadPage objects (get_breads) are passed through pagination
  169. breads = self.paginate(request, self.get_breads())
  170. context["breads"] = breads
  171. return context