45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { assertConfigHasProperties, assertValidElement } from './assertions';
|
|
|
|
export default class PaymentMethodConfig {
|
|
constructor( config ) {
|
|
// validate config
|
|
PaymentMethodConfig.assertValidConfig( config );
|
|
this.id = config.id;
|
|
this.label = config.label;
|
|
this.ariaLabel = config.ariaLabel;
|
|
this.content = config.content;
|
|
this.edit = config.edit;
|
|
this.canMakePayment = config.canMakePayment;
|
|
}
|
|
|
|
static assertValidConfig = ( config ) => {
|
|
assertConfigHasProperties( config, [
|
|
'id',
|
|
'label',
|
|
'ariaLabel',
|
|
'content',
|
|
'edit',
|
|
'canMakePayment',
|
|
] );
|
|
if ( typeof config.id !== 'string' ) {
|
|
throw new Error( 'The id for the payment method must be a string' );
|
|
}
|
|
assertValidElement( config.label, 'label' );
|
|
assertValidElement( config.content, 'content' );
|
|
assertValidElement( config.edit, 'edit' );
|
|
if ( typeof config.ariaLabel !== 'string' ) {
|
|
throw new TypeError(
|
|
'The ariaLabel for the payment method must be a string'
|
|
);
|
|
}
|
|
if ( ! ( config.canMakePayment instanceof Promise ) ) {
|
|
throw new TypeError(
|
|
'The canMakePayment property for the payment method must be a promise.'
|
|
);
|
|
}
|
|
};
|
|
}
|