woocommerce/assets/js/admin/wc-orders.js

79 lines
1.7 KiB
JavaScript
Raw Normal View History

/* global wc_orders_params */
jQuery( function( $ ) {
if ( typeof wc_orders_params === 'undefined' ) {
return false;
}
/**
* WCOrdersTable class.
*/
var WCOrdersTable = function() {
$( document )
.on( 'click', '.post-type-shop_order .wp-list-table tbody td', this.onRowClick )
2017-11-03 11:57:44 +00:00
.on( 'click', '.order-preview:not(.disabled)', this.onPreview );
};
/**
* Click a row.
*/
WCOrdersTable.prototype.onRowClick = function( e ) {
if ( $( e.target ).filter( 'a' ).length ) {
return true;
}
var $row = $( this ).closest( 'tr' ),
href = $row.find( 'a.order-view' ).attr( 'href' );
2017-11-15 13:41:20 +00:00
if ( href.length ) {
window.location = href;
}
};
/**
* Preview an order.
*/
2017-09-04 17:11:51 +00:00
WCOrdersTable.prototype.onPreview = function() {
var $previewButton = $( this ),
2017-11-15 12:51:14 +00:00
$order_id = $previewButton.data( 'order-id' );
if ( $previewButton.data( 'order-data' ) ) {
$( this ).WCBackboneModal({
template: 'wc-modal-view-order',
variable : $previewButton.data( 'order-data' )
});
} else {
2017-11-03 11:57:44 +00:00
$previewButton.addClass( 'disabled' );
2017-09-04 17:11:51 +00:00
$.ajax({
url: wc_orders_params.ajax_url,
data: {
order_id: $order_id,
action : 'woocommerce_get_order_details',
security: wc_orders_params.preview_nonce
},
type: 'GET',
success: function( response ) {
2017-11-03 11:57:44 +00:00
$( '.order-preview' ).removeClass( 'disabled' );
if ( response.success ) {
$previewButton.data( 'order-data', response.data );
$( this ).WCBackboneModal({
template: 'wc-modal-view-order',
variable : response.data
});
}
}
});
}
return false;
};
/**
* Init WCOrdersTable.
*/
new WCOrdersTable();
} );