2020-03-28 13:48:27 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { apiFetch } from '@wordpress/data-controls';
|
|
|
|
import { dispatch } from '@wordpress/data';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { API_NAMESPACE } from './constants';
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
|
|
|
|
export function receiveInstalledPlugins( plugins ) {
|
|
|
|
return {
|
|
|
|
type: 'SET_INSTALLED_PLUGINS',
|
|
|
|
plugins,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function receiveActivatingPlugin( pluginSlug ) {
|
|
|
|
return {
|
|
|
|
type: 'SET_ACTIVATING_PLUGIN',
|
|
|
|
pluginSlug,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function removeActivatingPlugin( pluginSlug ) {
|
|
|
|
return {
|
|
|
|
type: 'REMOVE_ACTIVATING_PLUGIN',
|
|
|
|
pluginSlug,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-06-12 07:17:17 +00:00
|
|
|
export function receiveRecommendedPlugins( plugins, category ) {
|
2020-03-28 13:48:27 +00:00
|
|
|
return {
|
|
|
|
type: 'SET_RECOMMENDED_PLUGINS',
|
2020-06-12 07:17:17 +00:00
|
|
|
data: { plugins, category },
|
2020-03-28 13:48:27 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-06-12 07:17:17 +00:00
|
|
|
export function receiveBlogPosts( posts, category ) {
|
2020-03-28 13:48:27 +00:00
|
|
|
return {
|
|
|
|
type: 'SET_BLOG_POSTS',
|
2020-06-12 07:17:17 +00:00
|
|
|
data: { posts, category },
|
2020-03-28 13:48:27 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function handleFetchError( error, message ) {
|
|
|
|
const { createNotice } = dispatch( 'core/notices' );
|
|
|
|
createNotice( 'error', message );
|
|
|
|
|
|
|
|
// eslint-disable-next-line no-console
|
|
|
|
console.log( error );
|
|
|
|
}
|
|
|
|
|
|
|
|
export function* activateInstalledPlugin( pluginSlug ) {
|
|
|
|
const { createNotice } = dispatch( 'core/notices' );
|
|
|
|
yield receiveActivatingPlugin( pluginSlug );
|
|
|
|
|
|
|
|
try {
|
|
|
|
const response = yield apiFetch( {
|
|
|
|
path: API_NAMESPACE + '/overview/activate-plugin',
|
|
|
|
method: 'POST',
|
|
|
|
data: {
|
|
|
|
plugin: pluginSlug,
|
|
|
|
},
|
|
|
|
} );
|
|
|
|
|
|
|
|
if ( response ) {
|
2020-07-28 02:32:58 +00:00
|
|
|
yield createNotice(
|
|
|
|
'success',
|
|
|
|
__(
|
|
|
|
'The extension has been successfully activated.',
|
|
|
|
'woocommerce-admin'
|
|
|
|
)
|
2020-03-28 13:48:27 +00:00
|
|
|
);
|
|
|
|
// Deliberately load the new plugin data in a new request.
|
|
|
|
yield loadInstalledPluginsAfterActivation( pluginSlug );
|
|
|
|
} else {
|
|
|
|
throw new Error();
|
|
|
|
}
|
|
|
|
} catch ( error ) {
|
2020-07-28 02:32:58 +00:00
|
|
|
yield handleFetchError(
|
|
|
|
error,
|
|
|
|
__(
|
|
|
|
'There was an error trying to activate the extension.',
|
|
|
|
'woocommerce-admin'
|
|
|
|
)
|
|
|
|
);
|
2020-03-28 13:48:27 +00:00
|
|
|
yield removeActivatingPlugin( pluginSlug );
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function* loadInstalledPluginsAfterActivation( activatedPluginSlug ) {
|
|
|
|
try {
|
|
|
|
const response = yield apiFetch( {
|
2020-07-28 02:32:58 +00:00
|
|
|
path: `${ API_NAMESPACE }/overview/installed-plugins`,
|
2020-03-28 13:48:27 +00:00
|
|
|
} );
|
|
|
|
|
|
|
|
if ( response ) {
|
|
|
|
yield receiveInstalledPlugins( response );
|
|
|
|
yield removeActivatingPlugin( activatedPluginSlug );
|
|
|
|
} else {
|
|
|
|
throw new Error();
|
|
|
|
}
|
|
|
|
} catch ( error ) {
|
2020-07-28 02:32:58 +00:00
|
|
|
yield handleFetchError(
|
|
|
|
error,
|
|
|
|
__(
|
|
|
|
'There was an error loading installed extensions.',
|
|
|
|
'woocommerce-admin'
|
|
|
|
)
|
|
|
|
);
|
2020-03-28 13:48:27 +00:00
|
|
|
}
|
|
|
|
}
|