1
0
Fork 0
mirror of synced 2024-07-03 21:40:55 +12:00

Improve handling of routes and screens. Fix issue which could prevent logging in depending on order of screens in app definition

This commit is contained in:
Andrew Kingston 2020-12-08 10:15:33 +00:00
parent 88e6da5e49
commit 5130bdf3cd
3 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@
"version": "0.3.8",
"license": "MPL-2.0",
"main": "dist/budibase-client.js",
"module": "dist/budibase-client.esm.mjs",
"module": "dist/budibase-client.js",
"scripts": {
"build": "rollup -c",
"dev:builder": "rollup -cw"

View file

@ -34,7 +34,7 @@ const createRouteStore = () => {
}
const setActiveRoute = route => {
store.update(state => {
state.activeRoute = route
state.activeRoute = state.routes.find(x => x.path === route)
return state
})
}

View file

@ -24,9 +24,9 @@ const createScreenStore = () => {
activeLayout = layouts[0]
if (screens.length === 1) {
activeScreen = screens[0]
} else {
} else if ($routeStore.activeRoute) {
activeScreen = screens.find(
screen => screen.routing.route === $routeStore.activeRoute
screen => screen._id === $routeStore.activeRoute.screenId
)
}
if (activeScreen) {