-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcms_plugins.py
123 lines (106 loc) · 2.87 KB
/
cms_plugins.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
from cms.plugin_pool import plugin_pool
from django.utils.translation import gettext_lazy as _
from ... import settings
from ...cms_plugins import CMSUIPlugin
from ...common.attributes import AttributesMixin
from .. import modal
from . import forms, models
mixin_factory = settings.get_renderer(modal)
@plugin_pool.register_plugin
class ModalPlugin(mixin_factory("Modal"), AttributesMixin, CMSUIPlugin):
"""
Component > "Modal" Plugin
https://getbootstrap.com/docs/5.0/components/modal/
"""
name = _("Modal")
module = _("Frontend")
model = models.Modal
form = forms.ModalForm
change_form_template = "djangocms_frontend/admin/modal.html"
allow_children = True
child_classes = [
"ModalTriggerPlugin",
"ModalContainerPlugin",
"LinkPlugin",
"CardPlugin",
"SpacingPlugin",
"GridRowPlugin",
]
fieldsets = [
(None, {"fields": ("modal_siblings",)}),
]
@plugin_pool.register_plugin
class ModalTriggerPlugin(mixin_factory("ModalTrigger"), AttributesMixin, CMSUIPlugin):
"""
Component > "Modal" Plugin
https://getbootstrap.com/docs/5.0/components/modal/
"""
name = _("Modal trigger")
module = _("Frontend")
model = models.ModalTrigger
form = forms.ModalTriggerForm
allow_children = True
parent_classes = [
"CardPlugin",
"CardInnerPlugin",
"ModalPlugin",
"GridColumnPlugin",
]
fieldsets = [
(None, {"fields": ("trigger_identifier",)}),
]
@plugin_pool.register_plugin
class ModalContainerPlugin(mixin_factory("ModalContainer"), CMSUIPlugin):
"""
Component > "Modal Container" Plugin
https://getbootstrap.com/docs/5.0/components/modal/
"""
name = _("Modal container")
module = _("Frontend")
model = models.ModalContainer
form = forms.ModalContainerForm
allow_children = True
child_classes = [
"ModalInnerPlugin",
]
fieldsets = [
(
None,
{
"fields": (
"container_identifier",
("modal_centered"),
("modal_static", "modal_scrollable"),
("modal_size", "modal_fullscreen"),
)
}
),
]
@plugin_pool.register_plugin
class ModalInnerPlugin(
mixin_factory("ModalInner"),
CMSUIPlugin,
):
"""
Component > "Modal Container" Plugin
https://getbootstrap.com/docs/5.0/components/modal/
"""
name = _("Modal inner")
module = _("Frontend")
model = models.ModalInner
form = forms.ModalInnerForm
allow_children = True
parent_classes = [
"ModalContainerPlugin",
]
fieldsets = [
(
None,
{
"fields": (
"inner_type",
"attributes",
)
},
),
]