/* eslint-disable wpcalypso/jsx-classname-namespace */ import { ScreenReaderText, FormLabel, Gridicon } from '@automattic/components'; import clsx from 'clsx'; import { localize } from 'i18n-calypso'; import PropTypes from 'prop-types'; import { Component } from 'react'; import { connect } from 'react-redux'; import FormInputCheckbox from 'calypso/components/forms/form-checkbox'; import useUsersQuery from 'calypso/data/users/use-users-query'; import { recordGoogleEvent, recordTracksEvent } from 'calypso/state/analytics/actions'; import { getCurrentUserId } from 'calypso/state/current-user/selectors'; import { canCurrentUser } from 'calypso/state/selectors/can-current-user'; import getCurrentRouteParameterized from 'calypso/state/selectors/get-current-route-parameterized'; import { getSelectedSiteId } from 'calypso/state/ui/selectors'; const SharingConnectionKeyringUserLabel = localize( ( { siteId, keyringUserId, translate, userId } ) => { if ( ! keyringUserId ) { return null; } const fetchOptions = { search: keyringUserId, search_columns: [ 'ID' ], }; const { data } = useUsersQuery( siteId, fetchOptions ); const keyringUser = data?.users?.[ 0 ] ?? null; if ( keyringUser && userId !== keyringUser.ID ) { return ( ); } return null; } ); class SharingConnection extends Component { static propTypes = { connection: PropTypes.object.isRequired, // The single connection object isDisconnecting: PropTypes.bool, // Is a service disconnection request pending? isRefreshing: PropTypes.bool, // Is a service refresh request pending? onDisconnect: PropTypes.func, // Handler to invoke when disconnecting onRefresh: PropTypes.func, // Handler to invoke when refreshing onToggleSitewideConnection: PropTypes.func, // Handler to invoke when toggling sitewide connection recordGoogleEvent: PropTypes.func, service: PropTypes.object.isRequired, // The service to which the connection is made showDisconnect: PropTypes.bool, // Display an inline disconnect button siteId: PropTypes.number, // The Id of the current site. translate: PropTypes.func, userHasCaps: PropTypes.bool, // Whether the current users has the caps to delete a connection. userId: PropTypes.number, // The Id of the current user. }; static defaultProps = { isDisconnecting: false, isRefreshing: false, onDisconnect: () => {}, onRefresh: () => {}, onToggleSitewideConnection: () => {}, recordGoogleEvent: () => {}, showDisconnect: false, siteId: 0, userHasCaps: false, userId: 0, defaultServiceIcon: { google_my_business: 'institution', p2_slack: 'link', p2_github: 'link', 'instagram-basic-display': 'user', linkedin: 'user', twitter: 'user', tumblr: 'user', google_photos: 'user', facebook: 'user', 'instagram-business': 'user', mastodon: 'user', threads: 'user', nextdoor: 'user', bluesky: 'user', }, }; disconnect = () => { if ( ! this.props.isDisconnecting ) { this.props.onDisconnect( [ this.props.connection ] ); } }; refresh = () => { if ( ! this.props.isRefreshing ) { this.props.onRefresh( [ this.props.connection ] ); } }; toggleSitewideConnection = ( event ) => { const { path } = this.props; if ( ! this.state.isSavingSitewide ) { const isNowSitewide = event.target.checked ? 1 : 0; this.setState( { isSavingSitewide: true } ); this.props.onToggleSitewideConnection( this.props.connection, !! isNowSitewide ); this.props.recordTracksEvent( 'calypso_connections_connection_sitewide_checkbox_clicked', { is_now_sitewide: isNowSitewide, path, } ); this.props.recordGoogleEvent( 'Sharing', 'Clicked Connection Available to All Users Checkbox', this.props.service.ID, isNowSitewide ); } }; constructor( props ) { super( props ); this.state = { isSavingSitewide: false, }; } componentDidUpdate( prevProps ) { if ( this.state.isSavingSitewide && this.props.connection.shared !== prevProps.connection.shared ) { // eslint-disable-next-line react/no-did-update-set-state this.setState( { isSavingSitewide: false } ); } } getProfileImage() { if ( this.props.connection.external_profile_picture ) { return ( { ); } return ( { this.props.defaultServiceIcon[ this.props.connection.service ] && ( ) } { this.props.connection.label } ); } getReconnectButton() { if ( 'broken' === this.props.connection.status && this.props.userId === this.props.connection.keyring_connection_user_ID ) { return ( // eslint-disable-next-line { this.props.translate( 'Reconnect' ) } ); } } getDisconnectButton() { const userCanDelete = this.props.userHasCaps || this.props.connection.user_ID === this.props.userId; if ( this.props.showDisconnect && userCanDelete ) { return ( // eslint-disable-next-line { this.props.translate( 'Disconnect' ) } ); } } isConnectionShared() { return this.state.isSavingSitewide ? ! this.props.connection.shared : this.props.connection.shared; } getConnectionSitewideElement() { if ( 'publicize' !== this.props.service.type ) { return; } const content = []; if ( this.props.userHasCaps ) { content.push( ); } if ( this.props.userHasCaps || this.props.connection.shared ) { content.push( { this.props.translate( 'Connection available to all administrators, editors, and authors', { context: 'Sharing: Publicize', } ) } ); } if ( content.length ) { return ( { content } ); } } render() { const connectionSitewideElement = this.getConnectionSitewideElement(); const connectionClasses = clsx( 'sharing-connection', { disabled: this.props.isDisconnecting || this.props.isRefreshing, } ); const statusClasses = clsx( 'sharing-connection__account-status', { 'is-shareable': undefined !== connectionSitewideElement, } ); return (
  • { this.getProfileImage() }
    { this.props.connection.external_display || this.props.connection.external_name } { connectionSitewideElement }
    { this.getReconnectButton() } { this.getDisconnectButton() }
  • ); } } export default connect( ( state ) => { const siteId = getSelectedSiteId( state ); return { siteId, userHasCaps: canCurrentUser( state, siteId, 'edit_others_posts' ), userId: getCurrentUserId( state ), path: getCurrentRouteParameterized( state, siteId ), }; }, { recordGoogleEvent, recordTracksEvent } )( localize( SharingConnection ) );