Skip to content

Commit 72a052f

Browse files
committed
feat: merge meta fields
1 parent 760d216 commit 72a052f

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

__tests__/router.spec.ts

+18
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ const routes: RouteRecordRaw[] = [
2727
{ path: '/repeat/:r+', name: 'repeat', component: components.Bar },
2828
{ path: '/to-p/:p', redirect: to => `/p/${to.params.p}` },
2929
{ path: '/before-leave', component: components.BeforeLeave },
30+
{
31+
path: '/parent',
32+
meta: { fromParent: 'foo' },
33+
component: components.Foo,
34+
children: [
35+
{ path: 'child', meta: { fromChild: 'bar' }, component: components.Foo },
36+
],
37+
},
3038
{
3139
path: '/inc-query-hash',
3240
redirect: to => ({
@@ -125,6 +133,16 @@ describe('Router', () => {
125133
expect(stringifyQuery).toHaveBeenCalledWith({ foo: 'bar' })
126134
})
127135

136+
it('merges meta properties from parent to child', async () => {
137+
const { router } = await newRouter()
138+
expect(router.resolve('/parent')).toMatchObject({
139+
meta: { fromParent: 'foo' },
140+
})
141+
expect(router.resolve('/parent/child')).toMatchObject({
142+
meta: { fromParent: 'foo', fromChild: 'bar' },
143+
})
144+
})
145+
128146
it('can do initial navigation to /', async () => {
129147
const router = createRouter({
130148
history: createMemoryHistory(),

src/matcher/index.ts

+16-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ export function createRouterMatcher(
246246
path,
247247
params,
248248
matched,
249-
meta: matcher ? matcher.record.meta : {},
249+
meta: mergeMetaFields(matched),
250250
}
251251
}
252252

@@ -306,4 +306,19 @@ function isAliasRecord(record: RouteRecordMatcher | undefined): boolean {
306306
return false
307307
}
308308

309+
/**
310+
* Merge meta fields of an array of records
311+
*
312+
* @param matched array of matched records
313+
*/
314+
function mergeMetaFields(matched: MatcherLocation['matched']) {
315+
return matched.reduce(
316+
(meta, record) => ({
317+
...meta,
318+
...record.meta,
319+
}),
320+
{} as MatcherLocation['meta']
321+
)
322+
}
323+
309324
export { PathParserOptions }

0 commit comments

Comments
 (0)