initial commit
This commit is contained in:
@ -0,0 +1,51 @@
|
||||
/**
|
||||
* External dependencies
|
||||
*/
|
||||
import { __ } from '@wordpress/i18n';
|
||||
import { Icon, external } from '@woocommerce/icons';
|
||||
import { ADMIN_URL } from '@woocommerce/settings';
|
||||
import { InspectorControls } from '@wordpress/block-editor';
|
||||
import { useProductDataContext } from '@woocommerce/shared-context';
|
||||
|
||||
/**
|
||||
* Component to render an edit product link in the sidebar.
|
||||
*
|
||||
* @param {Object} props Component props.
|
||||
*/
|
||||
const EditProductLink = ( props ) => {
|
||||
const productDataContext = useProductDataContext();
|
||||
const product = productDataContext.product || {};
|
||||
const productId = product.id || props.productId || 0;
|
||||
|
||||
if ( ! productId ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<InspectorControls>
|
||||
<div className="wc-block-single-product__edit-card">
|
||||
<div className="wc-block-single-product__edit-card-title">
|
||||
<a
|
||||
href={ `${ ADMIN_URL }post.php?post=${ productId }&action=edit` }
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{ __(
|
||||
"Edit this product's details",
|
||||
'woocommerce'
|
||||
) }
|
||||
<Icon srcElement={ external } size={ 16 } />
|
||||
</a>
|
||||
</div>
|
||||
<div className="wc-block-single-product__edit-card-description">
|
||||
{ __(
|
||||
'Edit details such as title, price, description and more.',
|
||||
'woocommerce'
|
||||
) }
|
||||
</div>
|
||||
</div>
|
||||
</InspectorControls>
|
||||
);
|
||||
};
|
||||
|
||||
export default EditProductLink;
|
Reference in New Issue
Block a user