@justifi/webcomponents 4.10.0 → 4.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{Business-663db337.js → Business-7ae04d4f.js} +46 -1
- package/dist/cjs/business-additional-questions-schema-18a82d19.js +47 -0
- package/dist/cjs/business-details-core.cjs.entry.js +7 -2
- package/dist/cjs/{business-form-types-3cdd5447.js → business-form-types-29b2bad9.js} +7 -0
- package/dist/cjs/{form-control-datepart_3.cjs.entry.js → form-control-datepart_4.cjs.entry.js} +59 -12
- package/dist/cjs/{form-control-number_3.cjs.entry.js → form-control-select_2.cjs.entry.js} +3 -45
- package/dist/cjs/gross-payment-chart-core.cjs.entry.js +7 -1
- package/dist/cjs/justifi-additional-questions-form-step_5.cjs.entry.js +24 -20
- package/dist/cjs/justifi-additional-questions_4.cjs.entry.js +6 -8
- package/dist/cjs/justifi-billing-form_4.cjs.entry.js +1 -1
- package/dist/cjs/justifi-business-details.cjs.entry.js +21 -4
- package/dist/cjs/justifi-business-form.cjs.entry.js +60 -51
- package/dist/cjs/justifi-business-list.cjs.entry.js +1 -1
- package/dist/cjs/justifi-checkout.cjs.entry.js +1 -1
- package/dist/cjs/justifi-gross-payment-chart.cjs.entry.js +29 -5
- package/dist/cjs/justifi-owner-form.cjs.entry.js +20 -12
- package/dist/cjs/justifi-payment-details.cjs.entry.js +25 -4
- package/dist/cjs/justifi-payment-form.cjs.entry.js +16 -3
- package/dist/cjs/justifi-payment-provisioning.cjs.entry.js +16 -16
- package/dist/cjs/justifi-payments-list.cjs.entry.js +25 -5
- package/dist/cjs/justifi-payout-details.cjs.entry.js +27 -7
- package/dist/cjs/justifi-payouts-list.cjs.entry.js +26 -6
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/payload-parsers-f437272e.js +132 -0
- package/dist/cjs/payment-details-core.cjs.entry.js +7 -1
- package/dist/cjs/payments-list-core.cjs.entry.js +8 -2
- package/dist/cjs/payout-details-core.cjs.entry.js +8 -3
- package/dist/cjs/payouts-list-core.cjs.entry.js +8 -2
- package/dist/cjs/{utils-df5167a8.js → utils-87435719.js} +7 -0
- package/dist/cjs/utils-f8079741.js +41 -0
- package/dist/cjs/webcomponents.cjs.js +1 -1
- package/dist/collection/api/Business.js +2 -1
- package/dist/collection/api/ComponentError.js +14 -0
- package/dist/collection/api/services/utils.js +11 -0
- package/dist/collection/api/shared.js +11 -1
- package/dist/collection/collection-manifest.json +1 -2
- package/dist/collection/components/business-details/additional-questions-details/test/additional-questions.spec.js +1 -1
- package/dist/collection/components/business-details/business-details-core.js +30 -2
- package/dist/collection/components/business-details/business-details.js +30 -0
- package/dist/collection/components/business-details/generic-info-details/test/generic-info-details.spec.js +1 -1
- package/dist/collection/components/business-details/get-business.js +15 -3
- package/dist/collection/components/business-details/legal-address-details/test/legal-address-details.spec.js +1 -1
- package/dist/collection/components/business-details/owner-details/test/owner-details.spec.js +1 -1
- package/dist/collection/components/business-details/representative-details/test/representative-details.spec.js +1 -1
- package/dist/collection/components/business-details/test/busines-details-core.spec.js +56 -16
- package/dist/collection/components/business-details/test/business-details.spec.js +20 -4
- package/dist/collection/components/business-details/test/get-business.spec.js +13 -6
- package/dist/collection/components/business-forms/business-form/business-form.js +79 -50
- package/dist/collection/components/business-forms/business-form/business-representative/business-representative.js +1 -4
- package/dist/collection/components/business-forms/business-form/legal-address-form/legal-address-form.js +4 -2
- package/dist/collection/components/business-forms/{business-form/business-address/business-address-form.js → owner-form/identity-address/identity-address-form.js} +13 -10
- package/dist/collection/components/business-forms/owner-form/identity-address/test/identity-address.e2e.js +9 -0
- package/dist/collection/components/business-forms/{business-form/business-address/test/business-address.spec.js → owner-form/identity-address/test/identity-address.spec.js} +21 -14
- package/dist/collection/components/business-forms/owner-form/owner-form.js +54 -8
- package/dist/collection/components/business-forms/payment-provisioning/additional-questions/business-additional-questions-form-step.js +20 -2
- package/dist/collection/components/business-forms/payment-provisioning/business-core-info/business-core-info-form-step.js +19 -1
- package/dist/collection/components/business-forms/payment-provisioning/business-owners/business-owners-form-step.js +44 -4
- package/dist/collection/components/business-forms/payment-provisioning/business-representative/business-representative-form-step.js +21 -6
- package/dist/collection/components/business-forms/payment-provisioning/legal-address-form/legal-address-form-step.js +23 -4
- package/dist/collection/components/business-forms/payment-provisioning/payment-provisioning.js +32 -14
- package/dist/collection/components/business-forms/schemas/business-additional-questions-schema.js +15 -6
- package/dist/collection/components/business-forms/schemas/business-address-schema.js +47 -12
- package/dist/collection/components/business-forms/schemas/business-core-info-schema.js +24 -12
- package/dist/collection/components/business-forms/schemas/business-form-schema.js +4 -4
- package/dist/collection/components/business-forms/schemas/business-identity-schema.js +29 -34
- package/dist/collection/components/business-forms/utils/business-form-types.js +7 -0
- package/dist/collection/components/business-forms/utils/helpers.js +2 -0
- package/dist/collection/components/form/form-control-text.js +35 -1
- package/dist/collection/components/form/utils.js +6 -0
- package/dist/collection/components/gross-payment-chart/get-gross-payment-chart-data.js +17 -2
- package/dist/collection/components/gross-payment-chart/gross-payment-chart-core.js +30 -1
- package/dist/collection/components/gross-payment-chart/gross-payment-chart.js +35 -1
- package/dist/collection/components/gross-payment-chart/test/get-gross-payment-chart-data.spec.js +26 -8
- package/dist/collection/components/gross-payment-chart/test/gross-payment-chart-core.spec.js +51 -11
- package/dist/collection/components/gross-payment-chart/test/gross-payment-chart.spec.js +55 -3
- package/dist/collection/components/payment-details/get-payment-details.js +15 -3
- package/dist/collection/components/payment-details/payment-details-core.js +30 -1
- package/dist/collection/components/payment-details/payment-details.js +35 -1
- package/dist/collection/components/payment-details/test/get-payment-details.spec.js +11 -3
- package/dist/collection/components/payment-details/test/payment-details-core.spec.js +55 -12
- package/dist/collection/components/payment-details/test/payment-details.spec.js +69 -3
- package/dist/collection/components/payment-form/payment-form.js +54 -3
- package/dist/collection/components/payment-form/test/payment-form.spec.js +60 -1
- package/dist/collection/components/payments-list/get-payments.js +15 -4
- package/dist/collection/components/payments-list/payments-list-core.js +28 -2
- package/dist/collection/components/payments-list/payments-list.js +35 -1
- package/dist/collection/components/payments-list/test/get-payments.spec.js +11 -3
- package/dist/collection/components/payments-list/test/payments-list-core.spec.js +43 -28
- package/dist/collection/components/payments-list/test/payments-list.spec.js +31 -3
- package/dist/collection/components/payout-details/get-payout-details.js +17 -6
- package/dist/collection/components/payout-details/payout-details-core.js +31 -3
- package/dist/collection/components/payout-details/payout-details.js +35 -1
- package/dist/collection/components/payout-details/test/get-payout-details.spec.js +15 -5
- package/dist/collection/components/payout-details/test/payout-details-core.spec.js +54 -16
- package/dist/collection/components/payout-details/test/payout-details.spec.js +50 -1
- package/dist/collection/components/payouts-list/get-payouts.js +17 -5
- package/dist/collection/components/payouts-list/payouts-list-core.js +28 -2
- package/dist/collection/components/payouts-list/payouts-list.js +34 -1
- package/dist/collection/components/payouts-list/test/get-payouts.spec.js +11 -3
- package/dist/collection/components/payouts-list/test/payouts-list-core.spec.js +42 -29
- package/dist/collection/components/payouts-list/test/payouts-list.spec.js +33 -0
- package/dist/docs.json +753 -354
- package/dist/esm/{Business-6cc4e473.js → Business-91caaccb.js} +45 -2
- package/dist/esm/business-additional-questions-schema-b642a2b7.js +44 -0
- package/dist/esm/business-details-core.entry.js +8 -3
- package/dist/esm/{business-form-types-de9f38cd.js → business-form-types-0d76133c.js} +8 -1
- package/dist/esm/{form-control-datepart_3.entry.js → form-control-datepart_4.entry.js} +59 -13
- package/dist/esm/{form-control-number_3.entry.js → form-control-select_2.entry.js} +4 -45
- package/dist/esm/gross-payment-chart-core.entry.js +8 -2
- package/dist/esm/justifi-additional-questions-form-step_5.entry.js +22 -18
- package/dist/esm/justifi-additional-questions_4.entry.js +6 -8
- package/dist/esm/justifi-billing-form_4.entry.js +1 -1
- package/dist/esm/justifi-business-details.entry.js +22 -5
- package/dist/esm/justifi-business-form.entry.js +60 -51
- package/dist/esm/justifi-business-list.entry.js +1 -1
- package/dist/esm/justifi-checkout.entry.js +1 -1
- package/dist/esm/justifi-gross-payment-chart.entry.js +28 -4
- package/dist/esm/justifi-owner-form.entry.js +19 -11
- package/dist/esm/justifi-payment-details.entry.js +26 -5
- package/dist/esm/justifi-payment-form.entry.js +16 -3
- package/dist/esm/justifi-payment-provisioning.entry.js +16 -16
- package/dist/esm/justifi-payments-list.entry.js +26 -6
- package/dist/esm/justifi-payout-details.entry.js +28 -8
- package/dist/esm/justifi-payouts-list.entry.js +27 -7
- package/dist/esm/loader.js +1 -1
- package/dist/esm/payload-parsers-920f49dd.js +123 -0
- package/dist/esm/payment-details-core.entry.js +8 -2
- package/dist/esm/payments-list-core.entry.js +8 -2
- package/dist/esm/payout-details-core.entry.js +9 -4
- package/dist/esm/payouts-list-core.entry.js +8 -2
- package/dist/esm/utils-4609f32c.js +38 -0
- package/dist/esm/{utils-2828201a.js → utils-684d2e47.js} +7 -1
- package/dist/esm/webcomponents.js +1 -1
- package/dist/module/Business.js +45 -2
- package/dist/module/business-additional-questions-form-step.js +4 -2
- package/dist/module/business-additional-questions-schema.js +16 -7
- package/dist/module/business-address-schema.js +49 -14
- package/dist/module/business-core-info-form-step.js +3 -1
- package/dist/module/business-core-info-schema.js +24 -12
- package/dist/module/business-details-core2.js +8 -3
- package/dist/module/business-form-types.js +8 -1
- package/dist/module/business-identity-schema.js +30 -35
- package/dist/module/business-owners-form-step.js +12 -8
- package/dist/module/business-representative-form-step.js +9 -10
- package/dist/module/business-representative.js +4 -7
- package/dist/module/form-control-text2.js +5 -1
- package/dist/module/gross-payment-chart-core2.js +8 -2
- package/dist/module/helpers.js +4 -0
- package/dist/module/{business-address-form.js → identity-address-form.js} +17 -20
- package/dist/module/justifi-business-details.js +21 -4
- package/dist/module/justifi-business-form.js +65 -56
- package/dist/module/justifi-gross-payment-chart.js +28 -4
- package/dist/module/justifi-identity-address-form.d.ts +11 -0
- package/dist/module/justifi-identity-address-form.js +6 -0
- package/dist/module/justifi-payment-details.js +26 -5
- package/dist/module/justifi-payment-form.js +18 -4
- package/dist/module/justifi-payment-provisioning.js +24 -23
- package/dist/module/justifi-payments-list.js +26 -6
- package/dist/module/justifi-payout-details.js +28 -8
- package/dist/module/justifi-payouts-list.js +27 -7
- package/dist/module/legal-address-form-step.js +8 -11
- package/dist/module/legal-address-form.js +5 -9
- package/dist/module/owner-form.js +22 -12
- package/dist/module/payment-details-core2.js +8 -2
- package/dist/module/payment-method-form.js +1 -1
- package/dist/module/payments-list-core2.js +8 -2
- package/dist/module/payout-details-core2.js +9 -4
- package/dist/module/payouts-list-core2.js +8 -2
- package/dist/module/utils3.js +31 -1
- package/dist/module/utils4.js +7 -1
- package/dist/types/api/ComponentError.d.ts +18 -0
- package/dist/types/api/services/utils.d.ts +2 -0
- package/dist/types/api/shared.d.ts +9 -0
- package/dist/types/components/business-details/business-details-core.d.ts +3 -0
- package/dist/types/components/business-details/business-details.d.ts +3 -0
- package/dist/types/components/business-forms/business-form/business-form.d.ts +4 -2
- package/dist/types/components/business-forms/owner-form/identity-address/identity-address-form.d.ts +10 -0
- package/dist/types/components/business-forms/owner-form/owner-form.d.ts +5 -1
- package/dist/types/components/business-forms/payment-provisioning/additional-questions/business-additional-questions-form-step.d.ts +1 -0
- package/dist/types/components/business-forms/payment-provisioning/business-core-info/business-core-info-form-step.d.ts +1 -0
- package/dist/types/components/business-forms/payment-provisioning/business-owners/business-owners-form-step.d.ts +3 -1
- package/dist/types/components/business-forms/payment-provisioning/business-representative/business-representative-form-step.d.ts +1 -0
- package/dist/types/components/business-forms/payment-provisioning/legal-address-form/legal-address-form-step.d.ts +1 -0
- package/dist/types/components/business-forms/payment-provisioning/payment-provisioning.d.ts +3 -2
- package/dist/types/components/business-forms/schemas/business-additional-questions-schema.d.ts +1 -1
- package/dist/types/components/business-forms/schemas/business-address-schema.d.ts +1 -12
- package/dist/types/components/business-forms/schemas/business-core-info-schema.d.ts +1 -1
- package/dist/types/components/business-forms/schemas/business-form-schema.d.ts +7 -3
- package/dist/types/components/business-forms/schemas/business-identity-schema.d.ts +5 -31
- package/dist/types/components/business-forms/utils/business-form-types.d.ts +10 -0
- package/dist/types/components/business-forms/utils/helpers.d.ts +2 -0
- package/dist/types/components/form/form-control-text.d.ts +2 -0
- package/dist/types/components/form/utils.d.ts +1 -0
- package/dist/types/components/gross-payment-chart/get-gross-payment-chart-data.d.ts +5 -8
- package/dist/types/components/gross-payment-chart/gross-payment-chart-core.d.ts +3 -0
- package/dist/types/components/gross-payment-chart/gross-payment-chart.d.ts +4 -0
- package/dist/types/components/payment-details/payment-details-core.d.ts +3 -0
- package/dist/types/components/payment-details/payment-details.d.ts +4 -0
- package/dist/types/components/payment-form/payment-form.d.ts +4 -1
- package/dist/types/components/payments-list/payments-list-core.d.ts +2 -0
- package/dist/types/components/payments-list/payments-list.d.ts +4 -0
- package/dist/types/components/payout-details/payout-details-core.d.ts +3 -0
- package/dist/types/components/payout-details/payout-details.d.ts +4 -0
- package/dist/types/components/payouts-list/payouts-list-core.d.ts +2 -0
- package/dist/types/components/payouts-list/payouts-list.d.ts +4 -0
- package/dist/types/components.d.ts +217 -43
- package/dist/webcomponents/p-091f9732.entry.js +1 -0
- package/dist/webcomponents/p-0b76c770.entry.js +1 -0
- package/dist/webcomponents/p-0d81883d.entry.js +1 -0
- package/dist/webcomponents/{p-cb8f9cb8.entry.js → p-102b593a.entry.js} +1 -1
- package/dist/webcomponents/p-28cd23c8.entry.js +1 -0
- package/dist/webcomponents/p-2b8368d2.js +1 -0
- package/dist/webcomponents/p-436d27b9.entry.js +1 -0
- package/dist/webcomponents/p-448063ba.entry.js +1 -0
- package/dist/webcomponents/p-5341321d.entry.js +1 -0
- package/dist/webcomponents/p-5b262705.entry.js +1 -0
- package/dist/webcomponents/p-5e503d7d.entry.js +1 -0
- package/dist/webcomponents/p-6047b960.entry.js +1 -0
- package/dist/webcomponents/p-6f294d5d.js +1 -0
- package/dist/webcomponents/p-7294eb89.entry.js +1 -0
- package/dist/webcomponents/p-746bfba6.entry.js +1 -0
- package/dist/webcomponents/p-7c6a355f.entry.js +1 -0
- package/dist/webcomponents/p-935d6f55.js +1 -0
- package/dist/webcomponents/{p-e924f2e1.entry.js → p-959250e3.entry.js} +1 -1
- package/dist/webcomponents/{p-b37d6888.entry.js → p-a130a884.entry.js} +1 -1
- package/dist/webcomponents/p-ac670a3e.js +1 -0
- package/dist/webcomponents/p-ae21ed6f.entry.js +19 -0
- package/dist/webcomponents/p-c071d8c1.entry.js +1 -0
- package/dist/webcomponents/p-c340b60f.js +1 -0
- package/dist/webcomponents/p-d5aab6b5.entry.js +1 -0
- package/dist/webcomponents/p-d5c80489.entry.js +1 -0
- package/dist/webcomponents/p-d776fe10.entry.js +1 -0
- package/dist/webcomponents/p-d8679fad.entry.js +1 -0
- package/dist/webcomponents/p-e84b3616.entry.js +1 -0
- package/dist/webcomponents/p-ea2cca2a.js +1 -0
- package/dist/webcomponents/webcomponents.esm.js +1 -1
- package/package.json +1 -1
- package/dist/cjs/Identity-1c4528b8.js +0 -49
- package/dist/cjs/business-additional-questions-schema-cbac27f2.js +0 -26
- package/dist/cjs/justifi-business-address-form-step.cjs.entry.js +0 -35
- package/dist/cjs/payload-parsers-9e72e80f.js +0 -99
- package/dist/cjs/utils-f5d82f21.js +0 -10
- package/dist/collection/api/mockData/MockOnboardingData.js +0 -117
- package/dist/collection/api/mockData/MockPayments.js +0 -243
- package/dist/collection/api/mockData/MockSubAccount.js +0 -102
- package/dist/collection/api/mockData/mockGrossVolumeReport.js +0 -125
- package/dist/collection/components/business-forms/business-form/business-address/test/business-address.e2e.js +0 -9
- package/dist/collection/components/business-forms/payment-provisioning/business-address/business-address-form-step.css +0 -2536
- package/dist/collection/components/business-forms/payment-provisioning/business-address/business-address-form-step.js +0 -97
- package/dist/collection/components/business-forms/payment-provisioning/business-address/test/business-address-form-step.spec.js +0 -97
- package/dist/collection/components/business-forms/schemas/business-owners-schema.js +0 -16
- package/dist/collection/components/card-form/test/card-form.e2e.js +0 -13
- package/dist/esm/Identity-5f8f916f.js +0 -46
- package/dist/esm/business-additional-questions-schema-2cb80f70.js +0 -23
- package/dist/esm/justifi-business-address-form-step.entry.js +0 -31
- package/dist/esm/payload-parsers-caea809d.js +0 -91
- package/dist/esm/utils-546ca6aa.js +0 -8
- package/dist/module/Identity.js +0 -46
- package/dist/module/justifi-business-address-form-step.d.ts +0 -11
- package/dist/module/justifi-business-address-form-step.js +0 -75
- package/dist/module/justifi-business-address-form.d.ts +0 -11
- package/dist/module/justifi-business-address-form.js +0 -6
- package/dist/types/api/mockData/MockOnboardingData.d.ts +0 -8
- package/dist/types/api/mockData/MockPayments.d.ts +0 -3
- package/dist/types/api/mockData/MockSubAccount.d.ts +0 -3
- package/dist/types/components/business-forms/business-form/business-address/business-address-form.d.ts +0 -9
- package/dist/types/components/business-forms/payment-provisioning/business-address/business-address-form-step.d.ts +0 -9
- package/dist/types/components/business-forms/schemas/business-owners-schema.d.ts +0 -33
- package/dist/webcomponents/p-03b1d0d5.entry.js +0 -1
- package/dist/webcomponents/p-0e189d6a.entry.js +0 -1
- package/dist/webcomponents/p-16dcf053.entry.js +0 -1
- package/dist/webcomponents/p-17d72f4a.js +0 -1
- package/dist/webcomponents/p-38ba2848.entry.js +0 -1
- package/dist/webcomponents/p-41870765.entry.js +0 -1
- package/dist/webcomponents/p-461f42b8.entry.js +0 -1
- package/dist/webcomponents/p-48c2400e.js +0 -1
- package/dist/webcomponents/p-491ca87f.js +0 -1
- package/dist/webcomponents/p-5be4e217.entry.js +0 -1
- package/dist/webcomponents/p-60714f2a.entry.js +0 -1
- package/dist/webcomponents/p-65500b31.entry.js +0 -19
- package/dist/webcomponents/p-6ed680e9.js +0 -1
- package/dist/webcomponents/p-7ec301b5.entry.js +0 -1
- package/dist/webcomponents/p-9207ccb2.entry.js +0 -1
- package/dist/webcomponents/p-9e4b81ad.entry.js +0 -1
- package/dist/webcomponents/p-a141c531.js +0 -1
- package/dist/webcomponents/p-a2dbe90f.entry.js +0 -1
- package/dist/webcomponents/p-a68519e5.entry.js +0 -1
- package/dist/webcomponents/p-af8363a1.entry.js +0 -1
- package/dist/webcomponents/p-b1bc23af.entry.js +0 -1
- package/dist/webcomponents/p-b5a3bf86.entry.js +0 -1
- package/dist/webcomponents/p-b8f22856.js +0 -1
- package/dist/webcomponents/p-d0761829.entry.js +0 -1
- package/dist/webcomponents/p-dbe32e75.entry.js +0 -1
- package/dist/webcomponents/p-e0c1cba8.js +0 -1
- package/dist/webcomponents/p-eed5f4ad.entry.js +0 -1
- package/dist/webcomponents/p-fe8a94c1.entry.js +0 -1
- /package/dist/collection/components/business-forms/{business-form/business-address/business-address-form.css → owner-form/identity-address/identity-address-form.css} +0 -0
- /package/dist/types/{api → home/runner/work/web-component-library/web-component-library/packages/webcomponents/.stencil}/mockData/mockGrossVolumeReport.d.ts +0 -0
- /package/dist/types/home/runner/work/web-component-library/web-component-library/packages/webcomponents/.stencil/{config.d.ts → packages/webcomponents/config.d.ts} +0 -0
|
@@ -1,11 +1,15 @@
|
|
|
1
|
+
import { h } from "@stencil/core";
|
|
1
2
|
import { newSpecPage } from "@stencil/core/testing";
|
|
2
3
|
import { GrossPaymentChart } from "../gross-payment-chart";
|
|
3
4
|
import { GrossPaymentChartCore } from "../gross-payment-chart-core";
|
|
5
|
+
import { ReportsService } from "../../../api/services/reports.service";
|
|
6
|
+
import { API_NOT_AUTHENTICATED_ERROR } from "../../../api/shared";
|
|
7
|
+
jest.mock("../../../api/services/reports.service");
|
|
4
8
|
describe('GrossPaymentChart', () => {
|
|
5
9
|
it('renders an error when no accountId and authToken is passed', async () => {
|
|
6
10
|
const page = await newSpecPage({
|
|
7
11
|
components: [GrossPaymentChart, GrossPaymentChartCore],
|
|
8
|
-
|
|
12
|
+
template: () => h("justifi-gross-payment-chart", null),
|
|
9
13
|
});
|
|
10
14
|
await page.waitForChanges();
|
|
11
15
|
expect(page.root).toMatchSnapshot();
|
|
@@ -13,7 +17,7 @@ describe('GrossPaymentChart', () => {
|
|
|
13
17
|
it('renders an error when no accountId is passed', async () => {
|
|
14
18
|
const page = await newSpecPage({
|
|
15
19
|
components: [GrossPaymentChart, GrossPaymentChartCore],
|
|
16
|
-
|
|
20
|
+
template: () => h("justifi-gross-payment-chart", { "auth-token": "abc" }),
|
|
17
21
|
});
|
|
18
22
|
await page.waitForChanges();
|
|
19
23
|
expect(page.root).toMatchSnapshot();
|
|
@@ -21,9 +25,57 @@ describe('GrossPaymentChart', () => {
|
|
|
21
25
|
it('renders an error when no authToken is passed', async () => {
|
|
22
26
|
const page = await newSpecPage({
|
|
23
27
|
components: [GrossPaymentChart, GrossPaymentChartCore],
|
|
24
|
-
|
|
28
|
+
template: () => h("justifi-gross-payment-chart", { "account-id": "abc" }),
|
|
25
29
|
});
|
|
26
30
|
await page.waitForChanges();
|
|
27
31
|
expect(page.root).toMatchSnapshot();
|
|
28
32
|
});
|
|
33
|
+
it('emits an error event when no accountId and authToken is passed', async () => {
|
|
34
|
+
const errorEvent = jest.fn();
|
|
35
|
+
const page = await newSpecPage({
|
|
36
|
+
components: [GrossPaymentChart, GrossPaymentChartCore],
|
|
37
|
+
template: () => h("justifi-gross-payment-chart", { "onError-event": errorEvent }),
|
|
38
|
+
});
|
|
39
|
+
await page.waitForChanges();
|
|
40
|
+
expect(errorEvent).toHaveBeenCalledWith(expect.objectContaining({
|
|
41
|
+
detail: {
|
|
42
|
+
errorCode: 'missing-props',
|
|
43
|
+
message: 'Account ID and Auth Token are required',
|
|
44
|
+
severity: 'error',
|
|
45
|
+
}
|
|
46
|
+
}));
|
|
47
|
+
});
|
|
48
|
+
it('emits an error event when fetch fails', async () => {
|
|
49
|
+
ReportsService.prototype.fetchGrossVolumeChartData = jest.fn().mockReturnValue(API_NOT_AUTHENTICATED_ERROR);
|
|
50
|
+
const errorEvent = jest.fn();
|
|
51
|
+
const page = await newSpecPage({
|
|
52
|
+
components: [GrossPaymentChart, GrossPaymentChartCore],
|
|
53
|
+
template: () => (h("justifi-gross-payment-chart", { "account-id": "abc", "auth-token": "abc", "onError-event": errorEvent })),
|
|
54
|
+
});
|
|
55
|
+
await page.waitForChanges();
|
|
56
|
+
expect(errorEvent).toHaveBeenCalledWith(expect.objectContaining({
|
|
57
|
+
detail: {
|
|
58
|
+
errorCode: 'not-authenticated',
|
|
59
|
+
message: 'Not Authenticated',
|
|
60
|
+
severity: 'error',
|
|
61
|
+
}
|
|
62
|
+
}));
|
|
63
|
+
});
|
|
64
|
+
it('emits an error event when error occurs', async () => {
|
|
65
|
+
ReportsService.prototype.fetchGrossVolumeChartData = jest.fn()
|
|
66
|
+
.mockRejectedValue(new Error('Network error'));
|
|
67
|
+
const errorEvent = jest.fn();
|
|
68
|
+
const page = await newSpecPage({
|
|
69
|
+
components: [GrossPaymentChart, GrossPaymentChartCore],
|
|
70
|
+
template: () => (h("justifi-gross-payment-chart", { "account-id": "abc", "auth-token": "abc", "onError-event": errorEvent })),
|
|
71
|
+
});
|
|
72
|
+
await page.waitForChanges();
|
|
73
|
+
expect(errorEvent).toHaveBeenCalledWith(expect.objectContaining({
|
|
74
|
+
detail: {
|
|
75
|
+
errorCode: 'fetch-error',
|
|
76
|
+
message: 'Network error',
|
|
77
|
+
severity: 'error',
|
|
78
|
+
}
|
|
79
|
+
}));
|
|
80
|
+
});
|
|
29
81
|
});
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { Payment } from "../../api";
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentErrorSeverity } from "../../api/ComponentError";
|
|
3
|
+
import { getErrorCode, getErrorMessage } from "../../api/services/utils";
|
|
3
4
|
export const makeGetPaymentDetails = ({ id, authToken, service }) => async ({ onSuccess, onError }) => {
|
|
5
|
+
var _a;
|
|
4
6
|
try {
|
|
5
7
|
const response = await service.fetchPayment(id, authToken);
|
|
6
8
|
if (!response.error) {
|
|
@@ -8,10 +10,20 @@ export const makeGetPaymentDetails = ({ id, authToken, service }) => async ({ on
|
|
|
8
10
|
}
|
|
9
11
|
else {
|
|
10
12
|
const responseError = getErrorMessage(response.error);
|
|
11
|
-
|
|
13
|
+
const code = getErrorCode((_a = response.error) === null || _a === void 0 ? void 0 : _a.code);
|
|
14
|
+
onError({
|
|
15
|
+
error: responseError,
|
|
16
|
+
code,
|
|
17
|
+
severity: ComponentErrorSeverity.ERROR,
|
|
18
|
+
});
|
|
12
19
|
}
|
|
13
20
|
}
|
|
14
21
|
catch (error) {
|
|
15
|
-
|
|
22
|
+
const code = getErrorCode(error === null || error === void 0 ? void 0 : error.code);
|
|
23
|
+
onError({
|
|
24
|
+
error: getErrorMessage(error),
|
|
25
|
+
code,
|
|
26
|
+
severity: ComponentErrorSeverity.ERROR,
|
|
27
|
+
});
|
|
16
28
|
}
|
|
17
29
|
};
|
|
@@ -24,8 +24,13 @@ export class PaymentDetailsCore {
|
|
|
24
24
|
this.loading = false;
|
|
25
25
|
this.errorMessage = null;
|
|
26
26
|
},
|
|
27
|
-
onError: (error) => {
|
|
27
|
+
onError: ({ error, code, severity }) => {
|
|
28
28
|
this.errorMessage = error;
|
|
29
|
+
this.errorEvent.emit({
|
|
30
|
+
errorCode: code,
|
|
31
|
+
message: error,
|
|
32
|
+
severity,
|
|
33
|
+
});
|
|
29
34
|
this.loading = false;
|
|
30
35
|
},
|
|
31
36
|
});
|
|
@@ -83,6 +88,30 @@ export class PaymentDetailsCore {
|
|
|
83
88
|
"errorMessage": {}
|
|
84
89
|
};
|
|
85
90
|
}
|
|
91
|
+
static get events() {
|
|
92
|
+
return [{
|
|
93
|
+
"method": "errorEvent",
|
|
94
|
+
"name": "error-event",
|
|
95
|
+
"bubbles": true,
|
|
96
|
+
"cancelable": true,
|
|
97
|
+
"composed": true,
|
|
98
|
+
"docs": {
|
|
99
|
+
"tags": [],
|
|
100
|
+
"text": ""
|
|
101
|
+
},
|
|
102
|
+
"complexType": {
|
|
103
|
+
"original": "ComponentError",
|
|
104
|
+
"resolved": "ComponentError",
|
|
105
|
+
"references": {
|
|
106
|
+
"ComponentError": {
|
|
107
|
+
"location": "import",
|
|
108
|
+
"path": "../../api/ComponentError",
|
|
109
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}];
|
|
114
|
+
}
|
|
86
115
|
static get watchers() {
|
|
87
116
|
return [{
|
|
88
117
|
"propName": "getPaymentDetails",
|
|
@@ -2,6 +2,7 @@ import { h } from "@stencil/core";
|
|
|
2
2
|
import { PaymentService } from "../../api/services/payment.service";
|
|
3
3
|
import { makeGetPaymentDetails } from "./get-payment-details";
|
|
4
4
|
import { ErrorState } from "../details/utils";
|
|
5
|
+
import { ComponentErrorCodes, ComponentErrorSeverity } from "../../api/ComponentError";
|
|
5
6
|
/**
|
|
6
7
|
* @exportedPart detail-loading-spinner
|
|
7
8
|
* @exportedPart detail-loading-state
|
|
@@ -28,6 +29,10 @@ import { ErrorState } from "../details/utils";
|
|
|
28
29
|
export class PaymentDetails {
|
|
29
30
|
constructor() {
|
|
30
31
|
this.paymentService = new PaymentService();
|
|
32
|
+
this.handleErrorEvent = event => {
|
|
33
|
+
this.errorMessage = event.detail.message;
|
|
34
|
+
this.errorEvent.emit(event.detail);
|
|
35
|
+
};
|
|
31
36
|
this.paymentId = undefined;
|
|
32
37
|
this.authToken = undefined;
|
|
33
38
|
this.getPaymentDetails = undefined;
|
|
@@ -49,13 +54,18 @@ export class PaymentDetails {
|
|
|
49
54
|
}
|
|
50
55
|
else {
|
|
51
56
|
this.errorMessage = 'Payment ID and Auth Token are required';
|
|
57
|
+
this.errorEvent.emit({
|
|
58
|
+
message: this.errorMessage,
|
|
59
|
+
errorCode: ComponentErrorCodes.MISSING_PROPS,
|
|
60
|
+
severity: ComponentErrorSeverity.ERROR,
|
|
61
|
+
});
|
|
52
62
|
}
|
|
53
63
|
}
|
|
54
64
|
render() {
|
|
55
65
|
if (this.errorMessage) {
|
|
56
66
|
return ErrorState(this.errorMessage);
|
|
57
67
|
}
|
|
58
|
-
return (h("payment-details-core", { getPaymentDetails: this.getPaymentDetails }));
|
|
68
|
+
return (h("payment-details-core", { getPaymentDetails: this.getPaymentDetails, "onError-event": this.handleErrorEvent }));
|
|
59
69
|
}
|
|
60
70
|
static get is() { return "justifi-payment-details"; }
|
|
61
71
|
static get encapsulation() { return "shadow"; }
|
|
@@ -103,6 +113,30 @@ export class PaymentDetails {
|
|
|
103
113
|
"errorMessage": {}
|
|
104
114
|
};
|
|
105
115
|
}
|
|
116
|
+
static get events() {
|
|
117
|
+
return [{
|
|
118
|
+
"method": "errorEvent",
|
|
119
|
+
"name": "error-event",
|
|
120
|
+
"bubbles": true,
|
|
121
|
+
"cancelable": true,
|
|
122
|
+
"composed": true,
|
|
123
|
+
"docs": {
|
|
124
|
+
"tags": [],
|
|
125
|
+
"text": ""
|
|
126
|
+
},
|
|
127
|
+
"complexType": {
|
|
128
|
+
"original": "ComponentError",
|
|
129
|
+
"resolved": "ComponentError",
|
|
130
|
+
"references": {
|
|
131
|
+
"ComponentError": {
|
|
132
|
+
"location": "import",
|
|
133
|
+
"path": "../../api/ComponentError",
|
|
134
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}];
|
|
139
|
+
}
|
|
106
140
|
static get watchers() {
|
|
107
141
|
return [{
|
|
108
142
|
"propName": "paymentId",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Payment } from "../../../api";
|
|
2
2
|
import { PaymentService } from "../../../api/services/payment.service";
|
|
3
3
|
import { makeGetPaymentDetails } from "../get-payment-details";
|
|
4
|
-
import mockResponse from "
|
|
4
|
+
import mockResponse from "../../../../../../mockData/mockPaymentDetailSuccess.json";
|
|
5
5
|
// Mock the PaymentService class
|
|
6
6
|
jest.mock('../../../api/services/payment.service');
|
|
7
7
|
describe('getPaymentDetails', () => {
|
|
@@ -44,7 +44,11 @@ describe('getPaymentDetails', () => {
|
|
|
44
44
|
});
|
|
45
45
|
await getPaymentDetails({ onSuccess, onError });
|
|
46
46
|
expect(onSuccess).not.toHaveBeenCalled();
|
|
47
|
-
expect(onError).toHaveBeenCalledWith(
|
|
47
|
+
expect(onError).toHaveBeenCalledWith({
|
|
48
|
+
code: 'fetch-error',
|
|
49
|
+
error: 'Error fetching payment',
|
|
50
|
+
severity: 'error',
|
|
51
|
+
});
|
|
48
52
|
});
|
|
49
53
|
it('should call onError with an error message on API failure', async () => {
|
|
50
54
|
const mockError = new Error('Error fetching payment');
|
|
@@ -59,6 +63,10 @@ describe('getPaymentDetails', () => {
|
|
|
59
63
|
});
|
|
60
64
|
await getPaymentDetails({ onSuccess, onError });
|
|
61
65
|
expect(onSuccess).not.toHaveBeenCalled();
|
|
62
|
-
expect(onError).toHaveBeenCalledWith(
|
|
66
|
+
expect(onError).toHaveBeenCalledWith({
|
|
67
|
+
code: 'fetch-error',
|
|
68
|
+
error: 'Error fetching payment',
|
|
69
|
+
severity: 'error',
|
|
70
|
+
});
|
|
63
71
|
});
|
|
64
72
|
});
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
+
import { h } from "@stencil/core";
|
|
1
2
|
import { newSpecPage } from "@stencil/core/testing";
|
|
2
|
-
import mockPaymentDetailsResponse from "
|
|
3
|
+
import mockPaymentDetailsResponse from "../../../../../../mockData/mockPaymentDetailSuccess.json";
|
|
3
4
|
import { PaymentDetailsCore } from "../payment-details-core";
|
|
4
5
|
import { Details } from "../../details/details";
|
|
5
6
|
import { makeGetPaymentDetails } from "../get-payment-details";
|
|
7
|
+
import { API_NOT_AUTHENTICATED_ERROR } from "../../../api/shared";
|
|
6
8
|
describe('payment-details-core', () => {
|
|
7
9
|
const components = [PaymentDetailsCore, Details];
|
|
8
10
|
it('it renders properly with fetched data', async () => {
|
|
9
11
|
const mockPaymentService = {
|
|
10
12
|
fetchPayment: jest.fn().mockResolvedValue(mockPaymentDetailsResponse),
|
|
11
13
|
};
|
|
12
|
-
const
|
|
13
|
-
components,
|
|
14
|
-
html: `<payment-details-core></payment-details-core>`,
|
|
15
|
-
});
|
|
16
|
-
page.rootInstance.componentWillLoad = () => { };
|
|
17
|
-
page.rootInstance.getPaymentDetails = makeGetPaymentDetails({
|
|
14
|
+
const getPaymentDetails = makeGetPaymentDetails({
|
|
18
15
|
id: '123',
|
|
19
16
|
authToken: '123',
|
|
20
17
|
service: mockPaymentService
|
|
21
18
|
});
|
|
22
|
-
page
|
|
19
|
+
const page = await newSpecPage({
|
|
20
|
+
components,
|
|
21
|
+
template: () => h("payment-details-core", { getPaymentDetails: getPaymentDetails }),
|
|
22
|
+
});
|
|
23
23
|
await page.waitForChanges();
|
|
24
24
|
expect(page.rootInstance.payment).toEqual(expect.objectContaining({ id: mockPaymentDetailsResponse.data.id }));
|
|
25
25
|
expect(mockPaymentService.fetchPayment).toHaveBeenCalled();
|
|
@@ -36,12 +36,55 @@ describe('payment-details-core', () => {
|
|
|
36
36
|
});
|
|
37
37
|
const page = await newSpecPage({
|
|
38
38
|
components,
|
|
39
|
-
|
|
39
|
+
template: () => h("payment-details-core", { getPaymentDetails: getPaymentDetails }),
|
|
40
40
|
});
|
|
41
|
-
page.rootInstance.componentWillLoad = () => { };
|
|
42
|
-
page.rootInstance.getPaymentDetails = getPaymentDetails;
|
|
43
|
-
page.rootInstance.fetchData();
|
|
44
41
|
await page.waitForChanges();
|
|
45
42
|
expect(page.root).toMatchSnapshot();
|
|
46
43
|
});
|
|
44
|
+
it('emits an error event when there is an error fetching data', async () => {
|
|
45
|
+
const mockService = {
|
|
46
|
+
fetchPayment: jest.fn().mockRejectedValue(new Error('Fetch error'))
|
|
47
|
+
};
|
|
48
|
+
const getPaymentDetails = makeGetPaymentDetails({
|
|
49
|
+
id: 'some-id',
|
|
50
|
+
authToken: 'some-auth-token',
|
|
51
|
+
service: mockService
|
|
52
|
+
});
|
|
53
|
+
const errorSpy = jest.fn();
|
|
54
|
+
const page = await newSpecPage({
|
|
55
|
+
components,
|
|
56
|
+
template: () => h("payment-details-core", { getPaymentDetails: getPaymentDetails, "onError-event": errorSpy }),
|
|
57
|
+
});
|
|
58
|
+
await page.waitForChanges();
|
|
59
|
+
expect(errorSpy).toHaveBeenCalledWith(expect.objectContaining({
|
|
60
|
+
detail: {
|
|
61
|
+
message: 'Fetch error',
|
|
62
|
+
errorCode: 'fetch-error',
|
|
63
|
+
severity: 'error'
|
|
64
|
+
}
|
|
65
|
+
}));
|
|
66
|
+
});
|
|
67
|
+
it('emits an error event when API return an error', async () => {
|
|
68
|
+
const mockService = {
|
|
69
|
+
fetchPayment: jest.fn().mockResolvedValue(API_NOT_AUTHENTICATED_ERROR)
|
|
70
|
+
};
|
|
71
|
+
const getPaymentDetails = makeGetPaymentDetails({
|
|
72
|
+
id: 'some-id',
|
|
73
|
+
authToken: 'some-auth-token',
|
|
74
|
+
service: mockService
|
|
75
|
+
});
|
|
76
|
+
const errorSpy = jest.fn();
|
|
77
|
+
const page = await newSpecPage({
|
|
78
|
+
components,
|
|
79
|
+
template: () => h("payment-details-core", { getPaymentDetails: getPaymentDetails, "onError-event": errorSpy }),
|
|
80
|
+
});
|
|
81
|
+
await page.waitForChanges();
|
|
82
|
+
expect(errorSpy).toHaveBeenCalledWith(expect.objectContaining({
|
|
83
|
+
detail: {
|
|
84
|
+
message: 'Not Authenticated',
|
|
85
|
+
errorCode: 'not-authenticated',
|
|
86
|
+
severity: 'error'
|
|
87
|
+
}
|
|
88
|
+
}));
|
|
89
|
+
});
|
|
47
90
|
});
|
|
@@ -1,13 +1,17 @@
|
|
|
1
|
+
import { h } from "@stencil/core";
|
|
1
2
|
import { newSpecPage } from "@stencil/core/testing";
|
|
2
3
|
import { PaymentDetails } from "../payment-details";
|
|
3
4
|
import { PaymentDetailsCore } from "../payment-details-core";
|
|
4
5
|
import { Details } from "../../details/details";
|
|
6
|
+
import { PaymentService } from "../../../api/services/payment.service";
|
|
7
|
+
import { API_NOT_AUTHENTICATED_ERROR } from "../../../api/shared";
|
|
8
|
+
jest.mock('../../../api/services/payment.service');
|
|
5
9
|
describe('payment-details', () => {
|
|
6
10
|
const components = [PaymentDetails, PaymentDetailsCore, Details];
|
|
7
11
|
it('renders an error message when paymentId and authToken are not provided', async () => {
|
|
8
12
|
const page = await newSpecPage({
|
|
9
13
|
components,
|
|
10
|
-
|
|
14
|
+
template: () => h("justifi-payment-details", null),
|
|
11
15
|
});
|
|
12
16
|
await page.waitForChanges();
|
|
13
17
|
expect(page.root).toMatchSnapshot();
|
|
@@ -15,7 +19,7 @@ describe('payment-details', () => {
|
|
|
15
19
|
it('renders an error message when paymentId is not provided', async () => {
|
|
16
20
|
const page = await newSpecPage({
|
|
17
21
|
components,
|
|
18
|
-
|
|
22
|
+
template: () => h("justifi-payment-details", { "auth-token": "abc" }),
|
|
19
23
|
});
|
|
20
24
|
await page.waitForChanges();
|
|
21
25
|
expect(page.root).toMatchSnapshot();
|
|
@@ -23,9 +27,71 @@ describe('payment-details', () => {
|
|
|
23
27
|
it('renders an error message when authToken is not provided', async () => {
|
|
24
28
|
const page = await newSpecPage({
|
|
25
29
|
components,
|
|
26
|
-
|
|
30
|
+
template: () => h("justifi-payment-details", { "payment-id": "abc" }),
|
|
27
31
|
});
|
|
28
32
|
await page.waitForChanges();
|
|
29
33
|
expect(page.root).toMatchSnapshot();
|
|
30
34
|
});
|
|
35
|
+
it('emits an error event when there is no auth token', async () => {
|
|
36
|
+
const errorSpy = jest.fn();
|
|
37
|
+
const page = await newSpecPage({
|
|
38
|
+
components,
|
|
39
|
+
template: () => h("justifi-payment-details", { "payment-id": "abc", "onError-event": errorSpy }),
|
|
40
|
+
});
|
|
41
|
+
await page.waitForChanges();
|
|
42
|
+
expect(errorSpy).toHaveBeenCalledWith(expect.objectContaining({
|
|
43
|
+
detail: {
|
|
44
|
+
message: 'Payment ID and Auth Token are required',
|
|
45
|
+
errorCode: 'missing-props',
|
|
46
|
+
severity: 'error'
|
|
47
|
+
}
|
|
48
|
+
}));
|
|
49
|
+
});
|
|
50
|
+
it('emits an error event when there is no payment-id', async () => {
|
|
51
|
+
const errorSpy = jest.fn();
|
|
52
|
+
const page = await newSpecPage({
|
|
53
|
+
components,
|
|
54
|
+
template: () => h("justifi-payment-details", { "auth-token": "abc", "onError-event": errorSpy }),
|
|
55
|
+
});
|
|
56
|
+
await page.waitForChanges();
|
|
57
|
+
expect(errorSpy).toHaveBeenCalledWith(expect.objectContaining({
|
|
58
|
+
detail: {
|
|
59
|
+
message: 'Payment ID and Auth Token are required',
|
|
60
|
+
errorCode: 'missing-props',
|
|
61
|
+
severity: 'error'
|
|
62
|
+
}
|
|
63
|
+
}));
|
|
64
|
+
});
|
|
65
|
+
it('emits an error event when fetch fails', async () => {
|
|
66
|
+
PaymentService.prototype.fetchPayment = jest.fn().mockRejectedValue(new Error('Fetch error'));
|
|
67
|
+
const errorSpy = jest.fn();
|
|
68
|
+
const page = await newSpecPage({
|
|
69
|
+
components,
|
|
70
|
+
template: () => h("justifi-payment-details", { "payment-id": "abc", "auth-token": "abc", "onError-event": errorSpy }),
|
|
71
|
+
});
|
|
72
|
+
await page.waitForChanges();
|
|
73
|
+
expect(errorSpy).toHaveBeenCalledWith(expect.objectContaining({
|
|
74
|
+
detail: {
|
|
75
|
+
message: 'Fetch error',
|
|
76
|
+
errorCode: 'fetch-error',
|
|
77
|
+
severity: 'error'
|
|
78
|
+
}
|
|
79
|
+
}));
|
|
80
|
+
});
|
|
81
|
+
it('emits an error event when API returns an error', async () => {
|
|
82
|
+
PaymentService.prototype.fetchPayment = jest.fn().mockResolvedValue(API_NOT_AUTHENTICATED_ERROR);
|
|
83
|
+
const errorSpy = jest.fn();
|
|
84
|
+
const page = await newSpecPage({
|
|
85
|
+
components,
|
|
86
|
+
template: () => h("justifi-payment-details", { "payment-id": "abc", "auth-token": "abc", "onError-event": errorSpy }),
|
|
87
|
+
});
|
|
88
|
+
await page.waitForChanges();
|
|
89
|
+
expect(errorSpy).toHaveBeenCalledWith(expect.objectContaining({
|
|
90
|
+
detail: {
|
|
91
|
+
message: 'Not Authenticated',
|
|
92
|
+
errorCode: 'not-authenticated',
|
|
93
|
+
severity: 'error'
|
|
94
|
+
}
|
|
95
|
+
}));
|
|
96
|
+
});
|
|
31
97
|
});
|
|
@@ -2,6 +2,8 @@ import { h, Host } from "@stencil/core";
|
|
|
2
2
|
import { PaymentMethodTypes } from "../../api";
|
|
3
3
|
import { loadFontsOnParent } from "../../utils/utils";
|
|
4
4
|
import { config } from "../../../config";
|
|
5
|
+
import { ComponentErrorCodes, ComponentErrorSeverity } from "../../api/ComponentError";
|
|
6
|
+
import { getErrorMessage } from "../../api/services/utils";
|
|
5
7
|
export class PaymentForm {
|
|
6
8
|
constructor() {
|
|
7
9
|
this.bankAccount = undefined;
|
|
@@ -23,6 +25,9 @@ export class PaymentForm {
|
|
|
23
25
|
async enableSubmitButton() {
|
|
24
26
|
this.submitButtonEnabled = true;
|
|
25
27
|
}
|
|
28
|
+
async disableSubmitButton() {
|
|
29
|
+
this.submitButtonEnabled = false;
|
|
30
|
+
}
|
|
26
31
|
paymentMethodSelectedHandler(event) {
|
|
27
32
|
const paymentMethodType = event.detail;
|
|
28
33
|
this.selectedPaymentMethodType = paymentMethodType;
|
|
@@ -41,12 +46,20 @@ export class PaymentForm {
|
|
|
41
46
|
const paymentMethodData = Object.assign({ email: this.email }, billingFormFieldValues);
|
|
42
47
|
const tokenizeResponse = await this.paymentMethodFormRef.tokenize(this.clientId, paymentMethodData, this.accountId);
|
|
43
48
|
if (tokenizeResponse.error) {
|
|
44
|
-
|
|
49
|
+
this.errorEvent.emit({
|
|
50
|
+
errorCode: ComponentErrorCodes.TOKENIZE_ERROR,
|
|
51
|
+
message: tokenizeResponse.error.message,
|
|
52
|
+
severity: ComponentErrorSeverity.ERROR
|
|
53
|
+
});
|
|
45
54
|
}
|
|
46
55
|
this.submitted.emit(tokenizeResponse);
|
|
47
56
|
}
|
|
48
57
|
catch (error) {
|
|
49
|
-
|
|
58
|
+
this.errorEvent.emit({
|
|
59
|
+
errorCode: ComponentErrorCodes.UNKNOWN_ERROR,
|
|
60
|
+
message: getErrorMessage(error),
|
|
61
|
+
severity: ComponentErrorSeverity.ERROR
|
|
62
|
+
});
|
|
50
63
|
}
|
|
51
64
|
finally {
|
|
52
65
|
this.isLoading = false;
|
|
@@ -61,7 +74,7 @@ export class PaymentForm {
|
|
|
61
74
|
if (el) {
|
|
62
75
|
this.billingFormRef = el;
|
|
63
76
|
}
|
|
64
|
-
} })), h("slot", { name: 'insurance' }), h("div", { class: "col-12" }, h("button", { type: "submit", onClick: event => this.submit(event), disabled: !this.submitButtonEnabled || this.isLoading, class: `btn btn-primary jfi-submit-button${this.isLoading ? ' jfi-submit-button-loading' : ''}` }, this.isLoading ?
|
|
77
|
+
} })), h("slot", { name: 'insurance' }), h("div", { class: "col-12" }, h("button", { "data-testid": "submit-button", type: "submit", onClick: event => this.submit(event), disabled: !this.submitButtonEnabled || this.isLoading, class: `btn btn-primary jfi-submit-button${this.isLoading ? ' jfi-submit-button-loading' : ''}` }, this.isLoading ?
|
|
65
78
|
h("div", { class: "spinner-border spinner-border-sm", role: "status" }, h("span", { class: "visually-hidden" }, "Loading...")) :
|
|
66
79
|
this.submitButtonText || 'Submit')))));
|
|
67
80
|
}
|
|
@@ -213,6 +226,27 @@ export class PaymentForm {
|
|
|
213
226
|
}
|
|
214
227
|
}
|
|
215
228
|
}
|
|
229
|
+
}, {
|
|
230
|
+
"method": "errorEvent",
|
|
231
|
+
"name": "error-event",
|
|
232
|
+
"bubbles": true,
|
|
233
|
+
"cancelable": true,
|
|
234
|
+
"composed": true,
|
|
235
|
+
"docs": {
|
|
236
|
+
"tags": [],
|
|
237
|
+
"text": ""
|
|
238
|
+
},
|
|
239
|
+
"complexType": {
|
|
240
|
+
"original": "ComponentError",
|
|
241
|
+
"resolved": "ComponentError",
|
|
242
|
+
"references": {
|
|
243
|
+
"ComponentError": {
|
|
244
|
+
"location": "import",
|
|
245
|
+
"path": "../../api/ComponentError",
|
|
246
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
216
250
|
}];
|
|
217
251
|
}
|
|
218
252
|
static get methods() {
|
|
@@ -259,6 +293,23 @@ export class PaymentForm {
|
|
|
259
293
|
"text": "",
|
|
260
294
|
"tags": []
|
|
261
295
|
}
|
|
296
|
+
},
|
|
297
|
+
"disableSubmitButton": {
|
|
298
|
+
"complexType": {
|
|
299
|
+
"signature": "() => Promise<void>",
|
|
300
|
+
"parameters": [],
|
|
301
|
+
"references": {
|
|
302
|
+
"Promise": {
|
|
303
|
+
"location": "global",
|
|
304
|
+
"id": "global::Promise"
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
"return": "Promise<void>"
|
|
308
|
+
},
|
|
309
|
+
"docs": {
|
|
310
|
+
"text": "",
|
|
311
|
+
"tags": []
|
|
312
|
+
}
|
|
262
313
|
}
|
|
263
314
|
};
|
|
264
315
|
}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
import { h } from "@stencil/core";
|
|
1
2
|
import { newSpecPage } from "@stencil/core/testing";
|
|
2
3
|
import { PaymentForm } from "../payment-form";
|
|
3
4
|
import { PaymentMethodTypes } from "../../../api";
|
|
4
5
|
import { config } from "../../../../config";
|
|
6
|
+
import { PaymentMethodSelector } from "../payment-method-selector";
|
|
7
|
+
import { PaymentMethodForm } from "../../payment-method-form/payment-method-form";
|
|
8
|
+
import { BillingForm } from "../../billing-form/billing-form";
|
|
5
9
|
describe('justifi-payment-form', () => {
|
|
6
10
|
it('should update submitButtonEnabled state when enableSubmitButton method is called', async () => {
|
|
7
11
|
// Mock component
|
|
@@ -157,7 +161,7 @@ describe('justifi-payment-form', () => {
|
|
|
157
161
|
</div>
|
|
158
162
|
<slot name="insurance"></slot>
|
|
159
163
|
<div class="col-12">
|
|
160
|
-
<button class="btn btn-primary jfi-submit-button" type="submit">
|
|
164
|
+
<button class="btn btn-primary jfi-submit-button" data-testid="submit-button" type="submit">
|
|
161
165
|
Submit
|
|
162
166
|
</button>
|
|
163
167
|
</div>
|
|
@@ -166,4 +170,59 @@ describe('justifi-payment-form', () => {
|
|
|
166
170
|
</justifi-payment-form>
|
|
167
171
|
`);
|
|
168
172
|
});
|
|
173
|
+
it('emits error event when submit fails', async () => {
|
|
174
|
+
const clientId = 'some-client';
|
|
175
|
+
const errorSpy = jest.fn();
|
|
176
|
+
const page = await newSpecPage({
|
|
177
|
+
components: [PaymentForm, PaymentMethodSelector, PaymentMethodForm, BillingForm],
|
|
178
|
+
template: () => h("justifi-payment-form", { clientId: clientId, "onError-event": errorSpy }),
|
|
179
|
+
});
|
|
180
|
+
page.rootInstance.paymentMethodFormRef = {
|
|
181
|
+
validate: jest.fn().mockResolvedValue({ isValid: true }),
|
|
182
|
+
tokenize: jest.fn().mockRejectedValue(new Error('Tokenize error')),
|
|
183
|
+
};
|
|
184
|
+
;
|
|
185
|
+
page.rootInstance.billingFormRef = {
|
|
186
|
+
validate: jest.fn().mockResolvedValue({ isValid: true }),
|
|
187
|
+
getValues: jest.fn().mockResolvedValue({}),
|
|
188
|
+
};
|
|
189
|
+
await page.waitForChanges();
|
|
190
|
+
const submitButton = page.root.shadowRoot.querySelector('[data-testid="submit-button"]');
|
|
191
|
+
submitButton.click();
|
|
192
|
+
await page.waitForChanges();
|
|
193
|
+
expect(errorSpy).toHaveBeenCalledWith(expect.objectContaining({
|
|
194
|
+
detail: {
|
|
195
|
+
errorCode: 'unknown-error',
|
|
196
|
+
message: 'Tokenize error',
|
|
197
|
+
severity: 'error',
|
|
198
|
+
}
|
|
199
|
+
}));
|
|
200
|
+
});
|
|
201
|
+
it('emits error event when tokenize fails', async () => {
|
|
202
|
+
const clientId = 'some-client';
|
|
203
|
+
const errorSpy = jest.fn();
|
|
204
|
+
const page = await newSpecPage({
|
|
205
|
+
components: [PaymentForm, PaymentMethodSelector, PaymentMethodForm, BillingForm],
|
|
206
|
+
template: () => h("justifi-payment-form", { clientId: clientId, "onError-event": errorSpy }),
|
|
207
|
+
});
|
|
208
|
+
page.rootInstance.paymentMethodFormRef = {
|
|
209
|
+
validate: jest.fn().mockResolvedValue({ isValid: true }),
|
|
210
|
+
tokenize: jest.fn().mockResolvedValue({ error: { message: 'Tokenize error' } }),
|
|
211
|
+
};
|
|
212
|
+
page.rootInstance.billingFormRef = {
|
|
213
|
+
validate: jest.fn().mockResolvedValue({ isValid: true }),
|
|
214
|
+
getValues: jest.fn().mockResolvedValue({}),
|
|
215
|
+
};
|
|
216
|
+
await page.waitForChanges();
|
|
217
|
+
const submitButton = page.root.shadowRoot.querySelector('[data-testid="submit-button"]');
|
|
218
|
+
submitButton.click();
|
|
219
|
+
await page.waitForChanges();
|
|
220
|
+
expect(errorSpy).toHaveBeenCalledWith(expect.objectContaining({
|
|
221
|
+
detail: {
|
|
222
|
+
errorCode: 'tokenize-error',
|
|
223
|
+
message: 'Tokenize error',
|
|
224
|
+
severity: 'error',
|
|
225
|
+
}
|
|
226
|
+
}));
|
|
227
|
+
});
|
|
169
228
|
});
|