summaryrefslogtreecommitdiffstats
path: root/webapp/components/team_signup_choose_auth.jsx
blob: 7a4ce972a487b048b404ab42e6688bbb0c9d1a8f (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import {FormattedMessage} from 'react-intl';

import React from 'react';

export default class ChooseAuthPage extends React.Component {
    constructor(props) {
        super(props);
        this.state = {};
    }
    render() {
        var buttons = [];
        if (global.window.mm_config.EnableSignUpWithGitLab === 'true') {
            buttons.push(
                    <a
                        className='btn btn-custom-login gitlab btn-full'
                        key='gitlab'
                        href='#'
                        onClick={
                            function clickGit(e) {
                                e.preventDefault();
                                this.props.updatePage('gitlab');
                            }.bind(this)
                        }
                    >
                        <span className='icon'/>
                        <span>
                            <FormattedMessage
                                id='choose_auth_page.gitlabCreate'
                                defaultMessage='Create new team with GitLab Account'
                            />
                        </span>
                    </a>
            );
        }

        if (global.window.mm_config.EnableSignUpWithGoogle === 'true') {
            buttons.push(
                    <a
                        className='btn btn-custom-login google btn-full'
                        key='google'
                        href='#'
                        onClick={
                            (e) => {
                                e.preventDefault();
                                this.props.updatePage('google');
                            }
                        }
                    >
                        <span className='icon'/>
                        <span>
                            <FormattedMessage
                                id='choose_auth_page.googleCreate'
                                defaultMessage='Create new team with Google Apps Account'
                            />
                        </span>
                    </a>
            );
        }

        if (global.window.mm_config.EnableLdap === 'true') {
            buttons.push(
                    <a
                        className='btn btn-custom-login ldap btn-full'
                        key='ldap'
                        href='#'
                        onClick={
                            (e) => {
                                e.preventDefault();
                                this.props.updatePage('ldap');
                            }
                        }
                    >
                        <span className='icon'/>
                        <span>
                            <FormattedMessage
                                id='choose_auth_page.ldapCreate'
                                defaultMessage='Create new team with LDAP Account'
                            />
                        </span>
                    </a>
            );
        }

        if (global.window.mm_config.EnableSignUpWithEmail === 'true') {
            buttons.push(
                    <a
                        className='btn btn-custom-login email btn-full'
                        key='email'
                        href='#'
                        onClick={
                            function clickEmail(e) {
                                e.preventDefault();
                                this.props.updatePage('email');
                            }.bind(this)
                        }
                    >
                        <span className='fa fa-envelope'/>
                        <span>
                            <FormattedMessage
                                id='choose_auth_page.emailCreate'
                                defaultMessage='Create new team with email address'
                            />
                        </span>
                    </a>
            );
        }

        if (buttons.length === 0) {
            buttons = (
                <span>
                    <FormattedMessage
                        id='choose_auth_page.noSignup'
                        defaultMessage='No sign-up methods configured, please contact your system administrator.'
                    />
                </span>
            );
        }

        return (
            <div>
                {buttons}
            </div>
        );
    }
}

ChooseAuthPage.propTypes = {
    updatePage: React.PropTypes.func
};