What about nested routes?
frederikhors opened this issue · 5 comments
frederikhors commented
What about nested pages?
E.g.:
-
Users Index (the list and the detail can change)
-
Users Sidebar
-
User Detail
- User Edit
- User Show
-
I hope I explained myself.
zyxd commented
If I understood the question correctly, it can be solved using the loose
parameter of Match
component or match
function (now in >= v1.0.21). Details about loose parameter.
Example using Match
component:
<Matcher>
<Match path={$route.path} pattern="/users" loose>
<Sidebar/>
<Matcher>
<Match path={$route.path} pattern="/users">
Users list
</Match>
<Match path={$route.path} pattern="/users/:id" let:params={{ id }}>
User {id} profile
</Match>
<Match path={$route.path} pattern="/users/:id/edit" let:params={{ id }}>
User {id} edit
</Match>
</Matcher>
</Match>
<Match path={$route.path}>
Page not found
</Match>
</Matcher>
Or using match
function:
{#if match('/users', $route.path, true)}
<Sidebar/>
{#if match('/users', $route.path)}
Users list
{:else if params = match('/users/:id', $route.path)}
User {params.id} profile
{:else if params = match('/users/:id/edit', $route.path)}
User {params.id} edit
{/if}
{:else}
Page not found
{/if}
frederikhors commented
I think we need docs on this.
frederikhors commented
What do you think about putting it in your amazing demo?
zyxd commented
What do you think about putting it in your amazing demo?
I'll think about it. Also, a PR would be appreciated.
zyxd commented
I think we need docs on this.
I added something to the README.