Skip to content

Commit d4d0087

Browse files
committed
fix(types): revert stricter meta
Close #2319
1 parent 5fef441 commit d4d0087

File tree

3 files changed

+10
-40
lines changed

3 files changed

+10
-40
lines changed

packages/router/src/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ export type {
5959
RouteRecordMultipleViewsWithChildren,
6060
RouteRecordRedirect,
6161
RouteMeta,
62-
_RouteMetaBase,
6362
RouteComponent,
6463
// RawRouteComponent,
6564
RouteParamsGeneric,

packages/router/src/types/index.ts

+3-37
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,7 @@ export type RawRouteComponent = RouteComponent | Lazy<RouteComponent>
189189
/**
190190
* Internal type for common properties among all kind of {@link RouteRecordRaw}.
191191
*/
192-
export interface _RouteRecordBase
193-
extends PathParserOptions,
194-
_RouteRecordBaseMeta {
192+
export interface _RouteRecordBase extends PathParserOptions {
195193
/**
196194
* Path of the record. Should start with `/` unless the record is the child of
197195
* another record.
@@ -230,7 +228,7 @@ export interface _RouteRecordBase
230228
/**
231229
* Arbitrary data attached to the record.
232230
*/
233-
// meta?: RouteMeta
231+
meta?: RouteMeta
234232

235233
/**
236234
* Array of nested routes.
@@ -243,12 +241,6 @@ export interface _RouteRecordBase
243241
props?: _RouteRecordProps | Record<string, _RouteRecordProps>
244242
}
245243

246-
/**
247-
* Default type for RouteMeta when not augmented.
248-
* @internal
249-
*/
250-
export type _RouteMetaBase = Record<string | number | symbol, unknown>
251-
252244
/**
253245
* Interface to type `meta` fields in route records.
254246
*
@@ -265,33 +257,7 @@ export type _RouteMetaBase = Record<string | number | symbol, unknown>
265257
* }
266258
* ```
267259
*/
268-
export interface RouteMeta extends _RouteMetaBase {}
269-
270-
/**
271-
* Returns `true` if the passed `RouteMeta` type hasn't been augmented. Return `false` otherwise.
272-
* @internal
273-
*/
274-
export type IsRouteMetaBase<RM> = _RouteMetaBase extends RM ? true : false
275-
/**
276-
* Returns `true` if the passed `RouteMeta` type has been augmented with required fields. Return `false` otherwise.
277-
* @internal
278-
*/
279-
export type IsRouteMetaRequired<RM> = Partial<RM> extends RM ? false : true
280-
281-
export type _RouteRecordBaseMeta = IsRouteMetaRequired<RouteMeta> extends true
282-
? {
283-
/**
284-
* Arbitrary data attached to the record. Required because the `RouteMeta` type has been augmented with required
285-
* fields.
286-
*/
287-
meta: RouteMeta
288-
}
289-
: {
290-
/**
291-
* Arbitrary data attached to the record.
292-
*/
293-
meta?: RouteMeta
294-
}
260+
export interface RouteMeta extends Record<string | number | symbol, unknown> {}
295261

296262
/**
297263
* Route Record defining one single component with the `component` option.

packages/router/test-dts/meta.test-d.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ const component = defineComponent({})
77
declare module '.' {
88
interface RouteMeta {
99
requiresAuth?: boolean
10-
// TODO: it would be nice to be able to test required meta without polluting all tests
11-
nested?: { foo: string }
10+
nested: { foo: string }
1211
}
1312
}
1413

@@ -28,6 +27,12 @@ describe('RouteMeta', () => {
2827
},
2928
},
3029
},
30+
{
31+
path: '/hey',
32+
component,
33+
// @ts-expect-error: meta is missing `nested`
34+
meta: {},
35+
},
3136
],
3237
})
3338

0 commit comments

Comments
 (0)