| | import { last, isEqual } from 'lodash'; |
| | import PropTypes from 'prop-types'; |
| | import { deleteStoredKeyringConnection } from 'calypso/state/sharing/keyring/actions'; |
| | import { SharingService, connectFor } from '../service'; |
| |
|
| | export class Mailchimp extends SharingService { |
| | static propTypes = { |
| | |
| | |
| | ...SharingService.propTypes, |
| | deleteStoredKeyringConnection: PropTypes.func, |
| | }; |
| |
|
| | static defaultProps = { |
| | ...SharingService.defaultProps, |
| | deleteStoredKeyringConnection: () => {}, |
| | }; |
| |
|
| | createOrUpdateConnection = () => {}; |
| |
|
| | |
| | |
| | |
| | removeConnection = () => { |
| | this.setState( { isDisconnecting: true } ); |
| | this.props.deleteStoredKeyringConnection( last( this.props.keyringConnections ) ); |
| | }; |
| |
|
| | |
| | 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.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' } |
| | ); |
| | } |
| | } |
| | } |
| |
|
| | export default connectFor( |
| | Mailchimp, |
| | ( state, props ) => { |
| | return { |
| | ...props, |
| | removableConnections: props.keyringConnections, |
| | fetchConnection: props.requestKeyringConnections, |
| | siteUserConnections: props.keyringConnections.map( ( conn ) => ( { |
| | ...conn, |
| | keyring_connection_ID: conn.ID, |
| | } ) ), |
| | }; |
| | }, |
| | { |
| | deleteStoredKeyringConnection, |
| | } |
| | ); |
| |
|