1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

Merge pull request #2087 from Budibase/fix/log-out-action

Logout button handler
This commit is contained in:
Michael Drury 2021-07-26 10:24:59 +01:00 committed by GitHub
commit c3bf5b0a66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 4 deletions

View file

@ -6,8 +6,15 @@ const createAppStore = () => {
// Fetches the app definition including screens, layouts and theme
const fetchAppDefinition = async () => {
const appDefinition = await API.fetchAppPackage(get(store).appId)
store.set(appDefinition)
const appId = get(store)?.appId
if (!appId) {
throw "Cannot fetch app definition without app ID set"
}
const appDefinition = await API.fetchAppPackage(appId)
store.set({
...appDefinition,
appId: appDefinition?.application?.appId,
})
}
// Sets the initial app ID

View file

@ -10,9 +10,14 @@ const createAuthStore = () => {
store.set(user)
}
const logOut = async () => {
window.document.cookie = `budibase:auth=; budibase:currentapp=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;`
window.location = "/builder/auth/login"
}
return {
subscribe: store.subscribe,
actions: { fetchUser },
actions: { fetchUser, logOut },
}
}

View file

@ -1,5 +1,10 @@
import { get } from "svelte/store"
import { routeStore, builderStore, confirmationStore } from "../store"
import {
routeStore,
builderStore,
confirmationStore,
authStore,
} from "../store"
import { saveRow, deleteRow, executeQuery, triggerAutomation } from "../api"
import { ActionTypes } from "../constants"
@ -77,6 +82,10 @@ const refreshDatasourceHandler = async (action, context) => {
)
}
const logoutHandler = async () => {
await authStore.actions.logOut()
}
const handlerMap = {
["Save Row"]: saveRowHandler,
["Delete Row"]: deleteRowHandler,
@ -85,6 +94,7 @@ const handlerMap = {
["Trigger Automation"]: triggerAutomationHandler,
["Validate Form"]: validateFormHandler,
["Refresh Datasource"]: refreshDatasourceHandler,
["Log Out"]: logoutHandler,
}
const confirmTextMap = {