PLT-7 client side infra for loc

Этот коммит содержится в:
=Corey Hulen
2016-01-24 20:48:31 -06:00
родитель 1dfd8c78c9
Коммит 056fdec301
8 изменённых файлов: 478 добавлений и 81 удалений

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

@@ -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')
);
};