Move instances of Client.verifyEmail() in components to an action (#5166)

Этот коммит содержится в:
Carlos Tadeu Panato Junior
2017-01-24 09:45:52 +01:00
коммит произвёл George Goldberg
родитель 58b3c76c94
Коммит 1e5354cff3
2 изменённых файлов: 23 добавлений и 9 удалений

Просмотреть файл

@@ -561,3 +561,20 @@ export function updatePassword(userId, currentPassword, newPassword, success, er
}
);
}
export function verifyEmail(uid, hid, success, error) {
Client.verifyEmail(
uid,
hid,
(data) => {
if (success) {
success(data);
}
},
(err) => {
if (error) {
error(err);
}
}
);
}

Просмотреть файл

@@ -2,11 +2,12 @@
// See License.txt for license information.
import {FormattedMessage} from 'react-intl';
import Client from 'client/web_client.jsx';
import LoadingScreen from './loading_screen.jsx';
import {browserHistory, Link} from 'react-router/es6';
import {verifyEmail} from 'actions/user_actions.jsx';
import React from 'react';
export default class DoVerifyEmail extends React.Component {
@@ -19,15 +20,11 @@ export default class DoVerifyEmail extends React.Component {
};
}
componentWillMount() {
const uid = this.props.location.query.uid;
const hid = this.props.location.query.hid;
const email = this.props.location.query.email;
Client.verifyEmail(
uid,
hid,
verifyEmail(
this.props.location.query.uid,
this.props.location.query.hid,
() => {
browserHistory.push('/login?extra=verified&email=' + email);
browserHistory.push('/login?extra=verified&email=' + this.props.location.query.email);
},
(err) => {
this.setState({verifyStatus: 'failure', serverError: err.message});