@@ -209,11 +209,27 @@ export interface TreeNodeValueOptions extends ParseSegmentOptions {
209
209
* structure (e.g. `index`, ``, or `users/[id]`). In `path` format, routes are expected in the format of vue-router
210
210
* (e.g. `/` or '/users/:id' ).
211
211
*
212
- * @default 'file'
212
+ * @default ` 'file'`
213
213
*/
214
214
format ?: 'file' | 'path'
215
215
}
216
216
217
+ /**
218
+ * Resolves the options for the TreeNodeValue.
219
+ *
220
+ * @param options - options to resolve
221
+ * @returns resolved options
222
+ */
223
+ function resolveTreeNodeValueOptions (
224
+ options : TreeNodeValueOptions
225
+ ) : Required < TreeNodeValueOptions > {
226
+ return {
227
+ format : 'file' ,
228
+ dotNesting : true ,
229
+ ...options ,
230
+ }
231
+ }
232
+
217
233
/**
218
234
* Creates a new TreeNodeValue based on the segment. The result can be a static segment or a param segment.
219
235
*
@@ -224,12 +240,15 @@ export interface TreeNodeValueOptions extends ParseSegmentOptions {
224
240
export function createTreeNodeValue (
225
241
segment : string ,
226
242
parent ?: TreeNodeValue ,
227
- options : TreeNodeValueOptions = { }
243
+ opts : TreeNodeValueOptions = { }
228
244
) : TreeNodeValue {
229
245
if ( ! segment || segment === 'index' ) {
230
246
return new TreeNodeValueStatic ( segment , parent , '' )
231
247
}
232
248
249
+ // ensure default options
250
+ const options = resolveTreeNodeValueOptions ( opts )
251
+
233
252
const [ pathSegment , params , subSegments ] =
234
253
options . format === 'path'
235
254
? parseRawPathSegment ( segment )
@@ -264,6 +283,7 @@ export interface ParseSegmentOptions {
264
283
/**
265
284
* Should we allow dot nesting in the param name. e.g. `users.[id]` will be parsed as `users/[id]` if this is `true`,
266
285
* nesting. Note this only works for the `file` format.
286
+ *
267
287
* @default `true`
268
288
*/
269
289
dotNesting ?: boolean
0 commit comments