mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
29 lines
707 B
JavaScript
29 lines
707 B
JavaScript
import BaseHandler from './BaseHandler';
|
|
|
|
class PreviewHandler extends BaseHandler {
|
|
constructor( buttonConfig, ppcpConfig, externalHandler ) {
|
|
super( buttonConfig, ppcpConfig, externalHandler );
|
|
}
|
|
|
|
transactionInfo() {
|
|
throw new Error( 'Transaction info fail. This is just a preview.' );
|
|
}
|
|
|
|
createOrder() {
|
|
throw new Error( 'Create order fail. This is just a preview.' );
|
|
}
|
|
|
|
approveOrder( data, actions ) {
|
|
throw new Error( 'Approve order fail. This is just a preview.' );
|
|
}
|
|
|
|
actionHandler() {
|
|
throw new Error( 'Action handler fail. This is just a preview.' );
|
|
}
|
|
|
|
errorHandler() {
|
|
throw new Error( 'Error handler fail. This is just a preview.' );
|
|
}
|
|
}
|
|
|
|
export default PreviewHandler;
|