2021-04-09 09:03:59 +02:00
|
|
|
import React, { ReactElement, ReactNode } from 'react';
|
|
|
|
import { IApplication } from '../../models/application';
|
|
|
|
import { CartItems } from '../../models/payment';
|
|
|
|
import { User } from '../../models/user';
|
|
|
|
import { PaymentSchedule } from '../../models/payment-schedule';
|
|
|
|
import { Loader } from '../base/loader';
|
|
|
|
import { react2angular } from 'react2angular';
|
|
|
|
import SettingAPI from '../../api/setting';
|
|
|
|
import { SettingName } from '../../models/setting';
|
|
|
|
import { StripeModal } from './stripe/stripe-modal';
|
|
|
|
import { PayZenModal } from './payzen/payzen-modal';
|
|
|
|
|
|
|
|
declare var Application: IApplication;
|
|
|
|
|
|
|
|
interface PaymentModalProps {
|
|
|
|
isOpen: boolean,
|
|
|
|
toggleModal: () => void,
|
|
|
|
afterSuccess: (result: any) => void,
|
|
|
|
cartItems: CartItems,
|
|
|
|
currentUser: User,
|
|
|
|
schedule: PaymentSchedule,
|
|
|
|
customer: User
|
|
|
|
}
|
|
|
|
|
|
|
|
// initial request to the API
|
|
|
|
const paymentGateway = SettingAPI.get(SettingName.PaymentGateway);
|
|
|
|
|
2021-04-09 12:09:54 +02:00
|
|
|
/**
|
|
|
|
* This component open a modal dialog for the configured payment gateway, allowing the user to input his card data
|
|
|
|
* to process an online payment.
|
|
|
|
*/
|
2021-04-09 09:03:59 +02:00
|
|
|
const PaymentModal: React.FC<PaymentModalProps> = ({ isOpen, toggleModal, afterSuccess, currentUser, schedule , cartItems, customer }) => {
|
|
|
|
const gateway = paymentGateway.read();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the Stripe payment modal
|
|
|
|
*/
|
|
|
|
const renderStripeModal = (): ReactElement => {
|
|
|
|
return <StripeModal isOpen={isOpen}
|
|
|
|
toggleModal={toggleModal}
|
|
|
|
afterSuccess={afterSuccess}
|
|
|
|
cartItems={cartItems}
|
|
|
|
currentUser={currentUser}
|
|
|
|
schedule={schedule}
|
|
|
|
customer={customer} />
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the PayZen payment modal
|
|
|
|
*/
|
|
|
|
const renderPayZenModal = (): ReactElement => {
|
|
|
|
return <PayZenModal isOpen={isOpen}
|
|
|
|
toggleModal={toggleModal}
|
|
|
|
afterSuccess={afterSuccess}
|
|
|
|
cartItems={cartItems}
|
|
|
|
currentUser={currentUser}
|
|
|
|
schedule={schedule}
|
|
|
|
customer={customer} />
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine which gateway is enabled and return the appropriate payment modal
|
|
|
|
*/
|
|
|
|
switch (gateway.value) {
|
|
|
|
case 'stripe':
|
|
|
|
return renderStripeModal();
|
|
|
|
case 'payzen':
|
|
|
|
return renderPayZenModal();
|
|
|
|
default:
|
|
|
|
console.error(`[PaymentModal] Unimplemented gateway: ${gateway.value}`);
|
|
|
|
return <div />
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const PaymentModalWrapper: React.FC<PaymentModalProps> = ({ isOpen, toggleModal, afterSuccess, currentUser, schedule , cartItems, customer }) => {
|
|
|
|
return (
|
|
|
|
<Loader>
|
|
|
|
<PaymentModal isOpen={isOpen} toggleModal={toggleModal} afterSuccess={afterSuccess} currentUser={currentUser} schedule={schedule} cartItems={cartItems} customer={customer} />
|
|
|
|
</Loader>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Application.Components.component('paymentModal', react2angular(PaymentModalWrapper, ['isOpen', 'toggleModal', 'afterSuccess','currentUser', 'schedule', 'cartItems', 'customer']));
|