2018-08-15 20:13:49 +01:00
|
|
|
{% macro live_search(
|
|
|
|
|
target_selector=None,
|
|
|
|
|
show=False,
|
|
|
|
|
form=None,
|
2020-09-08 15:51:29 +01:00
|
|
|
label=None,
|
2025-04-17 14:46:00 -04:00
|
|
|
autofocus=True
|
2018-08-15 20:13:49 +01:00
|
|
|
) %}
|
|
|
|
|
{%- set search_label = label or form.search.label.text %}
|
2020-09-08 15:51:29 +01:00
|
|
|
|
|
|
|
|
{%- set param_extensions = {
|
|
|
|
|
"label": {"text": search_label},
|
|
|
|
|
"autocomplete": "off",
|
|
|
|
|
} %}
|
|
|
|
|
|
|
|
|
|
{% if autofocus %}
|
2025-04-17 14:46:00 -04:00
|
|
|
{% set _ = param_extensions.__setitem__("attributes", {"autofocus": "autofocus"}) %}
|
2020-09-08 15:51:29 +01:00
|
|
|
{% endif %}
|
|
|
|
|
|
2018-08-15 20:13:49 +01:00
|
|
|
{% if show %}
|
2024-11-22 16:45:25 -05:00
|
|
|
<div class="live-search js-header margin-top-0" data-module="live-search" data-targets="{{ target_selector }}">
|
2020-09-08 15:51:29 +01:00
|
|
|
{{ form.search(param_extensions=param_extensions) }}
|
2023-06-16 14:55:24 -04:00
|
|
|
<div aria-live="polite" class="live-search__status usa-sr-only"></div>
|
2018-08-15 20:13:49 +01:00
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endmacro %}
|