forked from labd/wagtailstreamforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwagtailstreamforms_fields.py
79 lines (64 loc) · 2.38 KB
/
wagtailstreamforms_fields.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
from django import forms
from django.contrib.auth.models import User
from captcha.fields import ReCaptchaField
from wagtail import blocks
from wagtailstreamforms.fields import BaseField, register
@register('recaptcha')
class ReCaptchaField(BaseField):
field_class = ReCaptchaField
icon = 'success'
label = 'ReCAPTCHA field'
def get_options(self, block_value):
options = super().get_options(block_value)
options.update({
'required': True
})
return options
def get_form_block(self):
return blocks.StructBlock([
('label', blocks.CharBlock()),
('help_text', blocks.CharBlock(required=False)),
], icon=self.icon, label=self.label)
@register('regex_validated')
class RegexValidatedField(BaseField):
field_class = forms.RegexField
label = 'Regex field'
def get_options(self, block_value):
options = super().get_options(block_value)
options.update({
'regex': block_value.get('regex'),
'error_messages': {'invalid': block_value.get('error_message')}
})
return options
def get_regex_choices(self):
return (
('(.*?)', 'Any'),
('^[a-zA-Z0-9]+$', 'Letters and numbers only'),
)
def get_form_block(self):
return blocks.StructBlock([
('label', blocks.CharBlock()),
('help_text', blocks.CharBlock(required=False)),
('required', blocks.BooleanBlock(required=False)),
('regex', blocks.ChoiceBlock(choices=self.get_regex_choices())),
('error_message', blocks.CharBlock()),
('default_value', blocks.CharBlock(required=False)),
], icon=self.icon, label=self.label)
@register('user')
class UserChoiceField(BaseField):
field_class = forms.ModelChoiceField
icon = 'user'
label = 'User dropdown field'
@staticmethod
def get_queryset():
return User.objects.all()
def get_options(self, block_value):
options = super().get_options(block_value)
options.update({'queryset': self.get_queryset()})
return options
def get_form_block(self):
return blocks.StructBlock([
('label', blocks.CharBlock()),
('help_text', blocks.CharBlock(required=False)),
('required', blocks.BooleanBlock(required=False)),
], icon=self.icon, label=self.label)