felicity-lims/webapp/stores/auth.ts
2023-07-25 17:22:31 +02:00

103 lines
3 KiB
TypeScript

import { defineStore } from 'pinia';
import { ref, watch } from 'vue';
import { useRouter } from 'vue-router';
import { IUser } from '../models/auth';
import { STORAGE_AUTH_KEY, USER_GROUP_OVERRIDE } from '../conf';
import { AUTHENTICATE_USER } from '../graphql/_mutations';
import { useNotifyToast, useApiUtil, userPreferenceComposable } from '../composables';
const { withClientMutation } = useApiUtil();
const { toastInfo } = useNotifyToast();
const { initPreferences } = userPreferenceComposable();
interface IAuth {
token?: string;
tokenType?: string;
user?: IUser;
isAuthenticated: boolean;
authenticating: boolean;
}
export const useAuthStore = defineStore('auth', () => {
const initialState: IAuth = {
user: undefined,
token: '',
tokenType: '',
isAuthenticated: false,
authenticating: false,
};
const auth = ref({ ...initialState });
const resetState = () => (auth.value = { ...initialState });
const reset = () => {
localStorage.removeItem(STORAGE_AUTH_KEY);
resetState();
};
const logout = () => {
toastInfo('Good bye ' + auth.value.user?.firstName);
reset();
};
const upsertPermission = () => {
if (USER_GROUP_OVERRIDE.length > 0) {
auth.value.user?.groups?.forEach(group => ({
...group,
name: USER_GROUP_OVERRIDE,
}));
}
};
if (localStorage.getItem(STORAGE_AUTH_KEY)) {
const data = JSON.parse(localStorage.getItem(STORAGE_AUTH_KEY)!);
auth.value = {
...auth.value,
...data,
isAuthenticated: true,
authenticating: false,
};
upsertPermission();
} else {
// logout()
}
watch(auth, authValue => {
if (authValue && authValue.user && authValue.token) {
localStorage.setItem(STORAGE_AUTH_KEY, JSON.stringify(authValue));
upsertPermission();
}
});
const persistAuth = async data => {
auth.value = data;
auth.value.isAuthenticated = true;
auth.value.authenticating = false;
};
const router = useRouter()
const authenticate = async payload => {
auth.value.authenticating = true;
await withClientMutation(AUTHENTICATE_USER, payload, 'authenticateUser')
.then(res => {
if(!res) {
auth.value.authenticating = false;
return
};
toastInfo('Welcome back ' + res?.user?.firstName);
initPreferences(res.user?.preference);
persistAuth(res);
router.push({ name: "DASHBOARD" });
})
.catch(err => (auth.value.authenticating = false));
};
return {
auth,
authenticate,
reset,
persistAuth,
logout,
};
});