File size: 2,720 Bytes
1e92f2d |
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 |
import { Card } from '@automattic/components';
import clsx from 'clsx';
import PropTypes from 'prop-types';
import { Component } from 'react';
import {
GoogleSocialButton,
AppleLoginButton,
GithubSocialButton,
MagicLoginButton,
QrCodeLoginButton,
UsernameOrEmailButton,
} from 'calypso/components/social-buttons';
import './social.scss';
class SocialLoginForm extends Component {
static propTypes = {
handleLogin: PropTypes.func.isRequired,
trackLoginAndRememberRedirect: PropTypes.func.isRequired,
socialServiceResponse: PropTypes.object,
magicLoginLink: PropTypes.string,
qrLoginLink: PropTypes.string,
isSocialFirst: PropTypes.bool,
lastUsedAuthenticationMethod: PropTypes.string,
resetLastUsedAuthenticationMethod: PropTypes.func,
isJetpack: PropTypes.bool,
};
socialLoginButtons = [
{
service: 'google',
button: (
<GoogleSocialButton
responseHandler={ this.props.handleLogin }
onClick={ this.props.trackLoginAndRememberRedirect }
key={ 1 }
isLogin
/>
),
},
{
service: 'apple',
button: (
<AppleLoginButton
responseHandler={ this.props.handleLogin }
onClick={ this.props.trackLoginAndRememberRedirect }
socialServiceResponse={ this.props.socialServiceResponse }
key={ 2 }
isLogin
/>
),
},
{
service: 'github',
button: (
<GithubSocialButton
responseHandler={ this.props.handleLogin }
onClick={ this.props.trackLoginAndRememberRedirect }
socialServiceResponse={ this.props.socialServiceResponse }
key={ 3 }
isLogin
/>
),
},
{
service: 'magic-login',
button: this.props.isSocialFirst && this.props.magicLoginLink && (
<MagicLoginButton
loginUrl={ this.props.magicLoginLink }
key={ 4 }
isJetpack={ this.props.isJetpack }
/>
),
},
{
service: 'qr-code',
button: this.props.isSocialFirst && this.props.qrLoginLink && (
<QrCodeLoginButton loginUrl={ this.props.qrLoginLink } key={ 5 } />
),
},
];
render() {
const { isSocialFirst, lastUsedAuthenticationMethod } = this.props;
return (
<Card
className={ clsx( 'auth-form__social', 'is-login', { 'is-social-first': isSocialFirst } ) }
>
<div className="auth-form__social-buttons">
<div className="auth-form__social-buttons-container">
{ this.socialLoginButtons.map( ( { service, button }, index ) =>
isSocialFirst && service === lastUsedAuthenticationMethod ? (
<UsernameOrEmailButton
key={ index + 1 }
onClick={ this.props.resetLastUsedAuthenticationMethod }
/>
) : (
button
)
) }
</div>
</div>
</Card>
);
}
}
export default SocialLoginForm;
|