Skip to content
Snippets Groups Projects
Verified Commit 58d7de49 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Refactor preference_layout_builder to a class named PreferenceLayout

parent df1dc6cc
No related branches found
No related tags found
1 merge request!422Resolve "Add option to define rows for preferences forms"
Pipeline #5093 passed
...@@ -3,30 +3,33 @@ from collections import OrderedDict ...@@ -3,30 +3,33 @@ from collections import OrderedDict
from material import Layout, Row from material import Layout, Row
def preference_layout_builder(form_base_class, section=None): class PreferenceLayout(Layout):
""" """
Return a django-material Layout object for the given form_base_class. Create a django-material Layout object for the given form_base_class.
:param form_base_class: A Form class used as the base. Must have a ``registry` attribute :param form_base_class: A Form class used as the base. Must have a ``registry` attribute
:param section: A section where the layout builder will load preferences :param section: A section where the layout builder will load preferences
""" """
registry = form_base_class.registry
if section: def __init__(self, form_base_class, section=None):
# Try to use section param
preferences_obj = registry.preferences(section=section) registry = form_base_class.registry
if section:
else: # Try to use section param
# display all preferences in the form preferences_obj = registry.preferences(section=section)
preferences_obj = registry.preferences()
else:
rows = OrderedDict() # display all preferences in the form
preferences_obj = registry.preferences()
for preference in preferences_obj:
row_name = preference.get("row", preference.identifier()) rows = OrderedDict()
rows.setdefault(row_name, [])
rows[row_name].append(preference.identifier()) for preference in preferences_obj:
row_name = preference.get("row", preference.identifier())
rows_material = [] rows.setdefault(row_name, [])
for fields in rows.values(): rows[row_name].append(preference.identifier())
rows_material.append(Row(*fields))
return Layout(*rows_material) rows_material = []
for fields in rows.values():
rows_material.append(Row(*fields))
super().__init__(*rows_material)
...@@ -75,7 +75,7 @@ from .tables import ( ...@@ -75,7 +75,7 @@ from .tables import (
from .util import messages from .util import messages
from .util.apps import AppConfig from .util.apps import AppConfig
from .util.core_helpers import objectgetter_optional from .util.core_helpers import objectgetter_optional
from .util.forms import preference_layout_builder from .util.forms import PreferenceLayout
@permission_required("core.view_dashboard") @permission_required("core.view_dashboard")
...@@ -547,8 +547,7 @@ def preferences( ...@@ -547,8 +547,7 @@ def preferences(
form_class = preference_form_builder(form_class, instance=instance, section=section) form_class = preference_form_builder(form_class, instance=instance, section=section)
# Get layout # Get layout
layout = preference_layout_builder(form_class, section=section) form_class.layout = PreferenceLayout(form_class, section=section)
form_class.layout = layout
if request.method == "POST": if request.method == "POST":
form = form_class(request.POST, request.FILES or None) form = form_class(request.POST, request.FILES or None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment