| 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; | |