1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00

Update log out handling to work better, and add support for navigating to a return URL

This commit is contained in:
Andrew Kingston 2022-01-19 11:22:27 +00:00
parent 5b3b1d82d4
commit 8b976bed52
4 changed files with 41 additions and 4 deletions

View file

@ -18,6 +18,15 @@ export const logIn = async ({ email, password }) => {
})
}
/**
* Logs the user out and invaidates their session.
*/
export const logOut = async () => {
return await API.post({
url: "/api/global/auth/logout",
})
}
/**
* Fetches the currently logged in user object
*/

View file

@ -1,5 +1,6 @@
import * as API from "../api"
import { writable } from "svelte/store"
import { initialise } from "./initialise.js"
const createAuthStore = () => {
const store = writable(null)
@ -11,8 +12,14 @@ const createAuthStore = () => {
}
const logOut = async () => {
try {
await API.logOut()
} catch (error) {
// Do nothing
}
// Manually destroy cookie to be sure
window.document.cookie = `budibase:auth=; budibase:currentapp=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;`
window.location = "/builder/auth/login"
}
return {

View file

@ -18,8 +18,8 @@ const createRouteStore = () => {
const fetchRoutes = async () => {
const routeConfig = await API.fetchRoutes()
let routes = []
Object.values(routeConfig.routes).forEach(route => {
Object.entries(route.subpaths).forEach(([path, config]) => {
Object.values(routeConfig.routes || {}).forEach(route => {
Object.entries(route.subpaths || {}).forEach(([path, config]) => {
routes.push({
path,
screenId: config.screenId,
@ -83,12 +83,23 @@ const createRouteStore = () => {
const setRouterLoaded = () => {
store.update(state => ({ ...state, routerLoaded: true }))
}
const createFullURL = relativeURL => {
if (!relativeURL?.startsWith("/")) {
return relativeURL
}
if (!window.location.href.includes("#")) {
return `${window.location.href}#${relativeURL}`
}
const base = window.location.href.split("#")[0]
return `${base}#${relativeURL}`
}
return {
subscribe: store.subscribe,
actions: {
fetchRoutes,
navigate,
createFullURL,
setRouteParams,
setQueryParams,
setActiveRoute,

View file

@ -112,8 +112,18 @@ const refreshDataProviderHandler = async (action, context) => {
)
}
const logoutHandler = async () => {
const logoutHandler = async action => {
await authStore.actions.logOut()
let returnUrl = "/builder/auth/login"
let internal = false
if (action.parameters.returnUrl) {
internal = action.parameters.returnUrl?.startsWith("/")
returnUrl = routeStore.actions.createFullURL(action.parameters.returnUrl)
}
window.location.href = returnUrl
if (internal) {
window.location.reload()
}
}
const clearFormHandler = async (action, context) => {