File size: 6,229 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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
import { ExternalLink } from '@automattic/components';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import { DISABLE_AUTOUPDATE_PLUGIN, ENABLE_AUTOUPDATE_PLUGIN } from 'calypso/lib/plugins/constants';
import { getSiteFileModDisableReason, isMainNetworkSite } from 'calypso/lib/site/utils';
import PluginAction from 'calypso/my-sites/plugins/plugin-action/plugin-action';
import { recordGoogleEvent, recordTracksEvent } from 'calypso/state/analytics/actions';
import { togglePluginAutoUpdate } from 'calypso/state/plugins/installed/actions';
import { isPluginActionInProgress } from 'calypso/state/plugins/installed/selectors';
import { removePluginStatuses } from 'calypso/state/plugins/installed/status/actions';
import isSiteAutomatedTransfer from 'calypso/state/selectors/is-site-automated-transfer';
import { AUTOMOMANAGED_PLUGINS, PREINSTALLED_PLUGINS } from '../constants';
const autoUpdateActions = [ ENABLE_AUTOUPDATE_PLUGIN, DISABLE_AUTOUPDATE_PLUGIN ];
export class PluginAutoUpdateToggle extends Component {
toggleAutoUpdates = () => {
const {
disabled,
site,
plugin,
recordGoogleEvent: recordGAEvent,
recordTracksEvent: recordEvent,
} = this.props;
if ( disabled ) {
return;
}
this.props.togglePluginAutoUpdate( site.ID, plugin );
this.props.removePluginStatuses( 'completed', 'error', 'up-to-date' );
if ( plugin.autoupdate ) {
recordGAEvent(
'Plugins',
'Clicked Toggle Disable Autoupdates Plugin',
'Plugin Name',
plugin.slug
);
recordEvent( 'calypso_plugin_autoupdate_toggle_click', {
site: site.ID,
plugin: plugin.slug,
state: 'inactive',
} );
} else {
recordGAEvent(
'Plugins',
'Clicked Toggle Enable Autoupdates Plugin',
'Plugin Name',
plugin.slug
);
recordEvent( 'calypso_plugin_autoupdate_toggle_click', {
site: site.ID,
plugin: plugin.slug,
state: 'active',
} );
}
};
isAutoManaged = () => {
const isPurchasedMarketplaceProduct =
this.props.isMarketplaceProduct && this.props.productPurchase;
const isPreinstalledPlugin = PREINSTALLED_PLUGINS.includes( this.props.plugin.slug );
const isAutomanagedPlugin =
AUTOMOMANAGED_PLUGINS.includes( this.props.plugin.slug ) || this.props.plugin?.is_managed;
// Auto-managed are only applicable to sites that are part of an automated transfer.
return (
this.props.siteAutomatedTransfer &&
( isPurchasedMarketplaceProduct || isPreinstalledPlugin || isAutomanagedPlugin )
);
};
getDisabledInfo() {
const { site, wporg, translate } = this.props;
if ( this.isAutoManaged() ) {
return translate(
'This plugin is auto managed and therefore will auto update to the latest stable version.'
);
}
if ( ! site || ! site.options ) {
// we don't have enough info
return null;
}
if ( ! wporg ) {
return translate(
"This plugin is not in the WordPress.org plugin repository, so we can't autoupdate it."
);
}
if ( site.options.is_multi_network ) {
return translate(
'%(site)s is part of a multi-network installation, which is not currently supported.',
{
args: { site: site.title },
}
);
}
if ( ! isMainNetworkSite( site ) ) {
return translate(
'Only the main site on a multi-site installation can enable autoupdates for plugins.',
{
args: { site: site.title },
}
);
}
if ( ! site.canAutoupdateFiles && site.options.file_mod_disabled ) {
const reasons = getSiteFileModDisableReason( site, 'autoupdateFiles' );
const html = [];
if ( reasons.length > 1 ) {
html.push(
<p key="reason-shell">
{ translate( 'Autoupdates are not available for %(site)s:', {
args: { site: site.title },
} ) }
</p>
);
const list = reasons.map( ( reason, i ) => (
<li key={ 'reason-i' + i + '-' + site.ID }>{ reason }</li>
) );
html.push(
// eslint-disable-next-line wpcalypso/jsx-classname-namespace
<ul className="plugin-action__disabled-info-list" key="reason-shell-list">
{ list }
</ul>
);
} else {
html.push(
<p key="reason-shell">
{ translate( 'Autoupdates are not available for %(site)s. %(reason)s', {
args: { site: site.title, reason: reasons[ 0 ] },
} ) }
</p>
);
}
html.push(
<ExternalLink
key="external-link"
onClick={ this.recordEvent }
href="https://jetpack.me/support/site-management/#file-update-disabled"
>
{ translate( 'How do I fix this?' ) }
</ExternalLink>
);
return html;
}
return null;
}
render() {
const { inProgress, site, plugin, label, disabled, translate, hideLabel, toggleExtraContent } =
this.props;
if ( ! site.jetpack || ! plugin ) {
return null;
}
const getDisabledInfo = this.getDisabledInfo();
const defaultLabel = translate( 'Autoupdates', {
comment:
'this goes next to an icon that displays if the plugin has "autoupdates", both enabled and disabled',
} );
return (
<PluginAction
disabled={ this.isAutoManaged() ? true : disabled }
label={ label || defaultLabel }
className="plugin-autoupdate-toggle"
status={ this.isAutoManaged() ? true : plugin.autoupdate }
action={ this.toggleAutoUpdates }
inProgress={ inProgress }
disabledInfo={ getDisabledInfo }
htmlFor={ 'autoupdates-' + plugin.slug + '-' + site.ID }
hideLabel={ hideLabel }
toggleExtraContent={ toggleExtraContent }
/>
);
}
}
PluginAutoUpdateToggle.propTypes = {
site: PropTypes.object.isRequired,
plugin: PropTypes.object.isRequired,
wporg: PropTypes.bool,
disabled: PropTypes.bool,
isMarketplaceProduct: PropTypes.bool,
};
PluginAutoUpdateToggle.defaultProps = {
disabled: false,
isMarketplaceProduct: false,
};
export default connect(
( state, { site, plugin } ) => ( {
inProgress: plugin && isPluginActionInProgress( state, site.ID, plugin.id, autoUpdateActions ),
siteAutomatedTransfer: isSiteAutomatedTransfer( state, site.ID ),
} ),
{
recordGoogleEvent,
recordTracksEvent,
removePluginStatuses,
togglePluginAutoUpdate,
}
)( localize( PluginAutoUpdateToggle ) );
|