woocommerce/assets/js/frontend/single-product.js

72 lines
2.4 KiB
JavaScript
Raw Normal View History

2015-07-10 05:13:30 +00:00
/*global wc_single_product_params */
jQuery( function( $ ) {
2012-12-10 13:11:05 +00:00
// wc_single_product_params is required to continue, ensure the object exists
if ( typeof wc_single_product_params === 'undefined' ) {
return false;
}
// Tabs
2015-07-10 05:13:30 +00:00
$( '.wc-tabs-wrapper, .woocommerce-tabs' )
.on( 'init', function() {
$( '.wc-tab, .woocommerce-tabs .panel:not(.panel .panel)' ).hide();
var hash = window.location.hash;
var url = window.location.href;
2015-07-10 05:13:30 +00:00
var $tabs = $( this ).find( '.wc-tabs, ul.tabs' ).first();
2015-07-10 05:13:30 +00:00
if ( hash.toLowerCase().indexOf( 'comment-' ) >= 0 || hash === '#reviews' ) {
$tabs.find( 'li.reviews_tab a' ).click();
} else if ( url.indexOf( 'comment-page-' ) > 0 || url.indexOf( 'cpage=' ) > 0 ) {
$tabs.find( 'li.reviews_tab a' ).click();
} else {
2015-07-10 05:13:30 +00:00
$tabs.find( 'li:first a' ).click();
}
})
.on( 'click', '.wc-tabs li a, ul.tabs li a', function( e ) {
e.preventDefault();
var $tab = $( this );
var $tabs_wrapper = $tab.closest( '.wc-tabs-wrapper, .woocommerce-tabs' );
var $tabs = $tabs_wrapper.find( '.wc-tabs, ul.tabs' );
2015-07-10 05:13:30 +00:00
$tabs.find( 'li' ).removeClass( 'active' );
$tabs_wrapper.find( '.wc-tab, .panel:not(.panel .panel)' ).hide();
2015-07-10 05:13:30 +00:00
$tab.closest( 'li' ).addClass( 'active' );
$tabs_wrapper.find( $tab.attr( 'href' ) ).show();
})
2015-07-10 05:13:30 +00:00
.trigger( 'init' );
2012-12-10 13:11:05 +00:00
$( 'a.woocommerce-review-link' ).click( function() {
$( '.reviews_tab a' ).click();
return true;
});
// Star ratings for comments
$( '#rating' ).hide().before( '<p class="stars"><span><a class="star-1" href="#">1</a><a class="star-2" href="#">2</a><a class="star-3" href="#">3</a><a class="star-4" href="#">4</a><a class="star-5" href="#">5</a></span></p>' );
2012-12-10 13:11:05 +00:00
$( 'body' )
.on( 'click', '#respond p.stars a', function() {
var $star = $( this ),
$rating = $( this ).closest( '#respond' ).find( '#rating' ),
$container = $( this ).closest( '.stars' );
2012-12-10 13:11:05 +00:00
2013-02-11 15:37:26 +00:00
$rating.val( $star.text() );
$star.siblings( 'a' ).removeClass( 'active' );
$star.addClass( 'active' );
$container.addClass( 'selected' );
2012-12-10 13:11:05 +00:00
return false;
2013-02-11 15:37:26 +00:00
})
.on( 'click', '#respond #submit', function() {
var $rating = $( this ).closest( '#respond' ).find( '#rating' ),
rating = $rating.val();
2016-03-01 13:08:25 +00:00
if ( $rating.length > 0 && ! rating && wc_single_product_params.review_rating_required === 'yes' ) {
2015-07-10 05:13:30 +00:00
window.alert( wc_single_product_params.i18n_required_rating_text );
2013-02-11 15:37:26 +00:00
return false;
}
});
});