mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-10 15:13:40 -05:00
26 lines
752 B
HTML
26 lines
752 B
HTML
{% macro live_search(
|
|
target_selector=None,
|
|
show=False,
|
|
form=None,
|
|
label=None,
|
|
autofocus=True
|
|
) %}
|
|
{%- set search_label = label or form.search.label.text %}
|
|
|
|
{%- set param_extensions = {
|
|
"label": {"text": search_label},
|
|
"autocomplete": "off",
|
|
} %}
|
|
|
|
{% if autofocus %}
|
|
{% set _ = param_extensions.__setitem__("attributes", {"autofocus": "autofocus"}) %}
|
|
{% endif %}
|
|
|
|
{% if show %}
|
|
<div class="live-search js-header margin-top-0" data-module="live-search" data-targets="{{ target_selector }}">
|
|
{{ form.search(param_extensions=param_extensions) }}
|
|
<div aria-live="polite" class="live-search__status usa-sr-only"></div>
|
|
</div>
|
|
{% endif %}
|
|
{% endmacro %}
|