2016-10-28 03:03:14 +11:00
|
|
|
import apiService from '../services/api/api.service.js'
|
2016-10-28 23:26:51 +11:00
|
|
|
import timelineFetcher from '../services/timeline_fetcher/timeline_fetcher.service.js'
|
2016-10-28 03:03:14 +11:00
|
|
|
|
|
|
|
const users = {
|
|
|
|
state: {
|
|
|
|
currentUser: false,
|
|
|
|
loggingIn: false
|
|
|
|
},
|
|
|
|
mutations: {
|
|
|
|
setCurrentUser (state, user) {
|
|
|
|
state.currentUser = user
|
|
|
|
},
|
|
|
|
beginLogin (state) {
|
|
|
|
state.loggingIn = true
|
|
|
|
},
|
|
|
|
endLogin (state) {
|
|
|
|
state.loggingIn = false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
actions: {
|
2016-10-28 23:26:51 +11:00
|
|
|
loginUser (store, userCredentials) {
|
|
|
|
const commit = store.commit
|
2016-10-28 03:03:14 +11:00
|
|
|
commit('beginLogin')
|
2016-10-31 00:25:18 +11:00
|
|
|
return apiService.verifyCredentials(userCredentials)
|
2016-10-28 03:03:14 +11:00
|
|
|
.then((response) => {
|
|
|
|
if (response.ok) {
|
|
|
|
response.json()
|
|
|
|
.then((user) => commit('setCurrentUser', user))
|
2016-10-28 23:26:51 +11:00
|
|
|
.then(() => timelineFetcher.startFetching({store, credentials: userCredentials}))
|
2016-10-28 03:03:14 +11:00
|
|
|
}
|
|
|
|
commit('endLogin')
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
console.log(error)
|
|
|
|
commit('endLogin')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default users
|