import { Button } from '@automattic/components'; import requestExternalAccess from '@automattic/request-external-access'; import { localize } from 'i18n-calypso'; import { find, last, some } from 'lodash'; import PropTypes from 'prop-types'; import { Component, Fragment } from 'react'; import { connect } from 'react-redux'; import QueryKeyringServices from 'calypso/components/data/query-keyring-services'; import { deleteStoredKeyringConnection, requestKeyringConnections, } from 'calypso/state/sharing/keyring/actions'; import { getKeyringConnectionsByName, isKeyringConnectionsFetching, } from 'calypso/state/sharing/keyring/selectors'; import { getKeyringServiceByName } from 'calypso/state/sharing/services/selectors'; const noop = () => {}; class KeyringConnectButton extends Component { static propTypes = { service: PropTypes.oneOfType( [ PropTypes.shape( { ID: PropTypes.string.isRequired, connect_URL: PropTypes.string.isRequired, } ), PropTypes.bool, ] ), isFetching: PropTypes.bool, keyringConnections: PropTypes.array, onClick: PropTypes.func, onConnect: PropTypes.func, forceReconnect: PropTypes.bool, primary: PropTypes.bool, }; static defaultProps = { onClick: noop, onConnect: noop, forceReconnect: false, primary: false, }; state = { isConnecting: false, // A pending connection is awaiting authorization isRefreshing: false, // A pending refresh is awaiting completion isAwaitingConnections: false, // Waiting for Keyring Connections request to finish }; onClick = () => { this.props.onClick(); this.performAction(); }; /** * Returns the current status of the service's connection. * @returns {string} Connection status. */ getConnectionStatus() { if ( this.props.isFetching || this.props.isAwaitingConnections ) { // When connections are still loading, we don't know the status return 'unknown'; } // keyringConnections are already filtered for this.props.service.ID if ( this.props.keyringConnections.length === 0 ) { // If no connections exist, the service isn't connected return 'not-connected'; } if ( some( this.props.keyringConnections, { status: 'broken' } ) ) { // A problematic connection exists return 'reconnect'; } // If all else passes, assume service is connected return 'connected'; } performAction = () => { const { forceReconnect, keyringConnections } = this.props; const connectionStatus = this.getConnectionStatus(); // Depending on current status, perform an action when user clicks the // service action button if ( 'connected' === connectionStatus && ! forceReconnect ) { this.props.onConnect( last( keyringConnections ) ); } else { this.addConnection(); } }; /** * Establishes a new connection. */ addConnection = () => { this.setState( { isConnecting: true } ); if ( this.props.service ) { // Attempt to create a new connection. If a Keyring connection ID // is not provided, the user will need to authorize the app requestExternalAccess( this.props.service.connect_URL, ( { keyring_id: keyringId } ) => { if ( ! keyringId ) { this.setState( { isConnecting: false } ); return; } // When the user has finished authorizing the connection // (or otherwise closed the window), force a refresh this.props.requestKeyringConnections( true ); // In the case that a Keyring connection doesn't exist, wait for app // authorization to occur, then display with the available connections this.setState( { isAwaitingConnections: true, keyringId } ); } ); } else { this.setState( { isConnecting: false } ); } }; // @TODO: Please update https://github.com/Automattic/wp-calypso/issues/58453 if you are refactoring away from UNSAFE_* lifecycle methods! UNSAFE_componentWillReceiveProps( nextProps ) { if ( this.state.isAwaitingConnections ) { this.setState( { isAwaitingConnections: false, isRefreshing: false, } ); if ( this.didKeyringConnectionSucceed( nextProps.keyringConnections ) ) { const newKeyringConnection = find( nextProps.keyringConnections, { ID: this.state.keyringId, } ); if ( newKeyringConnection ) { this.props.onConnect( newKeyringConnection ); } this.setState( { keyringId: null, isConnecting: false } ); } } } /** * Returns whether the Keyring authorization attempt succeeded * in creating new Keyring account options. * @param {Array} keyringConnections props to check on if a keyring connection succeeded. * @returns {boolean} Whether the Keyring authorization attempt succeeded */ didKeyringConnectionSucceed( keyringConnections ) { const hasAnyConnectionOptions = some( keyringConnections, ( keyringConnection ) => keyringConnection.isConnected === false || keyringConnection.isConnected === undefined ); if ( ! this.state.keyringId || keyringConnections.length === 0 || ! hasAnyConnectionOptions ) { this.setState( { isConnecting: false } ); return false; } return true; } render() { const { primary, service, translate } = this.props; const { isConnecting, isRefreshing } = this.state; const status = service ? this.getConnectionStatus() : 'unknown'; let localPrimary = false; let warning = false; let label; const isPending = 'unknown' === status || isRefreshing || isConnecting; if ( 'unknown' === status ) { label = translate( 'Loading…' ); } else if ( isRefreshing ) { label = translate( 'Reconnecting…' ); warning = true; } else if ( isConnecting ) { label = translate( 'Connecting…' ); } else { label = this.props.children; localPrimary = primary; } return ( ); } } export default connect( ( state, ownProps ) => { const service = getKeyringServiceByName( state, ownProps.serviceId ); const keyringConnections = service ? getKeyringConnectionsByName( state, service.ID ) : []; const isFetching = isKeyringConnectionsFetching( state ); return { service, isFetching, keyringConnections, }; }, { deleteStoredKeyringConnection, requestKeyringConnections, } )( localize( KeyringConnectButton ) );