summaryrefslogtreecommitdiffstats
path: root/web/react/components/signup_team.jsx
blob: f926f5cbba37357c6f8d5759794e2d2281f7317e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

const ChoosePage = require('./team_signup_choose_auth.jsx');
const EmailSignUpPage = require('./team_signup_with_email.jsx');
const SSOSignupPage = require('./team_signup_with_sso.jsx');
const Constants = require('../utils/constants.jsx');

export default class TeamSignUp extends React.Component {
    constructor(props) {
        super(props);

        this.updatePage = this.updatePage.bind(this);

        if (global.window.mm_config.EnableTeamListing === 'true') {
            this.state = {page: 'team_listing'};
            return;
        }

        var count = 0;

        if (global.window.mm_config.EnableSignUpWithEmail === 'true') {
            count = count + 1;
        }

        if (global.window.mm_config.EnableSignUpWithGitLab === 'true') {
            count = count + 1;
        }

        if (count > 1) {
            this.state = {page: 'choose'};
        } else if (global.window.mm_config.EnableSignUpWithEmail === 'true') {
            this.state = {page: 'email'};
        } else if (global.window.mm_config.EnableSignUpWithGitLab === 'true') {
            this.state = {page: 'gitlab'};
        }
    }

    updatePage(page) {
        this.setState({page});
    }

    render() {
        if (this.state.page === 'team_listing') {
            return (
                <div>
                    <h3>{'Choose a Team'}</h3>
                    <div className='signup-team-all'>
                        {
                            this.props.teams.map((team) => {
                                return (
                                    <div
                                        key={'team_' + team.name}
                                        className='signup-team-dir'
                                    >
                                        <a
                                            href={'/' + team.name}
                                        >
                                            <div className='signup-team-dir__group'>
                                                <span className='signup-team-dir__name'>{team.display_name}</span>
                                                <span
                                                    className='glyphicon glyphicon-menu-right right signup-team-dir__arrow'
                                                    aria-hidden='true'
                                                />
                                            </div>
                                        </a>
                                    </div>
                                );
                            })
                        }
                    </div>
                </div>
            );
        }

        if (this.state.page === 'choose') {
            return (
                <ChoosePage
                    updatePage={this.updatePage}
                />
            );
        }

        if (this.state.page === 'email') {
            return <EmailSignUpPage />;
        } else if (this.state.page === 'gitlab') {
            return <SSOSignupPage service={Constants.GITLAB_SERVICE} />;
        }
    }
}

TeamSignUp.propTypes = {
    teams: React.PropTypes.array
};