1
0
Fork 0
mirror of synced 2024-09-08 21:51:58 +12:00

Use store

This commit is contained in:
Adria Navarro 2023-12-15 13:37:22 +01:00
parent bfd52b6c50
commit 8515221cdf
2 changed files with 13 additions and 19 deletions

View file

@ -52,7 +52,7 @@ export const API = createAPIClient({
return return
} }
navigation.actions.goTo( get(navigation).goto(
`${updatingUrl}?returnUrl=${encodeURIComponent(window.location)}` `${updatingUrl}?returnUrl=${encodeURIComponent(window.location)}`
) )
}, },

View file

@ -1,33 +1,27 @@
import { writable } from "svelte/store" import { writable } from "svelte/store"
export function createNavigationStore() { export function createNavigationStore() {
const { subscribe } = writable([]) const store = writable({
initialisated: false,
goto: undefined,
})
const { set, subscribe, get } = store
let initialisated = false const init = gotoFunc => {
let _goTo if (typeof gotoFunc !== "function") {
throw new Error('A valid "gotoFunc" must be provided')
const init = goToFunc => {
initialisated = true
if (typeof goToFunc !== "function") {
throw new Error('A valid "goToFunc" must be provided')
} }
_goTo = goToFunc set({
} initialisated: true,
goto: gotoFunc,
const goTo = (...params) => { })
if (!initialisated) {
throw new Error("You need to call navigation.init first")
}
_goTo(...params)
} }
return { return {
subscribe, subscribe,
actions: { actions: {
init, init,
goTo,
}, },
} }
} }