-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathLoginForm.js
More file actions
263 lines (226 loc) · 6.9 KB
/
LoginForm.js
File metadata and controls
263 lines (226 loc) · 6.9 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
import React from 'react';
import ReactMixin from 'react-mixin';
import { History, Link } from 'react-router';
import utils from '../utils';
import context from '../context';
import UserStore from '../stores/UserStore';
import UserActions from '../actions/UserActions';
import LoadingText from '../components/LoadingText';
import SocialLoginButton from '../components/SocialLoginButton';
class DefaultLoginForm extends React.Component {
state = {
fields: null,
socialProviders: null
};
componentDidMount() {
if (this.state.fields !== null) {
return;
}
var defaultFields = [
{
label: 'Username or Email',
name: 'login',
placeholder: 'Username or Email',
required: true,
type: 'text'
}, {
label: 'Password',
name: 'password',
placeholder: 'Password',
required: true,
type: 'password'
}
];
UserStore.getLoginViewData((err, data) => {
var fields = null;
var socialProviders = null;
if (err) {
fields = defaultFields;
} else if (data && data.form) {
fields = data.form.fields;
if (!this.props.hideSocial) {
data.accountStores.forEach((accountStore) => {
if (!accountStore.provider) {
return;
}
if (socialProviders === null) {
socialProviders = [];
}
socialProviders.push({
id: accountStore.provider.providerId
});
});
}
}
this.setState({
fields: fields,
socialProviders: socialProviders
});
});
}
render() {
var fieldMarkup = null;
if (this.state.fields !== null) {
fieldMarkup = [];
this.state.fields.forEach((field, index) => {
var fieldId = `sp-${field.name}-${index}`;
fieldMarkup.push(
<div key={ fieldId } className="form-group">
<label htmlFor={ fieldId } className="col-xs-12 col-sm-4 control-label">{ field.label }</label>
<div className="col-xs-12 col-sm-4">
<input type={ field.type } className="form-control" id={ fieldId } name={ field.name } placeholder={ field.placeholder } required={ field.required } />
</div>
</div>
);
});
fieldMarkup.push(
<div key="login-button" className="form-group">
<div className="col-sm-offset-4 col-sm-4">
<p className="alert alert-danger" spIf="form.error"><span spBind="form.errorMessage" /></p>
<button type="submit" className="btn btn-primary">Login</button>
<Link to="/forgot" className="pull-right">Forgot Password</Link>
</div>
</div>
);
}
if (this.state.socialProviders !== null) {
var providerButtons = [];
this.state.socialProviders.forEach((provider, index) => {
var providerKey = `sp-${provider.id}-${index}`;
providerButtons.push(
<SocialLoginButton key={ providerKey } providerId={ provider.id } style={{ marginRight: '5px', marginBottom: '5px' }} />
);
});
if (providerButtons.length) {
fieldMarkup.push(
<div key="provider-buttons" className="form-group" style={{ paddingTop: '20px' }}>
<div className="col-sm-offset-4 col-sm-4" style={{ marginBottom: '10px' }}>
Or sign in using...
</div>
<div className="col-sm-offset-4 col-sm-4">
{ providerButtons }
</div>
</div>
);
}
}
return (
<LoginForm {...this.props}>
<div className='sp-login-form'>
<div className="row">
<div className="col-xs-12">
<div className="form-horizontal">
{ fieldMarkup ? fieldMarkup : <LoadingText /> }
</div>
</div>
</div>
</div>
</LoginForm>
);
}
}
@ReactMixin.decorate(History)
export default class LoginForm extends React.Component {
state = {
fields: {
username: '',
password: '',
},
errorMessage: null,
isFormProcessing: false
};
onFormSubmit(e) {
e.preventDefault();
var next = (err, data) => {
if (err) {
return this.setState({
isFormProcessing: false,
errorMessage: err.message
});
}
// If the user didn't specify any data,
// then simply default to what we have in state.
data = data || this.state.fields;
UserActions.login({
username: data.username,
password: data.password
}, (err, result) => {
if (err) {
return this.setState({
isFormProcessing: false,
errorMessage: err.message
});
}
this._performRedirect();
});
};
this.setState({
isFormProcessing: true
});
if (this.props.onSubmit) {
e.data = this.state.fields;
this.props.onSubmit(e, next);
} else {
next(null, this.state.fields);
}
}
_performRedirect() {
var router = context.getRouter();
var homeRoute = router.getHomeRoute();
var logoutRoute = router.getLogoutRoute();
var authenticatedHomeRoute = router.getAuthenticatedHomeRoute();
var { location } = this.props;
var passthru = (location && location.state) ? location.state.nextPathname : null;
if ( passthru == ( logoutRoute || {} ).path ) passthru = null;
var redirectTo = this.props.redirectTo || passthru || (authenticatedHomeRoute || {}).path || (homeRoute || {}).path || '/';
this.history.pushState(null, redirectTo);
}
_mapFormFieldHandler(element, tryMapField) {
if (element.type === 'input' || element.type === 'textarea') {
if (element.props.type !== 'submit') {
switch(element.props.name) {
case 'login':
case 'username':
tryMapField('username');
break;
case 'password':
tryMapField('password');
break;
}
}
}
}
_spIfHandler(action, element) {
var test = null;
switch (action) {
case 'form.processing':
test = this.state.isFormProcessing;
break;
case 'form.error':
test = this.state.errorMessage !== null;
break;
}
return test;
}
_spBindHandler(bind, element) {
var result = false;
switch (bind) {
case 'form.errorMessage':
let className = element.props ? element.props.className : undefined;
result = <span className={className}>{this.state.errorMessage}</span>;
break;
}
return result;
}
render() {
if (this.props.children) {
return (
<form onSubmit={this.onFormSubmit.bind(this)}>
{utils.makeForm(this, this._mapFormFieldHandler.bind(this), this._spIfHandler.bind(this), this._spBindHandler.bind(this))}
</form>
);
} else {
return <DefaultLoginForm {...this.props} />;
}
}
}