mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 06:03:20 +00:00
forum: improve search bar UX behavior
This commit is contained in:
parent
e421a2b4cd
commit
721b22a1e9
@ -157,9 +157,31 @@
|
||||
|
||||
{% macro display_search_bar() %}
|
||||
<form class="search_bar" action="{{ url('forum:search') }}" method="GET">
|
||||
<input type="text" placeholder="{% trans %}Search{% endtrans %}" name="query"/>
|
||||
<input type="checkbox" class="sreach_check" name="order" value="date" checked> {% trans %}Order by date{% endtrans %}<br>
|
||||
<input type="text" id="forum_search_input" placeholder="{% trans %}Search{% endtrans %}" name="query"/>
|
||||
<input type="checkbox" id="forum_search_order_date" class="sreach_check" name="order" value="date" checked> {% trans %}Order by date{% endtrans %}<br>
|
||||
<input type="submit" class="search_bouton" value="{% trans %}Search{% endtrans %}"/>
|
||||
<script type="text/javascript">
|
||||
// Uncheck the order by date checkbox if previously unchecked
|
||||
const searchParams = new URLSearchParams(window.location.search);
|
||||
var waitForJQuery = setInterval(function () {
|
||||
if (typeof $ != 'undefined'){
|
||||
fillSearchBar();
|
||||
clearInterval(waitForJQuery);
|
||||
}
|
||||
}, 10);
|
||||
function fillSearchBar() {
|
||||
if (searchParams.has('query')){
|
||||
$('#forum_search_input').val(searchParams.get('query'));
|
||||
}
|
||||
if (
|
||||
(!searchParams.has('order') && searchParams.has('query') )||
|
||||
(searchParams.has('order') && searchParams.get('order') != 'date')
|
||||
) {
|
||||
$('#forum_search_order_date').removeAttr('checked');
|
||||
clearInterval(waitForJQuery);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
</form>
|
||||
{% endmacro %}
|
||||
|
Loading…
Reference in New Issue
Block a user