summaryrefslogtreecommitdiffstats
path: root/web/react/pages
diff options
context:
space:
mode:
authorElias Nahum <nahumhbl@gmail.com>2016-01-29 13:48:12 -0300
committerElias Nahum <nahumhbl@gmail.com>2016-01-29 13:50:48 -0300
commit6b7438b52fdaabe46cb298af1b325c3d8ece1af4 (patch)
tree886be79724c7ed55452986a32e8aeaf09407083b /web/react/pages
parent5c3fefe1a18a6b81de5d03802ee1a3f42161a38a (diff)
downloadchat-6b7438b52fdaabe46cb298af1b325c3d8ece1af4.tar.gz
chat-6b7438b52fdaabe46cb298af1b325c3d8ece1af4.tar.bz2
chat-6b7438b52fdaabe46cb298af1b325c3d8ece1af4.zip
PLT-7: Refactoring frontend (chunk 6)
- Authorize - Signup Team Confirm - Footer
Diffstat (limited to 'web/react/pages')
-rw-r--r--web/react/pages/signup_team_confirm.jsx67
1 files changed, 67 insertions, 0 deletions
diff --git a/web/react/pages/signup_team_confirm.jsx b/web/react/pages/signup_team_confirm.jsx
new file mode 100644
index 000000000..335be6a49
--- /dev/null
+++ b/web/react/pages/signup_team_confirm.jsx
@@ -0,0 +1,67 @@
+/**
+ * Created by enahum on 1/29/16.
+ */
+// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+import SignupTeamConfirm from '../components/signup_team_confirm.jsx';
+import * as Client from '../utils/client.jsx';
+
+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}
+ >
+ <SignupTeamConfirm
+ email={this.props.map.Email}
+ />
+ </IntlProvider>
+ );
+ }
+}
+
+global.window.setup_signup_team_confirm_page = function setup(props) {
+ ReactDOM.render(
+ <Root map={props} />,
+ document.getElementById('signup-team-confirm')
+ );
+}; \ No newline at end of file