Add meta information for search mode

This commit is contained in:
cgfhtw
2025-06-23 09:01:11 +02:00
parent 707a05f6cd
commit a2250fc727
2 changed files with 6 additions and 0 deletions
@@ -62,6 +62,9 @@ class Searchbar extends FHCAPI_Controller
$result = $this->searchbarlib->search($this->input->post(self::SEARCHSTR_PARAM), $this->input->post(self::TYPES_PARAM));
if (property_exists($result, 'error'))
$this->terminateWithError(getError($result), self::ERROR_TYPE_GENERAL);
$this->addMeta('mode', 'simple');
$this->terminateWithSuccess($result->data);
}
@@ -87,6 +90,7 @@ class Searchbar extends FHCAPI_Controller
$this->addMeta('time', $result->meta['time']);
$this->addMeta('searchstring', $result->meta['searchstring']);
$this->addMeta('mode', 'advanced');
$this->terminateWithSuccess($data);
}
@@ -16,6 +16,7 @@ export default {
types: this.getSearchTypes(),
},
searchresult: [],
searchmode: '',
showresult: false,
searching: false,
error: null,
@@ -270,6 +271,7 @@ export default {
}
}
this.searchresult = res;
this.searchmode = response.meta.mode;
}
this.searching = false;
this.retry = 0;