| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- import React, { Fragment } from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import { createSubscribedElement } from '../UnstatedUtils';
- import { toastError } from '../../util/apiNotification';
- import AppContainer from '../../services/AppContainer';
- import PersonalContainer from '../../services/PersonalContainer';
- import ExternalAccountRow from './ExternalAccountRow';
- import AssociateModal from './AssociateModal';
- class ExternalAccountLinkedMe extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- isAssociatModalOpen: false,
- };
- this.openAssociatModal = this.openAssociatModal.bind(this);
- this.closeAssociatModal = this.closeAssociatModal.bind(this);
- }
- async componentDidMount() {
- try {
- await this.props.personalContainer.retrieveExternalAccounts();
- }
- catch (err) {
- toastError(err);
- }
- }
- openAssociatModal() {
- this.setState({ isAssociatModalOpen: true });
- }
- closeAssociatModal() {
- this.setState({ isAssociatModalOpen: false });
- }
- render() {
- const { t, personalContainer } = this.props;
- const { externalAccounts } = personalContainer.state;
- return (
- <Fragment>
- <div className="container-fluid">
- <h2 className="border-bottom">
- <button type="button" className="btn btn-default btn-sm pull-right" onClick={this.openAssociatModal}>
- <i className="icon-plus" aria-hidden="true" />
- Add
- </button>
- { t('External Accounts') }
- </h2>
- </div>
- <div className="row">
- <div className="col-md-12">
- <table className="table table-bordered table-user-list">
- <thead>
- <tr>
- <th width="120px">Authentication Provider</th>
- <th>
- <code>accountId</code>
- </th>
- <th width="200px">{ t('Created') }</th>
- <th width="150px">{ t('Admin') }</th>
- </tr>
- </thead>
- <tbody>
- {externalAccounts !== 0 && externalAccounts.map(account => <ExternalAccountRow account={account} key={account._id} />)}
- </tbody>
- </table>
- </div>
- </div>
- <AssociateModal
- isOpen={this.state.isAssociatModalOpen}
- onClose={this.closeAssociatModal}
- />
- </Fragment>
- );
- }
- }
- const ExternalAccountLinkedMeWrapper = (props) => {
- return createSubscribedElement(ExternalAccountLinkedMe, props, [AppContainer, PersonalContainer]);
- };
- ExternalAccountLinkedMe.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- personalContainer: PropTypes.instanceOf(PersonalContainer).isRequired,
- };
- export default withTranslation()(ExternalAccountLinkedMeWrapper);
|