-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathmixins.py
62 lines (47 loc) · 1.69 KB
/
mixins.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from django.utils.functional import cached_property
class PageUtilsMixin:
"""
This mixin contains the common properties/utilities shared across most children
of wagtail.models.Page
"""
@cached_property
def parent_section(self):
from .models import Section
return Section.objects.parent_of(self).type(Section).first()
@cached_property
def is_first_content(self):
from .models import Article, Section, PageLinkPage
rv = False
if isinstance(self, (Section, Article, PageLinkPage)):
parent = self.get_parent().specific
children = list(parent.get_children().live().specific().order_by('path'))
index = children.index(self)
if index == 0 and parent.larger_image_for_top_page_in_list_as_in_v1:
rv = True
return rv
@cached_property
def get_type(self):
return self.__class__.__name__.lower()
class TitleIconMixin:
"""
This mixin is used for duck-typing
"""
def get_page(self):
return self
def get_icon(self):
class Icon(object):
url = ''
is_svg_icon = False
path = ''
def __init__(self, url='', is_svg_icon=False):
self.url = url
self.is_svg_icon = is_svg_icon
def __str__(self):
return f'{self.url}'
icon = Icon()
if hasattr(self, 'icon') and self.icon:
icon = Icon(self.icon.url, True)
icon.path = self.icon.file.name
elif hasattr(self, 'image_icon') and self.image_icon:
icon = Icon(self.image_icon.get_rendition('fill-32x32').url, False)
return icon