New endpoint for instant search
Part of #798 (closed)
What does this MR do?
Refactors some parts of the instant search in the topbar:
- Uses a DTO for search results in the SearchGateway
- Creates a new endpoint
GET /search/all
for the instant search in the topbar - Removes the client-side wrapper code that mapped the legacy results from the Xhr endpoint
- Adds a permissions class for searches
- Makes all affected functions a bit more PHP 7.4 compatible
How confident are you it won't break things if deployed?
Quite sure, seems to work on localhost. The vue front-end already used the new format and doesn't change. The database request and overall behavior shouldn't change as well.
How to test
Steps a reviewer can take to verify that this MR does what it says it does e.g.
- Checkout branch locally
- Login as foodsaver
- Search for a region, store, or another foodsaver in the topbar
- Click the results and see if they lead to the correct pages
Checklist
-
added a test, or explain why one is not needed/possible... -
no unrelated changes -
asked someone for a code review -
joined #foodsharing-beta channel at https://slackin.yunity.org -
added an entry to CHANGELOG.md (description, merge request link, username(s)) -
Once your MR has been merged, you are responsible to update the #foodsharing-beta Slack channel about what has been changed here. They will test your work in different browsers, roles or other settings
Merge request reports
Activity
added typeRefactoring + 1 deleted label
Ah alex, have you seen my improvements for the MessageComposer search? See the other endpoint in SearchRestController,
listUserResultsAction
. I don't have statistics for the topbar search but I guess performance there should be quite bad as well. I suggest incorporating (might mean to refactor it a bit) that method at least for user search.E.g. the logic can be split out to a common "service" and be reused for different searches - this aligns output formatting, shown information and search results between the different options to search a thing. The remaining searches are adding people to store teams and adding people to groups.
Just to make sure, do you mean this should
- use the optimised
searchUserInGroups
for the user search - and add search by id like in
listUserResultsAction
?
The output format is a bit different because
listUserResultsAction
only returns id and a value and the topbar also needs the teaser and possibly a photo url in the future.I could also split this into multiple endpoints
/search/region
,/search/stores
, and the existing/search/user
, but that would add even more load on the database.Edited by Alex- use the optimised
- Resolved by Matthias Larisch
I really only meant trying to use the
searchUserInGroups
gateway method, but it is fine for me to do that later as a second step... I was only thinking about that because currently, data search is really slow without proper fulltext indexes. E.g. I am also thinking about extending search.I wonder if it wouldn't be great to have a "general search" in the top - I like those. Theoretically, we have really no problem in also search forums etc.. Just the UI needs to be good, and if I enter hello into the topbar, I am maybe a bit confused when I get forum messages.
So maybe we take yours as it is and refactor parts later?
added 158 commits
Toggle commit listadded 46 commits
-
ef43569f...a719cce1 - 40 commits from branch
master
- 6dfaf954 - use DTO in search gateway
- cd508cbb - add new search endpoint
- 73faa597 - use new search endpoint in client and remove SearchXhr
- ad05aa3e - changelog entry
- 5352d893 - use fulltext index for user search
- 6c9f7d34 - fix search gateway's unit test
Toggle commit list-
ef43569f...a719cce1 - 40 commits from branch
added stateBeta testing label
mentioned in merge request !1559 (merged)
mentioned in merge request !1579 (merged)
mentioned in issue #973 (closed)
mentioned in epic &9 (closed)
changed milestone to %Release 'Apfelsine': May 2020
removed stateBeta testing label