Fix search bar behaviour (step 5)

This commit is contained in:
Joshua Boniface 2025-03-02 14:38:43 -05:00
parent c1ddbd1f3f
commit 1d26e0338f

View File

@ -4,9 +4,14 @@
<button
class="btn btn-outline-secondary list-toggle-btn"
@click="toggleList"
:class="{ 'active': showList }"
:class="{
'active': showList,
'filtering': showList && isFilterActive
}"
:title="showList ? (isFilterActive ? 'Show all VMs' : 'Filter VMs') : 'List VMs'"
>
<i class="fas fa-list"></i> List VMs
<i class="fas" :class="showList && isFilterActive ? 'fa-filter' : 'fa-list'"></i>
{{ showList ? (isFilterActive ? 'Filtering' : 'All VMs') : 'List VMs' }}
</button>
<div class="search-box">
@ -255,14 +260,23 @@ const handleSearchClick = () => {
// Toggle the VM list
const toggleList = () => {
// If the list is already open, toggle filtering instead of closing
if (props.showList) {
// If we're closing the list, save the search text
if (props.modelValue) {
searchText.value = props.modelValue;
// Save to localStorage
localStorage.setItem('vmSearchText', props.modelValue);
// Toggle filtering mode
isFilterActive.value = !isFilterActive.value;
// If we're turning filtering on, make sure the search text is applied
if (isFilterActive.value && searchText.value) {
inputValue.value = searchText.value;
emit('update:modelValue', searchText.value);
}
} else {
// No need to emit toggle-list since we're not closing the list
return;
}
// If the list is closed, open it without filtering
if (!props.showList) {
// If we're opening the list, deactivate filtering
isFilterActive.value = false;
@ -558,6 +572,12 @@ const scrollToSelectedVM = () => {
color: white;
}
.list-toggle-btn.filtering {
background-color: #0d6efd;
color: white;
border-color: #0d6efd;
}
.filter-dropdown {
position: relative;
}