mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-02 08:58:32 +00:00
* feat: implemented fuzzy search in grpc methods Changes: 1) New SearchInput reusable component created. 2) Search input box added in grpc methods list. 3) Fuzzy search and keyboard navigation functionality implemented. Closes #5683 * feat: e2e test cases added for new grpc method searchbox * fix: package-lock json update * fix: added missing collection files for testing * fix: fixed lint issue * chore: update package-lock json file * fix: improve keyboard navigation and search handling in MethodDropdown Changes: 1) Adjusted focused index logic for ArrowUp key to remove focus after first item. 2) Enhanced handleSearchChange logic to highlight first item when search text is not empty. * feat: implemented fuzzy search in grpc methods Changes: 1) New SearchInput reusable component created. 2) Search input box added in grpc methods list. 3) Fuzzy search and keyboard navigation functionality implemented. Closes #5683 * feat: e2e test cases added for new grpc method searchbox * fix: added missing collection files for testing * fix: fixed lint issue * chore: update package-lock json file * fix: improve keyboard navigation and search handling in MethodDropdown Changes: 1) Adjusted focused index logic for ArrowUp key to remove focus after first item. 2) Enhanced handleSearchChange logic to highlight first item when search text is not empty. * test: updated test description and some code optimisation
23 lines
248 B
Plaintext
23 lines
248 B
Plaintext
meta {
|
|
name: SayHello
|
|
type: grpc
|
|
seq: 1
|
|
}
|
|
|
|
grpc {
|
|
url: {{host}}
|
|
method: /hello.HelloService/SayHello
|
|
body: grpc
|
|
auth: inherit
|
|
methodType: unary
|
|
}
|
|
|
|
body:grpc {
|
|
name: message 1
|
|
content: '''
|
|
{
|
|
"greeting": "supra"
|
|
}
|
|
'''
|
|
}
|