fix: add WuttaQuantity schema type, widget
This commit is contained in:
parent
a219f3e30d
commit
0631b8e16b
|
@ -177,6 +177,27 @@ class WuttaMoney(colander.Money):
|
||||||
return widgets.WuttaMoneyInputWidget(self.request, **kwargs)
|
return widgets.WuttaMoneyInputWidget(self.request, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
|
class WuttaQuantity(colander.Decimal):
|
||||||
|
"""
|
||||||
|
Custom schema type for "quantity" fields.
|
||||||
|
|
||||||
|
This is a subclass of :class:`colander:colander.Decimal` but uses
|
||||||
|
:class:`~wuttaweb.forms.widgets.WuttaQuantityWidget` by default.
|
||||||
|
|
||||||
|
:param request: Current :term:`request` object.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, request, *args, **kwargs):
|
||||||
|
super().__init__(*args, **kwargs)
|
||||||
|
self.request = request
|
||||||
|
self.config = self.request.wutta_config
|
||||||
|
self.app = self.config.get_app()
|
||||||
|
|
||||||
|
def widget_maker(self, **kwargs):
|
||||||
|
""" """
|
||||||
|
return widgets.WuttaQuantityWidget(self.request, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
class WuttaSet(colander.Set):
|
class WuttaSet(colander.Set):
|
||||||
"""
|
"""
|
||||||
Custom schema type for :class:`python:set` fields.
|
Custom schema type for :class:`python:set` fields.
|
||||||
|
|
|
@ -226,6 +226,42 @@ class WuttaMoneyInputWidget(MoneyInputWidget):
|
||||||
return super().serialize(field, cstruct, **kw)
|
return super().serialize(field, cstruct, **kw)
|
||||||
|
|
||||||
|
|
||||||
|
class WuttaQuantityWidget(TextInputWidget):
|
||||||
|
"""
|
||||||
|
Custom widget for "quantity" fields. This is used by default for
|
||||||
|
:class:`~wuttaweb.forms.schema.WuttaQuantity` type nodes.
|
||||||
|
|
||||||
|
The main purpose of this widget is to leverage
|
||||||
|
:meth:`~wuttjamaican:wuttjamaican.app.AppHandler.render_quantity()`
|
||||||
|
for the readonly display.
|
||||||
|
|
||||||
|
This is a subclass of
|
||||||
|
:class:`deform:deform.widget.TextInputWidget` and uses these
|
||||||
|
Deform templates:
|
||||||
|
|
||||||
|
* ``textinput``
|
||||||
|
|
||||||
|
:param request: Current :term:`request` object.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, request, *args, **kwargs):
|
||||||
|
super().__init__(*args, **kwargs)
|
||||||
|
self.request = request
|
||||||
|
self.config = self.request.wutta_config
|
||||||
|
self.app = self.config.get_app()
|
||||||
|
|
||||||
|
def serialize(self, field, cstruct, **kw):
|
||||||
|
""" """
|
||||||
|
readonly = kw.get('readonly', self.readonly)
|
||||||
|
if readonly:
|
||||||
|
if cstruct in (colander.null, None):
|
||||||
|
return HTML.tag('span')
|
||||||
|
cstruct = decimal.Decimal(cstruct)
|
||||||
|
return HTML.tag('span', c=[self.app.render_quantity(cstruct)])
|
||||||
|
|
||||||
|
return super().serialize(field, cstruct, **kw)
|
||||||
|
|
||||||
|
|
||||||
class FileDownloadWidget(Widget):
|
class FileDownloadWidget(Widget):
|
||||||
"""
|
"""
|
||||||
Widget for use with :class:`~wuttaweb.forms.schema.FileDownload`
|
Widget for use with :class:`~wuttaweb.forms.schema.FileDownload`
|
||||||
|
|
|
@ -89,6 +89,15 @@ class TestWuttaMoney(WebTestCase):
|
||||||
self.assertIsInstance(widget, widgets.WuttaMoneyInputWidget)
|
self.assertIsInstance(widget, widgets.WuttaMoneyInputWidget)
|
||||||
|
|
||||||
|
|
||||||
|
class TestWuttaQuantity(WebTestCase):
|
||||||
|
|
||||||
|
def test_widget_maker(self):
|
||||||
|
enum = self.app.enum
|
||||||
|
typ = mod.WuttaQuantity(self.request)
|
||||||
|
widget = typ.widget_maker()
|
||||||
|
self.assertIsInstance(widget, widgets.WuttaQuantityWidget)
|
||||||
|
|
||||||
|
|
||||||
class TestObjectRef(DataTestCase):
|
class TestObjectRef(DataTestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
|
|
@ -125,7 +125,7 @@ class TestWuttaMoneyInputWidget(WebTestCase):
|
||||||
return mod.WuttaMoneyInputWidget(self.request, **kwargs)
|
return mod.WuttaMoneyInputWidget(self.request, **kwargs)
|
||||||
|
|
||||||
def test_serialize(self):
|
def test_serialize(self):
|
||||||
node = colander.SchemaNode(WuttaDateTime())
|
node = colander.SchemaNode(schema.WuttaMoney(self.request))
|
||||||
field = self.make_field(node)
|
field = self.make_field(node)
|
||||||
widget = self.make_widget()
|
widget = self.make_widget()
|
||||||
amount = decimal.Decimal('12.34')
|
amount = decimal.Decimal('12.34')
|
||||||
|
@ -143,6 +143,36 @@ class TestWuttaMoneyInputWidget(WebTestCase):
|
||||||
self.assertEqual(result, '<span></span>')
|
self.assertEqual(result, '<span></span>')
|
||||||
|
|
||||||
|
|
||||||
|
class TestWuttaQuantityWidget(WebTestCase):
|
||||||
|
|
||||||
|
def make_field(self, node, **kwargs):
|
||||||
|
# TODO: not sure why default renderer is in use even though
|
||||||
|
# pyramid_deform was included in setup? but this works..
|
||||||
|
kwargs.setdefault('renderer', deform.Form.default_renderer)
|
||||||
|
return deform.Field(node, **kwargs)
|
||||||
|
|
||||||
|
def make_widget(self, **kwargs):
|
||||||
|
return mod.WuttaQuantityWidget(self.request, **kwargs)
|
||||||
|
|
||||||
|
def test_serialize(self):
|
||||||
|
node = colander.SchemaNode(schema.WuttaQuantity(self.request))
|
||||||
|
field = self.make_field(node)
|
||||||
|
widget = self.make_widget()
|
||||||
|
amount = decimal.Decimal('42.00')
|
||||||
|
|
||||||
|
# editable widget has normal text input
|
||||||
|
result = widget.serialize(field, str(amount))
|
||||||
|
self.assertIn('<b-input', result)
|
||||||
|
|
||||||
|
# readonly is rendered per app convention
|
||||||
|
result = widget.serialize(field, str(amount), readonly=True)
|
||||||
|
self.assertEqual(result, '<span>42</span>')
|
||||||
|
|
||||||
|
# readonly w/ null value
|
||||||
|
result = widget.serialize(field, None, readonly=True)
|
||||||
|
self.assertEqual(result, '<span></span>')
|
||||||
|
|
||||||
|
|
||||||
class TestFileDownloadWidget(WebTestCase):
|
class TestFileDownloadWidget(WebTestCase):
|
||||||
|
|
||||||
def make_field(self, node, **kwargs):
|
def make_field(self, node, **kwargs):
|
||||||
|
|
Loading…
Reference in a new issue