Details
-
Type:
New Feature
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 4.0.0-b5
-
Fix Version/s: 4.10.0-b1
-
Component/s: Staff Interface
-
Labels:None
-
Epic Link:
Description
The Package listing can become quite unruly and difficult to find the right thing. Add a filter option for Packages, which would consist of:
- A new button using the Font Awesome fa-filter funnel icon to the left of the + (New Package) button
- Clicking the button will toggle open/closed the filter section which appears above the table listing
- Filter by Module (dropdown), and Package Name (text field), which automatically filters the results in the table below
See attached screenshot. We'll need to import additional bootstrap styles including form-group, and form-control. Put each element in a col-md-3 column so that it will support up to 4 options.
Issue Links
- is blocked by
-
CORE-3542 Update widget helpers to support filters
-
- Closed
-
I think for this we could add an additional widget button for the "filter" to appear, which you can set from the Widget. Additionally, a new method would be added to "setFilters($filters, $vars)" and that would allow you to pass in filter options and any vars to prepopulate the filters with.
The filters would ideally be a well-defined set of input fields. For example, modules currently use ModuleFields that are used to construct form fields. This could be used as-is, but it is called "ModuleFields" rather than something more generic like "InputFields". Perhaps the ModuleFields classes can be rewritten in a namespace under /core/ and that can be used instead for this purpose. It could also replace the ModuleFields used by modules, except that would be backward incompatible, thus the current behavior should be deprecated so it could be replaced in version 5.0.
In any case, the $filters passed to the Widget->setFilters($filters, $vars) could be an interface that represents the new core InputFields. This would contain a list of each inputField used to display the filters. This will allow the widget to define a consistent UI layout of all filter options (e.g. 3-column layout) rather than relying on each widget itself to provide that UI.