PLT-7 client side infra for loc
Этот коммит содержится в:
@@ -2,15 +2,66 @@
|
||||
// See License.txt for license information.
|
||||
|
||||
import EmailVerify from '../components/email_verify.jsx';
|
||||
import * as Client from '../utils/client.jsx';
|
||||
|
||||
global.window.setupVerifyPage = function setupVerifyPage(props) {
|
||||
var IntlProvider = ReactIntl.IntlProvider;
|
||||
|
||||
class Root extends React.Component {
|
||||
constructor() {
|
||||
super();
|
||||
this.state = {
|
||||
translations: null,
|
||||
loaded: false
|
||||
};
|
||||
}
|
||||
|
||||
static propTypes() {
|
||||
return {
|
||||
map: React.PropTypes.object.isRequired
|
||||
};
|
||||
}
|
||||
|
||||
componentWillMount() {
|
||||
Client.getTranslations(
|
||||
this.props.map.Locale,
|
||||
(data) => {
|
||||
this.setState({
|
||||
translations: data,
|
||||
loaded: true
|
||||
});
|
||||
},
|
||||
() => {
|
||||
this.setState({
|
||||
loaded: true
|
||||
});
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
render() {
|
||||
if (!this.state.loaded) {
|
||||
return <div></div>;
|
||||
}
|
||||
|
||||
return (
|
||||
<IntlProvider
|
||||
locale={this.props.map.Locale}
|
||||
messages={this.state.translations}
|
||||
>
|
||||
<EmailVerify
|
||||
isVerified={this.props.map.IsVerified}
|
||||
teamURL={this.props.map.TeamURL}
|
||||
userEmail={this.props.map.UserEmail}
|
||||
resendSuccess={this.props.map.ResendSuccess}
|
||||
/>
|
||||
</IntlProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
global.window.setupVerifyPage = function setup(props) {
|
||||
ReactDOM.render(
|
||||
<EmailVerify
|
||||
isVerified={props.IsVerified}
|
||||
teamURL={props.TeamURL}
|
||||
userEmail={props.UserEmail}
|
||||
resendSuccess={props.ResendSuccess}
|
||||
/>,
|
||||
<Root map={props} />,
|
||||
document.getElementById('verify')
|
||||
);
|
||||
};
|
||||
|
||||
Ссылка в новой задаче
Block a user