File size: 4,494 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
import { Gridicon } from '@automattic/components';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import { ACTIVATE_PLUGIN, DEACTIVATE_PLUGIN } from 'calypso/lib/plugins/constants';
import { getManageConnectionHref } from 'calypso/lib/plugins/utils';
import PluginAction from 'calypso/my-sites/plugins/plugin-action/plugin-action';
import { recordGoogleEvent, recordTracksEvent } from 'calypso/state/analytics/actions';
import { togglePluginActivation } from 'calypso/state/plugins/installed/actions';
import { isPluginActionInProgress } from 'calypso/state/plugins/installed/selectors';
import { removePluginStatuses } from 'calypso/state/plugins/installed/status/actions';
import './style.scss';
const activationActions = [ ACTIVATE_PLUGIN, DEACTIVATE_PLUGIN ];
export class PluginActivateToggle extends Component {
toggleActivation = () => {
const {
disabled,
site,
plugin,
recordGoogleEvent: recordGAEvent,
recordTracksEvent: recordEvent,
} = this.props;
if ( disabled ) {
return;
}
this.props.togglePluginActivation( site.ID, plugin );
this.props.removePluginStatuses( 'completed', 'error', 'up-to-date' );
if ( plugin.active ) {
recordGAEvent( 'Plugins', 'Clicked Toggle Deactivate Plugin', 'Plugin Name', plugin.slug );
recordEvent( 'calypso_plugin_active_toggle_click', {
site: site.ID,
plugin: plugin.slug,
state: 'inactive',
} );
} else {
recordGAEvent( 'Plugins', 'Clicked Toggle Activate Plugin', 'Plugin Name', plugin.slug );
recordEvent( 'calypso_plugin_active_toggle_click', {
site: site.ID,
plugin: plugin.slug,
state: 'active',
} );
}
};
trackManageConnectionLink = () => {
const {
site,
plugin,
recordGoogleEvent: recordGAEvent,
recordTracksEvent: recordEvent,
} = this.props;
recordGAEvent( 'Plugins', 'Clicked Manage Jetpack Connection Link', 'Plugin Name', 'jetpack' );
recordEvent( 'calypso_plugin_manage_connection_click', {
site: site.ID,
plugin: plugin.slug,
} );
};
manageConnectionLink() {
const { disabled, translate, site } = this.props;
if ( disabled ) {
return (
<span className="plugin-activate-toggle__disabled">
<span className="plugin-activate-toggle__icon">
<Gridicon icon="cog" size={ 18 } />
</span>
<span className="plugin-activate-toggle__label">
{ translate( 'Manage Connection', {
comment: 'manage Jetpack connnection settings link',
} ) }
</span>
</span>
);
}
return (
<span className="plugin-activate-toggle__link">
<a
className="plugin-activate-toggle__icon"
onClick={ this.trackManageConnectionLink }
href={ getManageConnectionHref( site.slug ) }
>
<Gridicon icon="cog" size={ 18 } />
</a>
<a
className="plugin-activate-toggle__label"
onClick={ this.trackManageConnectionLink }
href={ getManageConnectionHref( site.slug ) }
>
{ translate( 'Manage Connection', {
comment: 'manage Jetpack connnection settings link',
} ) }
</a>
</span>
);
}
render() {
const { inProgress, site, plugin, disabled, translate, hideLabel, isJetpackCloud } = this.props;
if ( ! site || ! plugin ) {
return null;
}
const isJetpackPlugin = 'jetpack' === plugin.slug;
if ( ! isJetpackCloud && isJetpackPlugin ) {
return (
<PluginAction
className="plugin-activate-toggle"
htmlFor={ 'disconnect-jetpack-' + site.ID }
>
{ this.manageConnectionLink() }
</PluginAction>
);
}
return (
<PluginAction
disabled={ disabled || isJetpackPlugin }
className="plugin-activate-toggle"
label={ translate( 'Active', { context: 'plugin status' } ) }
inProgress={ inProgress }
status={ plugin.active }
action={ this.toggleActivation }
htmlFor={ 'activate-' + plugin.slug + '-' + site.ID }
hideLabel={ hideLabel }
/>
);
}
}
PluginActivateToggle.propTypes = {
site: PropTypes.object.isRequired,
plugin: PropTypes.object.isRequired,
disabled: PropTypes.bool,
};
PluginActivateToggle.defaultProps = {
disabled: false,
};
export default connect(
( state, { site, plugin } ) => ( {
inProgress: plugin && isPluginActionInProgress( state, site.ID, plugin.id, activationActions ),
} ),
{
recordGoogleEvent,
recordTracksEvent,
removePluginStatuses,
togglePluginActivation,
}
)( localize( PluginActivateToggle ) );
|