2019-02-12 21:38:20 +00:00
|
|
|
/* global installed_woo_plugins */
|
2019-02-12 23:19:42 +00:00
|
|
|
( function( $, installed_woo_plugins ) {
|
2019-02-12 21:38:20 +00:00
|
|
|
$( function() {
|
2019-02-12 23:19:42 +00:00
|
|
|
if ( 'undefined' === typeof installed_woo_plugins ) {
|
2019-02-12 21:38:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-13 00:34:25 +00:00
|
|
|
var marketplaceSuggestionsApiData = [
|
2019-02-12 21:38:20 +00:00
|
|
|
{
|
|
|
|
slug: 'products-empty-header',
|
|
|
|
context: 'products-list-empty-header',
|
2019-02-13 00:34:25 +00:00
|
|
|
content: '<h1>Selling something different?</h1><p>You can install extensions to sell all kinds of things!</p>'
|
2019-02-12 21:38:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
slug: 'products-empty-memberships',
|
|
|
|
context: 'products-list-empty-body',
|
2019-02-12 22:33:37 +00:00
|
|
|
'show-if-installed': [ 'woocommerce-subscriptions' ],
|
2019-02-12 21:38:20 +00:00
|
|
|
content: '<div class="card">' +
|
|
|
|
'<h2>Memberships</h2>' +
|
|
|
|
'<p>Give members access to restricted content or products</p>' +
|
|
|
|
'<a class="button" href="https://woocommerce.com/products/woocommerce-memberships/">From $149</a>' +
|
|
|
|
'</div>'
|
|
|
|
},
|
2019-02-12 22:33:37 +00:00
|
|
|
{
|
|
|
|
slug: 'products-empty-addons',
|
|
|
|
context: 'products-list-empty-body',
|
|
|
|
'show-if-installed': [
|
|
|
|
'woocommerce-subscriptions',
|
2019-02-13 00:34:25 +00:00
|
|
|
'woocommerce-memberships'
|
2019-02-12 22:33:37 +00:00
|
|
|
],
|
|
|
|
content: '<div class="card">' +
|
|
|
|
'<h2>Product Add-Ons</h2>' +
|
|
|
|
'<p>Offer add-ons like gift wrapping, special messages or other special options for your products.</p>' +
|
|
|
|
'<a class="button" href="https://woocommerce.com/products/product-add-ons/">From $149</a>' +
|
|
|
|
'</div>'
|
|
|
|
},
|
2019-02-12 21:38:20 +00:00
|
|
|
{
|
|
|
|
slug: 'products-empty-product-bundles',
|
|
|
|
context: 'products-list-empty-body',
|
|
|
|
'hide-if-installed': 'woocommerce-product-bundles',
|
|
|
|
content: '<div class="card">' +
|
|
|
|
'<h2>Product Bundles</h2>' +
|
|
|
|
'<p>Offer customizable bundles and assembled products</p>' +
|
|
|
|
'<a class="button" href="https://woocommerce.com/products/product-bundles/">From $49</a>' +
|
|
|
|
'</div>'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
slug: 'products-empty-composite-products',
|
|
|
|
context: 'products-list-empty-body',
|
|
|
|
content: '<div class="card">' +
|
|
|
|
'<h2>Composite Products</h2>' +
|
|
|
|
'<p>Create and offer product kits with configurable components</p>' +
|
|
|
|
'<a class="button" href=https://woocommerce.com/products/composite-products/">From $79</a>' +
|
|
|
|
'</div>'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
slug: 'products-empty-more',
|
|
|
|
context: 'products-list-empty-body',
|
|
|
|
content: '<div class="card"><h2>More Extensions</h2></div>'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
slug: 'products-list-enhancements-category',
|
|
|
|
context: 'products-list-inline',
|
|
|
|
content: '<tr><td></td>' +
|
|
|
|
'<td colspan="6"><h2>Looking to optimize your product pages?</h2></td>' +
|
|
|
|
'<td colspan="4" style="vertical-align: middle">' +
|
|
|
|
'<a class="button" href="https://woocommerce.com/product-category/woocommerce-extensions/product-extensions/">' +
|
|
|
|
'Explore enhancements</a></td></tr>'
|
2019-02-13 00:34:25 +00:00
|
|
|
}
|
2019-02-12 21:38:20 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
function getRelevantPromotions( displayContext ) {
|
|
|
|
// select based on display context
|
2019-02-13 00:34:25 +00:00
|
|
|
var promos = _.filter( marketplaceSuggestionsApiData, function( promo ) {
|
|
|
|
return ( displayContext === promo.context );
|
|
|
|
} );
|
2019-02-12 21:38:20 +00:00
|
|
|
|
|
|
|
// hide promos for things the user already has installed
|
2019-02-13 00:34:25 +00:00
|
|
|
promos = _.filter( promos, function( promo ) {
|
|
|
|
return ! _.contains( installed_woo_plugins, promo['hide-if-installed'] );
|
|
|
|
} );
|
2019-02-12 21:38:20 +00:00
|
|
|
|
2019-02-12 22:33:37 +00:00
|
|
|
// hide promos that are not applicable based on user's installed extensions
|
2019-02-13 00:34:25 +00:00
|
|
|
promos = _.filter( promos, function( promo ) {
|
2019-02-12 22:33:37 +00:00
|
|
|
if ( ! promo['show-if-installed'] ) {
|
|
|
|
// this promotion is relevant to all
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the user has any of the prerequisites, show the promo
|
|
|
|
return ( _.intersection( installed_woo_plugins, promo['show-if-installed'] ).length > 0 );
|
|
|
|
} );
|
|
|
|
|
2019-02-12 21:38:20 +00:00
|
|
|
return promos;
|
|
|
|
}
|
|
|
|
|
|
|
|
// iterate over all suggestions containers, rendering promos
|
|
|
|
$( '.marketplace-suggestions-container' ).each( function() {
|
|
|
|
// determine the context / placement we're populating
|
2019-02-13 00:34:25 +00:00
|
|
|
var context = this.dataset.marketplaceSuggestionsContext;
|
2019-02-12 21:38:20 +00:00
|
|
|
|
|
|
|
// find promotions that target this context
|
2019-02-13 00:34:25 +00:00
|
|
|
var promos = getRelevantPromotions( context );
|
2019-02-12 21:38:20 +00:00
|
|
|
|
|
|
|
// render the promo content
|
|
|
|
for ( var i in promos ) {
|
|
|
|
$( this ).append( promos[ i ].content );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
// render inline promos in products list
|
|
|
|
$( '.wp-admin.admin-bar.edit-php.post-type-product table.wp-list-table.posts tbody').first().each( function() {
|
2019-02-13 00:34:25 +00:00
|
|
|
var context = 'products-list-inline';
|
2019-02-12 21:38:20 +00:00
|
|
|
|
|
|
|
// find promotions that target this context
|
2019-02-13 00:34:25 +00:00
|
|
|
var promos = getRelevantPromotions( context );
|
2019-02-12 21:38:20 +00:00
|
|
|
|
|
|
|
// render one of the promos
|
|
|
|
if ( promos && promos.length ) {
|
2019-02-13 00:34:25 +00:00
|
|
|
var content = $( promos[ 0 ].content );
|
2019-02-12 21:38:20 +00:00
|
|
|
|
|
|
|
// where should we put it in the list?
|
2019-02-13 00:34:25 +00:00
|
|
|
var rows = $( this ).children();
|
|
|
|
var minRow = 3;
|
2019-02-12 21:38:20 +00:00
|
|
|
|
|
|
|
if ( rows.length <= minRow ) {
|
|
|
|
// if small number of rows, append at end
|
|
|
|
$( this ).append( content );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// for more rows, append
|
|
|
|
$( rows[ minRow - 1 ] ).after( content );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2019-02-12 23:19:42 +00:00
|
|
|
})( jQuery, installed_woo_plugins );
|