Skip to content

Commit 1bf080a

Browse files
committed
fix: resolve tree node value options
1 parent ef056ab commit 1bf080a

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

src/core/treeNodeValue.ts

+22-2
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,27 @@ export interface TreeNodeValueOptions extends ParseSegmentOptions {
209209
* structure (e.g. `index`, ``, or `users/[id]`). In `path` format, routes are expected in the format of vue-router
210210
* (e.g. `/` or '/users/:id' ).
211211
*
212-
* @default 'file'
212+
* @default `'file'`
213213
*/
214214
format?: 'file' | 'path'
215215
}
216216

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+
217233
/**
218234
* Creates a new TreeNodeValue based on the segment. The result can be a static segment or a param segment.
219235
*
@@ -224,12 +240,15 @@ export interface TreeNodeValueOptions extends ParseSegmentOptions {
224240
export function createTreeNodeValue(
225241
segment: string,
226242
parent?: TreeNodeValue,
227-
options: TreeNodeValueOptions = {}
243+
opts: TreeNodeValueOptions = {}
228244
): TreeNodeValue {
229245
if (!segment || segment === 'index') {
230246
return new TreeNodeValueStatic(segment, parent, '')
231247
}
232248

249+
// ensure default options
250+
const options = resolveTreeNodeValueOptions(opts)
251+
233252
const [pathSegment, params, subSegments] =
234253
options.format === 'path'
235254
? parseRawPathSegment(segment)
@@ -264,6 +283,7 @@ export interface ParseSegmentOptions {
264283
/**
265284
* Should we allow dot nesting in the param name. e.g. `users.[id]` will be parsed as `users/[id]` if this is `true`,
266285
* nesting. Note this only works for the `file` format.
286+
*
267287
* @default `true`
268288
*/
269289
dotNesting?: boolean

0 commit comments

Comments
 (0)