{"version":3,"names":["getProcessorData","processors","type","mode","_a","find","processor","processor_type","live_mode","processor_data","scOrderSubmitCss","ScOrderSubmitStyle0","wp","i18n","__","this","showTotal","h","secureNotice","location","protocol","class","secureNoticeText","openWormhole","ScOrderSubmit"],"sources":["src/functions/processor.ts","src/components/controllers/checkout-form/order-submit/sc-order-submit.scss?tag=sc-order-submit","src/components/controllers/checkout-form/order-submit/sc-order-submit.tsx"],"sourcesContent":["export const getProcessorData = (processors = [], type, mode) => {\n return (processors || []).find(processor => processor?.processor_type === type && processor?.live_mode === !!(mode === 'live'))?.processor_data || {};\n};\n","sc-order-submit {\n display: block;\n width: auto;\n display: grid;\n gap: var(--sc-form-row-spacing);\n}\n\n.sc-secure-notice {\n display: flex;\n justify-content: center;\n}\n","import { Component, Fragment, h, Prop } from '@stencil/core';\nimport { checkoutIsLocked } from '@store/checkout/getters';\nimport { availableProcessors } from '@store/processors/getters';\nimport { state as selectedProcessor } from '@store/selected-processor';\nimport { state as checkoutState } from '@store/checkout';\nimport { __ } from '@wordpress/i18n';\nimport { openWormhole } from 'stencil-wormhole';\n\nimport { getProcessorData } from '../../../../functions/processor';\nimport { Checkout, Processor, ProcessorName } from '../../../../types';\nimport { formBusy } from '@store/form/getters';\n\n@Component({\n tag: 'sc-order-submit',\n styleUrl: 'sc-order-submit.scss',\n shadow: false,\n})\nexport class ScOrderSubmit {\n /** Is the order loading. */\n @Prop() loading: boolean;\n\n /** Is the order paying. */\n @Prop() paying: boolean;\n\n /** The button type. */\n @Prop({ reflect: true }) type: 'default' | 'primary' | 'success' | 'info' | 'warning' | 'danger' | 'text' | 'link' = 'primary';\n\n /** The button's size. */\n @Prop({ reflect: true }) size: 'small' | 'medium' | 'large' = 'medium';\n\n /** Show a full-width button. */\n @Prop() full: boolean = true;\n\n /** Icon to show. */\n @Prop() icon: string;\n\n /** Show the total. */\n @Prop() showTotal: boolean;\n\n /** Keys and secrets for processors. */\n @Prop() processors: Processor[];\n\n /** The current order. */\n @Prop() order: Checkout;\n\n /** Currency Code */\n @Prop() currencyCode: string = 'usd';\n\n /** The selected processor. */\n @Prop() processor: ProcessorName;\n\n /** Secure */\n @Prop() secureNoticeText: string;\n\n /** Show the secure notice */\n @Prop() secureNotice: boolean = true;\n\n cannotShipToLocation() {\n return checkoutState?.checkout?.selected_shipping_choice_required && !checkoutState.checkout?.selected_shipping_choice;\n }\n\n renderPayPalButton(buttons) {\n const { client_id, account_id, merchant_initiated_enabled } = getProcessorData(availableProcessors(), 'paypal', checkoutState.mode);\n if (!client_id && !account_id) return null;\n\n return (\n \n );\n }\n\n render() {\n if (this.cannotShipToLocation() || checkoutIsLocked('OUT_OF_STOCK')) {\n return (\n \n {!!this.icon && }\n {__('Purchase', 'surecart')}\n {this.showTotal && (\n \n {'\\u00A0'}\n \n \n )}\n {__('Press enter to purchase', 'surecart')}\n \n );\n }\n\n return (\n \n {selectedProcessor.id === 'paypal' && !selectedProcessor?.method && this.renderPayPalButton(['paypal'])}\n {selectedProcessor.id === 'paypal' && selectedProcessor?.method === 'card' && this.renderPayPalButton(['card'])}\n \n );\n }\n}\nopenWormhole(ScOrderSubmit, ['loading', 'paying', 'processors', 'processor', 'currencyCode', 'order'], false);\n"],"mappings":"khBAAO,MAAMA,EAAmB,CAACC,EAAa,GAAIC,EAAMC,K,MACtD,QAAOC,GAACH,GAAc,IAAII,MAAKC,IAAaA,IAAS,MAATA,SAAS,SAATA,EAAWC,kBAAmBL,IAAQI,IAAS,MAATA,SAAS,SAATA,EAAWE,gBAAiBL,IAAS,aAAQ,MAAAC,SAAA,SAAAA,EAAEK,iBAAkB,EAAE,ECDvJ,MAAMC,EAAmB,8IACzB,MAAAC,EAAeD,E,snCCqFEE,GAAAC,KAAAC,GAAE,wBAAAC,KAAAC,WAAAC,EAAA,gBAAAA,EAAA,kBAAAA,EAAA,8BAOaL,GAAAC,KAAAC,GAAE,uC,mhBAmBjBF,GAAAC,KAAAC,GAAE,wBAAAC,KAAAC,WAAAC,EAAA,gBAAAA,EAAA,kBAAAA,EAAA,8BAOaL,GAAAC,KAAAC,GAAE,wCAAAC,KAAAG,cAAAC,SAAAC,WAAA,UAAAH,EAAA,OAAAI,MAAA,oBAAAJ,EAAA,wBAAAF,KAAAO,kBAIsBV,GAAAC,KAAAC,GAAE,qD,GAO1DS,EAAAC,EAAA,4E","ignoreList":[]}