Add simple search to process defintions#57
Conversation
|
Hi. Thanks for the contribution. I'm a bit hesitant to approve this PR, as it isn't really the filtering / search we want at this point. Is this something you need or is this what you interpreted from #49 ? The filtering API for Operaton is something different than just filtering the loaded data based on a string. |
|
Hi, |
|
Yes, it would need to work like in the legacy web apps. |
|
I had a chance to look at this. I partially implemented the component but ran into an issue with the REST API. As I see it, we are using the REST endpoint provided by ProcessDefinitionRestService here which does not provide filtering statistics based on query. It allows querying on process definition level but we need the process statistics as well for the table. |
|
The currently used endpoint offers all the features we need. The frontend needs to pass the query params, as seen in the docs, to the backend and requires some UI. See the task page filtering for an example. |
|



This PR adds a search functionality to process definitions. I have kept it simple and the input is searched against both name and the key.

Closes #49