forked from hasura/auth-ui-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.js
124 lines (120 loc) · 4.57 KB
/
Main.js
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
import React, { Component } from 'react';
// import {Route, Redirect, Switch, BrowserRouter as Router} from "react-router-dom";
import { Route, Switch, BrowserRouter as Router } from 'react-router-dom';
import Home from './Home';
import Username from './Username';
import Email from './Email';
import Mobile from './Mobile';
import MobileOtp from './MobileOtp';
import ForgotPasswordEmail from './ForgotPasswordEmail';
import ResetPassword from './ResetPassword';
import VerifyEmail from './VerifyEmail';
// import globals from './globals';
import SignUpHome from './SignUpHome';
import SignUpUsername from './SignUpUsername';
import SignUpEmail from './SignUpEmail';
import SignUpMobile from './SignUpMobile';
import SignUpMobileOtp from './SignUpMobileOtp';
import FacebookLogin from './FacebookLogin';
import GoogleLogin from './GoogleLogin';
import GithubLogin from './GithubLogin';
import LinkedinLogin from './LinkedinLogin';
import Restricted from './Restricted';
import Logout from './Logout';
import NotFound from './NotFound';
class Main extends Component {
render() {
/*
let activeProvider = null;
if (globals.username) {
activeProvider = 'username'
} else if (globals.email) {
activeProvider = 'email';
} else if (globals.mobilePass) {
activeProvider = 'mobile';
} else if (globals.mobileOtp) {
activeProvider = 'mobile-otp';
}
const signinRedirectUrl = "/ui/login/" + activeProvider;
const signupRedirectUrl = "/ui/signup/" + activeProvider;
*/
return (
<Router>
<div>
<div className="content">
<Switch>
{/*
<Route exact path="/ui" render={(props) => (
// check if only one provider is enabled. and redirect accordingly.
(globals.username?1:0)+(globals.email?1:0)+(globals.mobilePass?1:0)+(globals.mobileOtp?1:0) === 1
? (
<Redirect to={signinRedirectUrl}/>
) : (
<Home location={props.location} />
)
)} />
*/}
<Route exact path="/ui" component={Home} />
<Route exact path="/ui/login" component={Home} />
<Route exact path="/ui/login/username" component={Username} />
<Route exact path="/ui/login/email" component={Email} />
<Route exact path="/ui/login/mobile" component={Mobile} />
<Route exact path="/ui/login/mobile-otp" component={MobileOtp} />
<Route
exact
path="/ui/forgot-password"
component={ForgotPasswordEmail}
/>
<Route
exact
path="/ui/reset-password"
component={ResetPassword}
/>
<Route exact path="/ui/verify-email" component={VerifyEmail} />
<Route exact path="/ui/signup" component={SignUpHome} />
{/*
<Route exact path="/ui/signup" render={(props) => (
// check if only one provider is enabled. and redirect accordingly.
(globals.username?1:0)+(globals.email?1:0)+(globals.mobilePass?1:0)+(globals.mobileOtp?1:0) === 1
? (
<Redirect to={signupRedirectUrl} location={props.location} />
) : (
<SignUpHome location={props.location} />
)
)}/>
*/}
<Route
exact
path="/ui/signup/username"
component={SignUpUsername}
/>
<Route exact path="/ui/signup/email" component={SignUpEmail} />
<Route exact path="/ui/signup/mobile" component={SignUpMobile} />
<Route
exact
path="/ui/signup/mobile-otp"
component={SignUpMobileOtp}
/>
<Route exact path="/ui/restricted" component={Restricted} />
<Route
exact
path="/ui/facebook-response"
component={FacebookLogin}
/>
<Route exact path="/ui/google-response" component={GoogleLogin} />
<Route exact path="/ui/github-response" component={GithubLogin} />
<Route
exact
path="/ui/linkedin-response"
component={LinkedinLogin}
/>
<Route exact path="/ui/logout" component={Logout} />
<Route component={NotFound} status={404} />
</Switch>
</div>
</div>
</Router>
);
}
}
export default Main;