mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
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.
50 lines
1.1 KiB
50 lines
1.1 KiB
export const state = () => ({
|
|
username: null,
|
|
isAuthenticated: false
|
|
})
|
|
|
|
export const mutations = {
|
|
setUsername(state, username) {
|
|
state.username = username
|
|
},
|
|
clearUsername(state) {
|
|
state.username = null
|
|
},
|
|
setAuthenticated(state, isAuthenticated) {
|
|
state.isAuthenticated = isAuthenticated
|
|
}
|
|
}
|
|
|
|
export const getters = {
|
|
isAuthenticated(state) {
|
|
return state.isAuthenticated
|
|
},
|
|
getUsername(state) {
|
|
return state.username
|
|
}
|
|
}
|
|
|
|
export const actions = {
|
|
async authenticateUser({ commit }, authData) {
|
|
try {
|
|
await this.$services.auth.login(authData.username, authData.password)
|
|
commit('setAuthenticated', true)
|
|
} catch(error) {
|
|
throw new Error('The credential is invalid')
|
|
}
|
|
},
|
|
async initAuth({ commit }) {
|
|
try {
|
|
const user = await this.$services.user.getMyProfile()
|
|
commit('setAuthenticated', true)
|
|
commit('setUsername', user.username)
|
|
} catch {
|
|
commit('setAuthenticated', false)
|
|
}
|
|
},
|
|
async logout({ commit }) {
|
|
await this.$services.auth.logout()
|
|
commit('setAuthenticated', false)
|
|
commit('clearUsername')
|
|
}
|
|
}
|