Move instances of Client.verifyEmail() in components to an action (#5166)
Этот коммит содержится в:
коммит произвёл
George Goldberg
родитель
58b3c76c94
Коммит
1e5354cff3
@@ -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});
|
||||
|
||||
Ссылка в новой задаче
Block a user