2021-04-08 15:21:24 +02:00
|
|
|
import React, { FunctionComponent, ReactNode, useEffect, useState } from 'react';
|
|
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
import WalletLib from '../../lib/wallet';
|
|
|
|
import { WalletInfo } from '../wallet-info';
|
2021-04-09 08:39:03 +02:00
|
|
|
import { FabModal, ModalSize } from '../base/fab-modal';
|
|
|
|
import { HtmlTranslate } from '../base/html-translate';
|
2021-04-08 15:21:24 +02:00
|
|
|
import { CustomAssetName } from '../../models/custom-asset';
|
|
|
|
import { IFablab } from '../../models/fablab';
|
2021-05-21 18:25:18 +02:00
|
|
|
import { ShoppingCart } from '../../models/payment';
|
2021-04-08 15:21:24 +02:00
|
|
|
import { PaymentSchedule } from '../../models/payment-schedule';
|
|
|
|
import { User } from '../../models/user';
|
|
|
|
import CustomAssetAPI from '../../api/custom-asset';
|
|
|
|
import PriceAPI from '../../api/price';
|
|
|
|
import WalletAPI from '../../api/wallet';
|
2021-06-01 11:01:38 +02:00
|
|
|
import { Invoice } from '../../models/invoice';
|
2021-06-01 11:24:43 +02:00
|
|
|
import SettingAPI from '../../api/setting';
|
|
|
|
import { SettingName } from '../../models/setting';
|
|
|
|
import { ComputePriceResult } from '../../models/price';
|
|
|
|
import { Wallet } from '../../models/wallet';
|
2021-04-08 15:21:24 +02:00
|
|
|
|
|
|
|
declare var Fablab: IFablab;
|
|
|
|
|
|
|
|
|
|
|
|
export interface GatewayFormProps {
|
|
|
|
onSubmit: () => void,
|
2021-06-01 11:01:38 +02:00
|
|
|
onSuccess: (result: Invoice|PaymentSchedule) => void,
|
2021-04-08 15:21:24 +02:00
|
|
|
onError: (message: string) => void,
|
|
|
|
customer: User,
|
|
|
|
operator: User,
|
|
|
|
className?: string,
|
|
|
|
paymentSchedule?: boolean,
|
2021-05-21 18:25:18 +02:00
|
|
|
cart?: ShoppingCart,
|
2021-04-08 15:21:24 +02:00
|
|
|
formId: string,
|
|
|
|
}
|
|
|
|
|
2021-04-09 08:40:46 +02:00
|
|
|
interface AbstractPaymentModalProps {
|
2021-04-08 15:21:24 +02:00
|
|
|
isOpen: boolean,
|
|
|
|
toggleModal: () => void,
|
2021-06-01 11:01:38 +02:00
|
|
|
afterSuccess: (result: Invoice|PaymentSchedule) => void,
|
2021-05-21 18:25:18 +02:00
|
|
|
cart: ShoppingCart,
|
2021-04-08 15:21:24 +02:00
|
|
|
currentUser: User,
|
|
|
|
schedule: PaymentSchedule,
|
|
|
|
customer: User,
|
|
|
|
logoFooter: ReactNode,
|
|
|
|
GatewayForm: FunctionComponent<GatewayFormProps>,
|
|
|
|
formId: string,
|
|
|
|
className?: string,
|
|
|
|
formClassName?: string,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// initial request to the API
|
|
|
|
const cgvFile = CustomAssetAPI.get(CustomAssetName.CgvFile);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This component is an abstract modal that must be extended by each payment gateway to include its payment form.
|
2021-04-09 12:09:54 +02:00
|
|
|
*
|
|
|
|
* This component must not be called directly but must be extended for each implemented payment gateway
|
|
|
|
* @see https://reactjs.org/docs/composition-vs-inheritance.html
|
2021-04-08 15:21:24 +02:00
|
|
|
*/
|
2021-05-21 18:25:18 +02:00
|
|
|
export const AbstractPaymentModal: React.FC<AbstractPaymentModalProps> = ({ isOpen, toggleModal, afterSuccess, cart, currentUser, schedule, customer, logoFooter, GatewayForm, formId, className, formClassName }) => {
|
2021-04-08 15:21:24 +02:00
|
|
|
// customer's wallet
|
2021-06-01 11:24:43 +02:00
|
|
|
const [wallet, setWallet] = useState<Wallet>(null);
|
2021-04-08 15:21:24 +02:00
|
|
|
// server-computed price with all details
|
2021-06-01 11:24:43 +02:00
|
|
|
const [price, setPrice] = useState<ComputePriceResult>(null);
|
2021-04-08 15:21:24 +02:00
|
|
|
// remaining price = total price - wallet amount
|
2021-06-01 11:24:43 +02:00
|
|
|
const [remainingPrice, setRemainingPrice] = useState<number>(0);
|
2021-04-08 15:21:24 +02:00
|
|
|
// is the component ready to display?
|
2021-06-01 11:24:43 +02:00
|
|
|
const [ready, setReady] = useState<boolean>(false);
|
2021-04-08 15:21:24 +02:00
|
|
|
// errors to display in the UI (gateway errors mainly)
|
2021-06-01 11:24:43 +02:00
|
|
|
const [errors, setErrors] = useState<string>(null);
|
2021-04-08 15:21:24 +02:00
|
|
|
// are we currently processing the payment (ie. the form was submit, but the process is still running)?
|
2021-06-01 11:24:43 +02:00
|
|
|
const [submitState, setSubmitState] = useState<boolean>(false);
|
2021-04-08 15:21:24 +02:00
|
|
|
// did the user accepts the terms of services (CGV)?
|
2021-06-01 11:24:43 +02:00
|
|
|
const [tos, setTos] = useState<boolean>(false);
|
|
|
|
// currently active payment gateway
|
|
|
|
const [gateway, setGateway] = useState<string>(null);
|
2021-04-08 15:21:24 +02:00
|
|
|
|
|
|
|
const { t } = useTranslation('shared');
|
|
|
|
const cgv = cgvFile.read();
|
|
|
|
|
|
|
|
|
2021-06-01 11:24:43 +02:00
|
|
|
/**
|
|
|
|
* When the component is loaded first, get the name of the currently active payment modal
|
|
|
|
*/
|
|
|
|
useEffect(() => {
|
|
|
|
const api = new SettingAPI();
|
|
|
|
api.get(SettingName.PaymentGateway).then((setting) => {
|
|
|
|
// we capitalize the first letter of the name
|
|
|
|
setGateway(setting.value.replace(/^\w/, (c) => c.toUpperCase()));
|
|
|
|
})
|
|
|
|
}, []);
|
|
|
|
|
2021-04-08 15:21:24 +02:00
|
|
|
/**
|
|
|
|
* On each display:
|
|
|
|
* - Refresh the wallet
|
|
|
|
* - Refresh the price
|
|
|
|
* - Refresh the remaining price
|
|
|
|
*/
|
|
|
|
useEffect(() => {
|
2021-05-21 18:25:18 +02:00
|
|
|
if (!cart) return;
|
|
|
|
WalletAPI.getByUser(cart.customer_id).then((wallet) => {
|
2021-04-08 15:21:24 +02:00
|
|
|
setWallet(wallet);
|
2021-05-21 18:25:18 +02:00
|
|
|
PriceAPI.compute(cart).then((res) => {
|
2021-04-08 15:21:24 +02:00
|
|
|
setPrice(res);
|
|
|
|
const wLib = new WalletLib(wallet);
|
|
|
|
setRemainingPrice(wLib.computeRemainingPrice(res.price));
|
|
|
|
setReady(true);
|
|
|
|
})
|
|
|
|
})
|
2021-05-21 18:25:18 +02:00
|
|
|
}, [cart]);
|
2021-04-08 15:21:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if there is currently an error to display
|
|
|
|
*/
|
|
|
|
const hasErrors = (): boolean => {
|
|
|
|
return errors !== null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the user accepts the Terms of Sales document
|
|
|
|
*/
|
|
|
|
const hasCgv = (): boolean => {
|
|
|
|
return cgv != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Triggered when the user accepts or declines the Terms of Sales
|
|
|
|
*/
|
|
|
|
const toggleTos = (): void => {
|
|
|
|
setTos(!tos);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if we are currently creating a payment schedule
|
|
|
|
*/
|
|
|
|
const isPaymentSchedule = (): boolean => {
|
|
|
|
return schedule !== undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the formatted localized amount for the given price (eg. 20.5 => "20,50 €")
|
|
|
|
*/
|
|
|
|
const formatPrice = (amount: number): string => {
|
|
|
|
return new Intl.NumberFormat(Fablab.intl_locale, {style: 'currency', currency: Fablab.intl_currency}).format(amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the component as 'currently submitting'
|
|
|
|
*/
|
|
|
|
const handleSubmit = (): void => {
|
|
|
|
setSubmitState(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* After sending the form with success, process the resulting payment method
|
|
|
|
*/
|
2021-06-01 11:01:38 +02:00
|
|
|
const handleFormSuccess = async (result: Invoice|PaymentSchedule): Promise<void> => {
|
2021-04-08 15:21:24 +02:00
|
|
|
setSubmitState(false);
|
|
|
|
afterSuccess(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When the payment form raises an error, it is handled by this callback which display it in the modal.
|
|
|
|
*/
|
|
|
|
const handleFormError = (message: string): void => {
|
|
|
|
setSubmitState(false);
|
|
|
|
setErrors(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check the form can be submitted.
|
|
|
|
* => We're not currently already submitting the form, and, if the terms of service are enabled, the user must agree with them.
|
|
|
|
*/
|
|
|
|
const canSubmit = (): boolean => {
|
|
|
|
let terms = true;
|
|
|
|
if (hasCgv()) { terms = tos; }
|
|
|
|
return !submitState && terms;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
<FabModal title={t('app.shared.payment.online_payment') }
|
|
|
|
isOpen={isOpen}
|
|
|
|
toggleModal={toggleModal}
|
|
|
|
width={ModalSize.medium}
|
|
|
|
closeButton={false}
|
|
|
|
customFooter={logoFooter}
|
2021-04-08 17:11:48 +02:00
|
|
|
className={`payment-modal ${className ? className : ''}`}>
|
2021-04-08 15:21:24 +02:00
|
|
|
{ready && <div>
|
2021-05-21 18:25:18 +02:00
|
|
|
<WalletInfo cart={cart} currentUser={currentUser} wallet={wallet} price={price?.price} />
|
2021-04-08 15:21:24 +02:00
|
|
|
<GatewayForm onSubmit={handleSubmit}
|
|
|
|
onSuccess={handleFormSuccess}
|
|
|
|
onError={handleFormError}
|
|
|
|
operator={currentUser}
|
2021-04-08 17:11:48 +02:00
|
|
|
className={`gateway-form ${formClassName ? formClassName : ''}`}
|
2021-04-08 15:21:24 +02:00
|
|
|
formId={formId}
|
2021-05-21 18:25:18 +02:00
|
|
|
cart={cart}
|
2021-04-08 15:21:24 +02:00
|
|
|
customer={customer}
|
|
|
|
paymentSchedule={isPaymentSchedule()}>
|
|
|
|
{hasErrors() && <div className="payment-errors">
|
|
|
|
{errors}
|
|
|
|
</div>}
|
|
|
|
{isPaymentSchedule() && <div className="payment-schedule-info">
|
2021-06-01 11:24:43 +02:00
|
|
|
<HtmlTranslate trKey="app.shared.payment.payment_schedule_html" options={{ DEADLINES: schedule.items.length, GATEWAY: gateway }} />
|
2021-04-08 15:21:24 +02:00
|
|
|
</div>}
|
|
|
|
{hasCgv() && <div className="terms-of-sales">
|
|
|
|
<input type="checkbox" id="acceptToS" name="acceptCondition" checked={tos} onChange={toggleTos} required />
|
|
|
|
<label htmlFor="acceptToS">{ t('app.shared.payment.i_have_read_and_accept_') }
|
|
|
|
<a href={cgv.custom_asset_file_attributes.attachment_url} target="_blank">
|
|
|
|
{ t('app.shared.payment._the_general_terms_and_conditions') }
|
|
|
|
</a>
|
|
|
|
</label>
|
|
|
|
</div>}
|
|
|
|
</GatewayForm>
|
|
|
|
{!submitState && <button type="submit"
|
|
|
|
disabled={!canSubmit()}
|
|
|
|
form={formId}
|
|
|
|
className="validate-btn">
|
|
|
|
{t('app.shared.payment.confirm_payment_of_', { AMOUNT: formatPrice(remainingPrice) })}
|
|
|
|
</button>}
|
|
|
|
{submitState && <div className="payment-pending">
|
|
|
|
<div className="fa-2x">
|
|
|
|
<i className="fas fa-circle-notch fa-spin" />
|
|
|
|
</div>
|
|
|
|
</div>}
|
|
|
|
</div>}
|
|
|
|
</FabModal>
|
|
|
|
);
|
|
|
|
}
|