Compare commits
7 commits
8b23be7422
...
455a0906c6
Author | SHA1 | Date | |
---|---|---|---|
|
455a0906c6 | ||
|
fc76ba7dbd | ||
|
7ba4987003 | ||
|
6dfb35b688 | ||
|
e618957381 | ||
|
f0d1f00dd8 | ||
|
9580dde246 |
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -5,6 +5,16 @@ All notable changes to wuttaweb will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## v0.20.5 (2025-01-23)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- improve styling for grid tools section
|
||||||
|
- add basic checkbox support for grids
|
||||||
|
- add WuttaRequestMixin for ThisPage component
|
||||||
|
- avoid literal `None` when rendering form field value
|
||||||
|
- let header title be even wider
|
||||||
|
|
||||||
## v0.20.4 (2025-01-15)
|
## v0.20.4 (2025-01-15)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "WuttaWeb"
|
name = "WuttaWeb"
|
||||||
version = "0.20.4"
|
version = "0.20.5"
|
||||||
description = "Web App for Wutta Framework"
|
description = "Web App for Wutta Framework"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
||||||
|
@ -44,7 +44,7 @@ dependencies = [
|
||||||
"pyramid_tm",
|
"pyramid_tm",
|
||||||
"waitress",
|
"waitress",
|
||||||
"WebHelpers2",
|
"WebHelpers2",
|
||||||
"WuttJamaican[db]>=0.20.1",
|
"WuttJamaican[db]>=0.20.2",
|
||||||
"zope.sqlalchemy>=1.5",
|
"zope.sqlalchemy>=1.5",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -1033,12 +1033,13 @@ class Form:
|
||||||
# render static text if field not in deform/schema
|
# render static text if field not in deform/schema
|
||||||
# TODO: need to abstract this somehow
|
# TODO: need to abstract this somehow
|
||||||
if self.model_instance:
|
if self.model_instance:
|
||||||
html = str(self.model_instance[fieldname])
|
value = self.model_instance[fieldname]
|
||||||
|
html = str(value) if value is not None else ''
|
||||||
else:
|
else:
|
||||||
html = ''
|
html = ''
|
||||||
|
|
||||||
# mark all that as safe
|
# mark all that as safe
|
||||||
html = HTML.literal(html)
|
html = HTML.literal(html or ' ')
|
||||||
|
|
||||||
# render field label
|
# render field label
|
||||||
label = self.get_label(fieldname)
|
label = self.get_label(fieldname)
|
||||||
|
|
|
@ -118,6 +118,11 @@ class Grid:
|
||||||
See also :meth:`set_renderer()` and
|
See also :meth:`set_renderer()` and
|
||||||
:meth:`set_default_renderers()`.
|
:meth:`set_default_renderers()`.
|
||||||
|
|
||||||
|
.. attribute:: checkable
|
||||||
|
|
||||||
|
Boolean indicating whether the grid should expose per-row
|
||||||
|
checkboxes.
|
||||||
|
|
||||||
.. attribute:: row_class
|
.. attribute:: row_class
|
||||||
|
|
||||||
This represents the CSS ``class`` attribute for a row within
|
This represents the CSS ``class`` attribute for a row within
|
||||||
|
@ -362,6 +367,7 @@ class Grid:
|
||||||
data=None,
|
data=None,
|
||||||
labels={},
|
labels={},
|
||||||
renderers={},
|
renderers={},
|
||||||
|
checkable=False,
|
||||||
row_class=None,
|
row_class=None,
|
||||||
actions=[],
|
actions=[],
|
||||||
linked_columns=[],
|
linked_columns=[],
|
||||||
|
@ -388,6 +394,7 @@ class Grid:
|
||||||
self.key = key
|
self.key = key
|
||||||
self.data = data
|
self.data = data
|
||||||
self.labels = labels or {}
|
self.labels = labels or {}
|
||||||
|
self.checkable = checkable
|
||||||
self.row_class = row_class
|
self.row_class = row_class
|
||||||
self.actions = actions or []
|
self.actions = actions or []
|
||||||
self.linked_columns = linked_columns or []
|
self.linked_columns = linked_columns or []
|
||||||
|
|
|
@ -155,7 +155,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#content-title h1 {
|
#content-title h1 {
|
||||||
max-width: 85%;
|
max-width: 95%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding-left: 0.5rem;
|
padding-left: 0.5rem;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
@ -186,6 +186,11 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wutta-grid-tools-wrapper {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
##############################
|
##############################
|
||||||
## forms
|
## forms
|
||||||
##############################
|
##############################
|
||||||
|
|
|
@ -116,6 +116,13 @@
|
||||||
hoverable
|
hoverable
|
||||||
icon-pack="fas"
|
icon-pack="fas"
|
||||||
|
|
||||||
|
## checkboxes
|
||||||
|
% if grid.checkable:
|
||||||
|
checkable
|
||||||
|
checkbox-position="right"
|
||||||
|
:checked-rows.sync="checkedRows"
|
||||||
|
% endif
|
||||||
|
|
||||||
## sorting
|
## sorting
|
||||||
% if grid.sortable:
|
% if grid.sortable:
|
||||||
## nb. buefy/oruga only support *one* default sorter
|
## nb. buefy/oruga only support *one* default sorter
|
||||||
|
@ -267,6 +274,11 @@
|
||||||
shareLink: null,
|
shareLink: null,
|
||||||
% endif
|
% endif
|
||||||
|
|
||||||
|
## checkboxes
|
||||||
|
% if grid.checkable:
|
||||||
|
checkedRows: [],
|
||||||
|
% endif
|
||||||
|
|
||||||
## filtering
|
## filtering
|
||||||
% if grid.filterable:
|
% if grid.filterable:
|
||||||
filters: ${json.dumps(grid.get_vue_filters())|n},
|
filters: ${json.dumps(grid.get_vue_filters())|n},
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
|
|
||||||
const ThisPage = {
|
const ThisPage = {
|
||||||
template: '#this-page-template',
|
template: '#this-page-template',
|
||||||
|
mixins: [WuttaRequestMixin],
|
||||||
props: {
|
props: {
|
||||||
## configureFieldsHelp: Boolean,
|
## configureFieldsHelp: Boolean,
|
||||||
},
|
},
|
||||||
|
|
|
@ -189,6 +189,12 @@ class MasterView(View):
|
||||||
|
|
||||||
This is optional; see also :meth:`get_grid_columns()`.
|
This is optional; see also :meth:`get_grid_columns()`.
|
||||||
|
|
||||||
|
.. attribute:: checkable
|
||||||
|
|
||||||
|
Boolean indicating whether the grid should expose per-row
|
||||||
|
checkboxes. This is passed along to set
|
||||||
|
:attr:`~wuttaweb.grids.base.Grid.checkable` on the grid.
|
||||||
|
|
||||||
.. method:: grid_row_class(obj, data, i)
|
.. method:: grid_row_class(obj, data, i)
|
||||||
|
|
||||||
This method is *not* defined on the ``MasterView`` base class;
|
This method is *not* defined on the ``MasterView`` base class;
|
||||||
|
@ -395,6 +401,7 @@ class MasterView(View):
|
||||||
# features
|
# features
|
||||||
listable = True
|
listable = True
|
||||||
has_grid = True
|
has_grid = True
|
||||||
|
checkable = False
|
||||||
filterable = True
|
filterable = True
|
||||||
filter_defaults = None
|
filter_defaults = None
|
||||||
sortable = True
|
sortable = True
|
||||||
|
@ -1992,6 +1999,7 @@ class MasterView(View):
|
||||||
|
|
||||||
kwargs['tools'] = tools
|
kwargs['tools'] = tools
|
||||||
|
|
||||||
|
kwargs.setdefault('checkable', self.checkable)
|
||||||
if hasattr(self, 'grid_row_class'):
|
if hasattr(self, 'grid_row_class'):
|
||||||
kwargs.setdefault('row_class', self.grid_row_class)
|
kwargs.setdefault('row_class', self.grid_row_class)
|
||||||
kwargs.setdefault('filterable', self.filterable)
|
kwargs.setdefault('filterable', self.filterable)
|
||||||
|
|
|
@ -1433,7 +1433,7 @@ class TestGrid(WebTestCase):
|
||||||
# null
|
# null
|
||||||
obj = MagicMock(dt=None)
|
obj = MagicMock(dt=None)
|
||||||
result = grid.render_date(obj, 'dt', None)
|
result = grid.render_date(obj, 'dt', None)
|
||||||
self.assertIsNone(result)
|
self.assertEqual(result, '')
|
||||||
|
|
||||||
# typical
|
# typical
|
||||||
dt = datetime.date(2025, 1, 13)
|
dt = datetime.date(2025, 1, 13)
|
||||||
|
@ -1446,7 +1446,7 @@ class TestGrid(WebTestCase):
|
||||||
|
|
||||||
obj = MagicMock(dt=None)
|
obj = MagicMock(dt=None)
|
||||||
result = grid.render_datetime(obj, 'dt', None)
|
result = grid.render_datetime(obj, 'dt', None)
|
||||||
self.assertIsNone(result)
|
self.assertEqual(result, '')
|
||||||
|
|
||||||
dt = datetime.datetime(2024, 12, 12, 13, 44, tzinfo=datetime.timezone.utc)
|
dt = datetime.datetime(2024, 12, 12, 13, 44, tzinfo=datetime.timezone.utc)
|
||||||
obj = MagicMock(dt=dt)
|
obj = MagicMock(dt=dt)
|
||||||
|
|
Loading…
Reference in a new issue