custom route element not visible
{
element:<div>
<LayoutWrapper>sssshhhhh</LayoutWrapper>
</div>,
path:"/sample",
} this is my custom route and i want show this page after i click button http://localhost:3000/appointment/sample this way i want url
} this is my custom route and i want show this page after i click button http://localhost:3000/appointment/sample this way i want url
16 Replies
vicious-goldOP•3y ago
the problem is i want to show this in particular appointment resource
provincial-silver•3y ago
Does this work when you update the path like
appointment/sample
?vicious-goldOP•3y ago
it shows 404 error page
vicious-goldOP•3y ago
this one
vicious-goldOP•3y ago
this page is visible when i provide it in url
provincial-silver•3y ago
Checking now, give me couple minutes and we will figure out a way
vicious-goldOP•3y ago
okay
provincial-silver•3y ago
Ali Emir Şen
StackBlitz
Refine Antd Example (forked) - StackBlitz
Run official live example code for Refine Antd, created by Pankod on StackBlitz
provincial-silver•3y ago
Checkout this example
there's a resource
posts
and added a custom route under posts/custom-route
Works just finevicious-goldOP•3y ago
okay ill check
how r routing to this route for example using push?
You can use
useNavigation
hook for redirect
https://refine.dev/docs/api-reference/core/hooks/navigation/useNavigation/#push-replace-and-gobackprovincial-silver•3y ago
https://stackblitz.com/edit/pankod-refine-tmdtrx?file=src/pages/posts/list.tsx updated the example like @Omers comment above
Refine Antd Example (forked) - StackBlitz
Run official live example code for Refine Antd, created by Pankod on StackBlitz
vicious-goldOP•3y ago
but the highligted part in the sider is not getting highlighted when it navigates to custom route page . for example post resource in sider is not getting highlighted when it is custom route
vicious-goldOP•3y ago
please check here
provincial-silver•3y ago
You are using a custom sider right?
You can add this key by checking the location.pathname (can be accessed via
window
or useLocation
from useRouterContext
which is exported from refine-core
)
Something like this;
vicious-goldOP•3y ago
i am using custom sider . i tried this but it is not working ...