- Merge request !6Issue #3280992: Date range facet values don't appear in Facets Summary β (Open) created by jhedstrom
- First commit to issue fork.
- last update
almost 2 years ago 1 pass - First commit to issue fork.
- last update
about 1 year ago 1 pass - πΊπΈUnited States robpowell Boston
#6 does the following
When results are empty (they can be with a date range facet), this throws a fatal error. This should be preceded by a check to make sure $results is not empty.
Rather than get the url parameters from the facet which can return no results, I changed the logic to use the current request. This allows us to show facet summary regardless if there are no results or not.
I changed the logic on string replace to match the new format.
$pattern = '/min:\d+/'; $replacement = 'min:'; $clear_set_min_date = preg_replace($pattern, $replacement, $filter);
Added a label to the facet summary "pills"
$min_label = $facet_instance->getWidget()['config']['min_label']; $value = Markup::create('<strong>' . $this->t($min_label) . '</strong>: ' . gmdate($this->getConfiguration()['date_format'], $min)); $item = [ '#theme' => 'facets_result_item__summary', '#value' => $value,
- π§πͺBelgium andreasderijcke Antwerpen / Gent
Works well for me, on Drupal 10.3.1 with Facets 2.0.7.
I did make a copy and removed the
<strong>
occurrences.
I suggest using a template instead of Markup, or an option to controle wrapping of the label in<strong>
or not.