Skip to content

Commit e9e55e9

Browse files
refactor: rearrange $goto and types
1 parent 944616e commit e9e55e9

File tree

1 file changed

+35
-34
lines changed

1 file changed

+35
-34
lines changed

lib/runtime/helpers/index.js

+35-34
Original file line numberDiff line numberDiff line change
@@ -35,33 +35,6 @@ export const getPath = (node1, node2) => {
3535
return backtrackStr + forwardStepsStr
3636
}
3737

38-
/**
39-
* @callback Goto
40-
* @param {string|RNodeRuntime} pathOrNode relative, absolute or named URL
41-
* @param {Object.<string, string>=} userParams
42-
* @param {Partial<$UrlOptions & RouteState>=} options
43-
* @type {Readable<Goto>} */
44-
export const goto = {
45-
subscribe: (run, invalidate) => {
46-
const { router } = contexts
47-
48-
return derived(url, $url =>
49-
/** @type {Goto} */
50-
(pathOrNode, userParams, options) => {
51-
const path =
52-
typeof pathOrNode === 'string' ? pathOrNode : pathOrNode?.path
53-
54-
/** @type {options} */
55-
const defaults = { mode: 'push', state: {} }
56-
options = { ...defaults, ...options }
57-
const newUrl = $url(path, userParams, options)
58-
router.url[options.mode](newUrl, options.state)
59-
return ''
60-
},
61-
).subscribe(run, invalidate)
62-
},
63-
}
64-
6538
/**
6639
* @template T
6740
* @typedef {import('svelte/store').Readable<T>} Readable
@@ -90,6 +63,33 @@ export const goto = {
9063
* }>} RouteState
9164
*/
9265

66+
/**
67+
* @callback Goto
68+
* @param {string|RNodeRuntime} pathOrNode relative, absolute or named URL
69+
* @param {Object.<string, string>=} userParams
70+
* @param {Partial<$UrlOptions & RouteState>=} options
71+
* @type {Readable<Goto>} */
72+
export const goto = {
73+
subscribe: (run, invalidate) => {
74+
const { router } = contexts
75+
76+
return derived(url, $url =>
77+
/** @type {Goto} */
78+
(pathOrNode, userParams, options) => {
79+
const path =
80+
typeof pathOrNode === 'string' ? pathOrNode : pathOrNode?.path
81+
82+
/** @type {options} */
83+
const defaults = { mode: 'push', state: {} }
84+
options = { ...defaults, ...options }
85+
const newUrl = $url(path, userParams, options)
86+
router.url[options.mode](newUrl, options.state)
87+
return ''
88+
},
89+
).subscribe(run, invalidate)
90+
},
91+
}
92+
9393
/**
9494
* @typedef {(<T extends string | HTMLAnchorElement>(
9595
* inputPath: T,
@@ -98,13 +98,6 @@ export const goto = {
9898
* ) => T extends HTMLAnchorElement ? void : string)} Url
9999
*/
100100

101-
/**
102-
* @typedef {((
103-
* pathOrNode: string|RNodeRuntime,
104-
* userParams?: { [x: string]: string; },
105-
* options?: Partial<$UrlOptions>
106-
* ) => string)} UrlFromString
107-
*/
108101
/**
109102
* @type {Readable<Url>}
110103
*/
@@ -140,6 +133,14 @@ export const url = {
140133
},
141134
}
142135

136+
/**
137+
* @typedef {((
138+
* pathOrNode: string|RNodeRuntime,
139+
* userParams?: { [x: string]: string; },
140+
* options?: Partial<$UrlOptions>
141+
* ) => string)} UrlFromString
142+
*/
143+
143144
/**
144145
* @param {RouteFragment} fragment
145146
* @param {Router} router

0 commit comments

Comments
 (0)