import {Component, Fragment} from 'react'; import type {RouteComponentProps} from 'react-router'; import styled from '@emotion/styled'; import type {Client} from 'sentry/api'; import {Alert} from 'sentry/components/alert'; import {Button} from 'sentry/components/button'; import LoadingError from 'sentry/components/loadingError'; import LoadingIndicator from 'sentry/components/loadingIndicator'; import NavTabs from 'sentry/components/navTabs'; import {t, tct} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import type {AuthConfig} from 'sentry/types'; import withApi from 'sentry/utils/withApi'; import LoginForm from './loginForm'; import RegisterForm from './registerForm'; import SsoForm from './ssoForm'; const FORM_COMPONENTS = { login: LoginForm, register: RegisterForm, sso: SsoForm, } as const; type ActiveTab = keyof typeof FORM_COMPONENTS; type TabConfig = [key: ActiveTab, label: string, disabled?: boolean]; type Props = RouteComponentProps<{orgId?: string}, {}> & { api: Client; }; type State = { activeTab: ActiveTab; authConfig: null | AuthConfig; error: null | boolean; loading: boolean; }; class Login extends Component { state: State = { loading: true, error: null, activeTab: 'login', authConfig: null, }; componentDidMount() { this.fetchData(); } handleSetTab = (activeTab: ActiveTab, event: React.MouseEvent) => { this.setState({activeTab}); event.preventDefault(); }; fetchData = async () => { const {api} = this.props; try { const response = await api.requestPromise('/auth/config/'); const {vsts_login_link, github_login_link, google_login_link, ...config} = response; const authConfig = { ...config, vstsLoginLink: vsts_login_link, githubLoginLink: github_login_link, googleLoginLink: google_login_link, }; this.setState({authConfig}); } catch (e) { this.setState({error: true}); } this.setState({loading: false}); }; get hasAuthProviders() { if (this.state.authConfig === null) { return false; } const {githubLoginLink, googleLoginLink, vstsLoginLink} = this.state.authConfig; return !!(githubLoginLink || vstsLoginLink || googleLoginLink); } render() { const {loading, error, activeTab, authConfig} = this.state; const FormComponent = FORM_COMPONENTS[activeTab]; const tabs: TabConfig[] = [ ['login', t('Login')], ['sso', t('Single Sign-On')], ['register', t('Register'), !authConfig?.canRegister], ]; const renderTab = ([key, label, disabled]: TabConfig) => !disabled && (
  • this.handleSetTab(key, e)}> {label}
  • ); const {orgId} = this.props.params; return (
    {t('Sign in to continue')} {tabs.map(renderTab)}
    {loading && } {error && ( )} {!loading && authConfig !== null && !error && ( {orgId !== undefined && ( Reload } > {tct( "Experimental SPA mode does not currently support SSO style login. To develop against the [org] you'll need to copy your production session cookie.", {org: this.props.params.orgId} )} )} )}
    ); } } const StyledLoadingError = styled(LoadingError)` margin: ${space(2)}; `; const Header = styled('div')` border-bottom: 1px solid ${p => p.theme.border}; padding: 20px 40px 0; `; const Heading = styled('h3')` font-size: 24px; margin: 0 0 20px 0; `; const AuthNavTabs = styled(NavTabs)` margin: 0; `; const FormWrapper = styled('div')<{hasAuthProviders: boolean}>` padding: 35px; width: ${p => (p.hasAuthProviders ? '600px' : '490px')}; `; export default withApi(Login);