mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
878 B
48 lines
878 B
import { acceptHMRUpdate, defineStore } from 'pinia' |
|
|
|
export const useUsers = defineStore('userStore', () => { |
|
const { api } = useApi() |
|
const { user } = useGlobal() |
|
const { loadRoles } = useRoles() |
|
|
|
const updateUserProfile = async ({ |
|
attrs, |
|
}: { |
|
attrs: { |
|
display_name?: string |
|
} |
|
}) => { |
|
if (!user.value) throw new Error('User is not defined') |
|
|
|
await api.userProfile.update(attrs) |
|
|
|
user.value = { |
|
...user.value, |
|
...attrs, |
|
} |
|
} |
|
|
|
const loadCurrentUser = loadRoles |
|
|
|
watch( |
|
() => user.value?.id, |
|
(newId, oldId) => { |
|
if (!newId) return |
|
if (newId === oldId) return |
|
|
|
loadCurrentUser() |
|
}, |
|
{ |
|
immediate: true, |
|
}, |
|
) |
|
|
|
return { |
|
loadCurrentUser, |
|
updateUserProfile, |
|
} |
|
}) |
|
|
|
if (import.meta.hot) { |
|
import.meta.hot.accept(acceptHMRUpdate(useUsers as any, import.meta.hot)) |
|
}
|
|
|