We use a lot of customRoutes in our application and we want to display resources data in it.
The {List|Edit|Show|Create}Controller are tightly coupled to the URL which doesn't permit customRoutes to use them correctly.
This is why we are interested to create custom controllers that would be less coupled, and would let us feed the query manually. We will still have a link to create and edit some resources, but the default filtering will be different, and the path to retrieve the data might be too.
- Do you already have a strategy in place for such pages?
- Do you recommend to retrieve manually the data and perform that mapping manually?
It will become a requirement for us, If you are interested in such a component to be added into ra-core/ra-ui-materialui, I can probably try to make a proposition soon.
We use a lot of
customRoutesin our application and we want to display resources data in it.The
{List|Edit|Show|Create}Controllerare tightly coupled to the URL which doesn't permitcustomRoutesto use them correctly.This is why we are interested to create custom controllers that would be less coupled, and would let us feed the query manually. We will still have a link to create and edit some resources, but the default filtering will be different, and the path to retrieve the data might be too.
It will become a requirement for us, If you are interested in such a component to be added into ra-core/ra-ui-materialui, I can probably try to make a proposition soon.