accounts-frontend/src/components/user/actions.js

107 lines
2.5 KiB
JavaScript
Raw Normal View History

2016-05-01 16:01:40 +05:30
import { routeActions } from 'react-router-redux';
2016-02-26 11:55:47 +05:30
import request from 'services/request';
import accounts from 'services/api/accounts';
2016-05-20 01:11:43 +05:30
import { setLocale } from 'components/i18n/actions';
2016-02-26 11:55:47 +05:30
export const UPDATE = 'USER_UPDATE';
/**
* @param {string|Object} payload jwt token or user object
* @return {Object} action definition
*/
export function updateUser(payload) {
return {
type: UPDATE,
payload
};
}
2016-05-20 01:11:43 +05:30
export const CHANGE_LANG = 'USER_CHANGE_LANG';
export function changeLang(lang) {
return (dispatch, getState) => dispatch(setLocale(lang))
.then((lang) => {
const {user: {isGuest, lang: oldLang}} = getState();
if (!isGuest && oldLang !== lang) {
accounts.changeLang(lang);
}
dispatch({
type: CHANGE_LANG,
payload: {
lang
}
});
});
}
export const SET = 'USER_SET';
export function setUser(payload) {
return {
type: SET,
payload
};
}
export function logout() {
2016-05-01 16:01:40 +05:30
return (dispatch) => {
dispatch(setUser({isGuest: true}));
2016-05-20 01:11:43 +05:30
dispatch(changeLang());
2016-05-01 16:01:40 +05:30
dispatch(routeActions.push('/login'));
};
}
2016-02-26 11:55:47 +05:30
export function fetchUserData() {
return (dispatch) =>
accounts.current()
2016-02-26 11:55:47 +05:30
.then((resp) => {
dispatch(updateUser(resp));
2016-05-20 01:11:43 +05:30
return dispatch(changeLang(resp.lang));
2016-02-26 11:55:47 +05:30
})
.catch((resp) => {
/*
{
"name": "Unauthorized",
"message": "You are requesting with an invalid credential.",
"code": 0,
"status": 401,
"type": "yii\\web\\UnauthorizedHttpException"
}
*/
console.log(resp);
});
}
export function changePassword({
password = '',
newPassword = '',
newRePassword = '',
logoutAll = true,
}) {
return (dispatch) =>
accounts.changePassword(
{password, newPassword, newRePassword, logoutAll}
)
.then((resp) => {
dispatch(updateUser({
shouldChangePassword: false
}));
return resp;
})
;
}
export function authenticate(token) {
if (!token || token.split('.').length !== 3) {
throw new Error('Invalid token');
}
return (dispatch) => {
request.setAuthToken(token);
2016-03-02 02:06:14 +05:30
return dispatch(fetchUserData());
};
}