|
|
import { isEqual } from 'lodash'; |
|
|
import PropTypes from 'prop-types'; |
|
|
import { deleteP2KeyringConnection } from 'calypso/state/sharing/keyring/actions'; |
|
|
import { getSelectedSiteId } from 'calypso/state/ui/selectors'; |
|
|
import { SharingService, connectFor } from '../service'; |
|
|
|
|
|
export class P2Github extends SharingService { |
|
|
static propTypes = { |
|
|
|
|
|
|
|
|
...SharingService.propTypes, |
|
|
deleteStoredKeyringConnection: PropTypes.func, |
|
|
}; |
|
|
|
|
|
static defaultProps = { |
|
|
...SharingService.defaultProps, |
|
|
deleteStoredKeyringConnection: () => {}, |
|
|
}; |
|
|
|
|
|
createOrUpdateConnection = () => {}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
removeConnection = ( connections = this.props.removableConnections ) => { |
|
|
this.setState( { isDisconnecting: true } ); |
|
|
connections.map( ( connectionId ) => { |
|
|
this.props.deleteStoredKeyringConnection( connectionId, this.props.siteId ); |
|
|
} ); |
|
|
}; |
|
|
|
|
|
UNSAFE_componentWillReceiveProps( { availableExternalAccounts } ) { |
|
|
if ( ! isEqual( this.props.availableExternalAccounts, availableExternalAccounts ) ) { |
|
|
this.setState( { |
|
|
isConnecting: false, |
|
|
isDisconnecting: false, |
|
|
} ); |
|
|
} |
|
|
|
|
|
if ( ! this.state.isAwaitingConnections ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
this.setState( { |
|
|
isAwaitingConnections: false, |
|
|
isRefreshing: false, |
|
|
} ); |
|
|
|
|
|
|
|
|
if ( this.props.availableExternalAccounts.length === availableExternalAccounts.length ) { |
|
|
this.setState( { |
|
|
isConnecting: false, |
|
|
isDisconnecting: false, |
|
|
} ); |
|
|
return; |
|
|
} |
|
|
|
|
|
if ( this.didKeyringConnectionSucceed( availableExternalAccounts ) ) { |
|
|
this.setState( { isConnecting: false } ); |
|
|
this.props.successNotice( |
|
|
this.props.translate( 'The %(service)s account was successfully connected.', { |
|
|
args: { service: this.props.service.label }, |
|
|
context: 'Sharing: Publicize connection confirmation', |
|
|
} ), |
|
|
{ id: 'publicize' } |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
renderLogo() { |
|
|
return ( |
|
|
|
|
|
<img |
|
|
className="sharing-service__logo" |
|
|
src="/calypso/images/sharing/p2-github-logo.svg" |
|
|
width="48" |
|
|
height="48" |
|
|
alt="" |
|
|
/> |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
export default connectFor( |
|
|
P2Github, |
|
|
( state, props ) => { |
|
|
return { |
|
|
...props, |
|
|
siteId: getSelectedSiteId( state ), |
|
|
removableConnections: props.keyringConnections, |
|
|
fetchConnection: props.requestKeyringConnections, |
|
|
siteUserConnections: props.keyringConnections.map( ( connection ) => ( { |
|
|
...connection, |
|
|
keyring_connection_ID: connection.ID, |
|
|
} ) ), |
|
|
}; |
|
|
}, |
|
|
{ |
|
|
deleteStoredKeyringConnection: deleteP2KeyringConnection, |
|
|
} |
|
|
); |
|
|
|