Vulcan/packages/vulcan-accounts/imports/ui/components/PasswordOrService.jsx
Justin Reynolds 75b6ece0a4 Fix linting
2018-01-25 15:03:03 -06:00

37 lines
No EOL
1.1 KiB
JavaScript
Executable file

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { hasPasswordService } from '../../helpers.js';
import { registerComponent } from 'meteor/vulcan:core';
import { intlShape } from 'meteor/vulcan:i18n';
export class AccountsPasswordOrService extends PureComponent {
render () {
let { className = "password-or-service", style = {} } = this.props;
const services = Object.keys(this.props.oauthServices).map(service => {
return this.props.oauthServices[service].label;
});
let labels = services;
if (services.length > 2) {
labels = [];
}
if (hasPasswordService() && services.length > 0) {
return (
<div style={style} className={className}>
{ `${this.context.intl.formatMessage({id: 'accounts.or_use'})} ${ labels.join(' / ') }` }
</div>
);
}
return null;
}
}
AccountsPasswordOrService.propTypes = {
oauthServices: PropTypes.object
};
AccountsPasswordOrService.contextTypes = {
intl: intlShape
};
registerComponent('AccountsPasswordOrService', AccountsPasswordOrService);