Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import { getCurrentUser } from 'calypso/state/current-user/selectors';
import SecurityCheckupNavigationItem from './navigation-item';
class SecurityCheckupSocialLogins extends Component {
static propTypes = {
socialConnectionCount: PropTypes.number.isRequired,
translate: PropTypes.func.isRequired,
};
render() {
const { socialConnectionCount, translate } = this.props;
let description;
if ( socialConnectionCount === 0 ) {
description = translate( 'You do not have any social logins enabled.' );
} else {
description = translate(
'You have {{strong}}%(socialLoginCount)d social login enabled{{/strong}}.',
'You have {{strong}}%(socialLoginCount)d social logins enabled{{/strong}}.',
{
count: socialConnectionCount,
args: {
socialLoginCount: socialConnectionCount,
},
components: {
strong: <strong />,
},
}
);
}
return (
<SecurityCheckupNavigationItem
description={ description }
materialIcon="person"
path="/me/security/social-login"
text={ translate( 'Social Logins' ) }
/>
);
}
}
export default connect( ( state ) => {
const currentUser = getCurrentUser( state );
const connections = currentUser.social_login_connections || [];
return {
socialConnectionCount: connections.length,
};
} )( localize( SecurityCheckupSocialLogins ) );