|
|
|
import type { Actions, AppInfo, State } from './types'
|
|
|
|
import { message, useNuxtApp } from '#imports'
|
|
|
|
|
|
|
|
export function useGlobalActions(state: State): Actions {
|
|
|
|
const setIsMobileMode = (isMobileMode: boolean) => {
|
|
|
|
state.isMobileMode.value = isMobileMode
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Sign out by deleting the token from localStorage */
|
|
|
|
const signOut: Actions['signOut'] = async () => {
|
|
|
|
state.token.value = null
|
|
|
|
state.user.value = null
|
|
|
|
try {
|
|
|
|
const nuxtApp = useNuxtApp()
|
|
|
|
await nuxtApp.$api.auth.signout()
|
|
|
|
} catch {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Sign in by setting the token in localStorage */
|
|
|
|
const signIn: Actions['signIn'] = async (newToken) => {
|
|
|
|
state.token.value = newToken
|
|
|
|
|
|
|
|
if (state.jwtPayload.value) {
|
|
|
|
state.user.value = {
|
|
|
|
id: state.jwtPayload.value.id,
|
|
|
|
email: state.jwtPayload.value.email,
|
|
|
|
firstname: state.jwtPayload.value.firstname,
|
|
|
|
lastname: state.jwtPayload.value.lastname,
|
|
|
|
roles: state.jwtPayload.value.roles,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** manually try to refresh token */
|
|
|
|
const refreshToken = async () => {
|
|
|
|
const nuxtApp = useNuxtApp()
|
|
|
|
const t = nuxtApp.vueApp.i18n.global.t
|
|
|
|
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
nuxtApp.$api.instance
|
|
|
|
.post('/auth/token/refresh', null, {
|
|
|
|
withCredentials: true,
|
|
|
|
})
|
|
|
|
.then((response) => {
|
|
|
|
if (response.data?.token) {
|
|
|
|
signIn(response.data.token)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(async () => {
|
|
|
|
if (state.token.value && state.user.value) {
|
|
|
|
await signOut()
|
|
|
|
message.error(t('msg.error.youHaveBeenSignedOut'))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.finally(() => resolve(true))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
const loadAppInfo = async () => {
|
|
|
|
try {
|
|
|
|
const nuxtApp = useNuxtApp()
|
|
|
|
state.appInfo.value = (await nuxtApp.$api.utils.appInfo()) as AppInfo
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return { signIn, signOut, refreshToken, loadAppInfo, setIsMobileMode }
|
|
|
|
}
|