mirror of
https://github.com/binimum/tidal-ui.git
synced 2026-04-26 12:25:48 +03:00
[GH-ISSUE #5] Update search when anything is typed rather than search button #6
Labels
No labels
bug
duplicate
enhancement
pull-request
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tidal-ui#6
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Awlexegrecki on GitHub (Oct 5, 2025).
Original GitHub issue: https://github.com/binimum/tidal-ui/issues/5
I don't know how to explain it but I know how to do it in javascript. When anything is typed in a text input in javascript, you have a couple different options for updating the search. If you do the "change" option, it updates when you click enter, or I guess you have it so it updates when you click the search button. However, there is an option in javascript for "input", which automatically searches every time a new character is typed. I am not familiar with the coding language you are using, but would this be possible? It is a little annoying to click the search button every time.
@binimum commented on GitHub (Oct 5, 2025):
I know what you mean, but the only problem would be that it would continously spam the already slow APIs on every letter press which is not good with 3k users haha. If you have any other thoughts for it however please let me know!
@IZA165 commented on GitHub (Oct 17, 2025):
is it maybe possible to only send an API request after a second of not typing? That way you're not spamming every letter press but you still don't need to press the search bar @uimaxbai