@pinerohit11/testwidget 0.1.49 → 0.1.51
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +274 -241
- package/dist/{index.cjs → index.mjs} +238 -277
- package/package.json +2 -3
- /package/dist/{index.d.cts → index.d.mts} +0 -0
@@ -1,12 +1,7 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __create = Object.create;
|
3
1
|
var __defProp = Object.defineProperty;
|
4
2
|
var __defProps = Object.defineProperties;
|
5
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
6
3
|
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
7
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
8
4
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
9
|
-
var __getProtoOf = Object.getPrototypeOf;
|
10
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
11
6
|
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
12
7
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
@@ -22,54 +17,18 @@ var __spreadValues = (a, b) => {
|
|
22
17
|
return a;
|
23
18
|
};
|
24
19
|
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
25
|
-
var __export = (target, all) => {
|
26
|
-
for (var name in all)
|
27
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
28
|
-
};
|
29
|
-
var __copyProps = (to, from, except, desc) => {
|
30
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
31
|
-
for (let key of __getOwnPropNames(from))
|
32
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
33
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
34
|
-
}
|
35
|
-
return to;
|
36
|
-
};
|
37
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
38
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
39
|
-
// file that has been converted to a CommonJS file using a Babel-
|
40
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
41
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
42
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
43
|
-
mod
|
44
|
-
));
|
45
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
46
|
-
|
47
|
-
// src/app/index.ts
|
48
|
-
var app_exports = {};
|
49
|
-
__export(app_exports, {
|
50
|
-
CompletedTransactions: () => CompletedTransactions,
|
51
|
-
GetPaymentDynamic: () => GetPaymentDynamic,
|
52
|
-
Payment: () => Payment,
|
53
|
-
RequestPayment: () => RequestPayment,
|
54
|
-
RequestPaymentAllInput: () => RequestPaymentAllInput,
|
55
|
-
RequestPaymentDynamic: () => RequestPaymentDynamic,
|
56
|
-
RequestPaymentonClick: () => RequestPaymentonClick,
|
57
|
-
RqstPaymntInputField: () => RqstPaymntInputField,
|
58
|
-
TockenizPay: () => TockenizPay
|
59
|
-
});
|
60
|
-
module.exports = __toCommonJS(app_exports);
|
61
20
|
|
62
21
|
// src/app/components/RequestPayment/RequestPayment.tsx
|
63
|
-
|
64
|
-
|
22
|
+
import React4, { useState, useEffect } from "react";
|
23
|
+
import axios from "axios";
|
65
24
|
|
66
25
|
// src/app/components/Loader/Loader.tsx
|
67
|
-
|
26
|
+
import React2 from "react";
|
68
27
|
|
69
28
|
// src/app/components/Loader/LoaderStyle.tsx
|
70
|
-
|
29
|
+
import React from "react";
|
71
30
|
var LoaderStyle = (props) => {
|
72
|
-
return /* @__PURE__ */
|
31
|
+
return /* @__PURE__ */ React.createElement("style", null, `
|
73
32
|
.loader {
|
74
33
|
position: fixed;
|
75
34
|
/* Fixed position to cover the viewport */
|
@@ -188,17 +147,17 @@ var LoaderStyle_default = LoaderStyle;
|
|
188
147
|
|
189
148
|
// src/app/components/Loader/Loader.tsx
|
190
149
|
var Loader = (props) => {
|
191
|
-
return /* @__PURE__ */
|
150
|
+
return /* @__PURE__ */ React2.createElement(React2.Fragment, null, /* @__PURE__ */ React2.createElement(LoaderStyle_default, null), (props == null ? void 0 : props.loading) && /* @__PURE__ */ React2.createElement("div", { className: "loader" }, /* @__PURE__ */ React2.createElement("div", { className: "lds-ellipsis" }, /* @__PURE__ */ React2.createElement("div", null), /* @__PURE__ */ React2.createElement("div", null), /* @__PURE__ */ React2.createElement("div", null), /* @__PURE__ */ React2.createElement("div", null))));
|
192
151
|
};
|
193
152
|
var Loader_default = Loader;
|
194
153
|
|
195
154
|
// src/app/components/RequestPayment/RequestPayment.tsx
|
196
|
-
|
155
|
+
import { Button, Form, Modal } from "react-bootstrap";
|
197
156
|
|
198
157
|
// src/app/components/RequestPayment/RequestPaymentstyles.tsx
|
199
|
-
|
158
|
+
import React3 from "react";
|
200
159
|
var RequestPaymentstyles = (props) => {
|
201
|
-
return /* @__PURE__ */
|
160
|
+
return /* @__PURE__ */ React3.createElement("style", null, `
|
202
161
|
.paymentBtn {
|
203
162
|
background-color: black;
|
204
163
|
border: none;
|
@@ -1052,10 +1011,10 @@ var ErrorText = {
|
|
1052
1011
|
// src/app/components/RequestPayment/RequestPayment.tsx
|
1053
1012
|
function RequestPayment(props) {
|
1054
1013
|
const fractalpayClientKey = props.fractalpayClientKey;
|
1055
|
-
const [show, setShow] =
|
1056
|
-
const [loading, setLoading] =
|
1057
|
-
const [errors, setErrors] =
|
1058
|
-
const [requestDetails, setRequestDetails] =
|
1014
|
+
const [show, setShow] = useState(false);
|
1015
|
+
const [loading, setLoading] = useState(false);
|
1016
|
+
const [errors, setErrors] = useState({});
|
1017
|
+
const [requestDetails, setRequestDetails] = useState({
|
1059
1018
|
email: "",
|
1060
1019
|
amount: "",
|
1061
1020
|
phone_number: "",
|
@@ -1063,7 +1022,7 @@ function RequestPayment(props) {
|
|
1063
1022
|
name: "",
|
1064
1023
|
fractalpayPublicKey: fractalpayClientKey
|
1065
1024
|
});
|
1066
|
-
const [showConfirmationModal, setShowConfirmationModal] =
|
1025
|
+
const [showConfirmationModal, setShowConfirmationModal] = useState(false);
|
1067
1026
|
const phoneNumberRegex = (value) => /^\(?\d{3}\)?[-.\s]?\d{3}[-.\s]?\d{4}$/.test(value);
|
1068
1027
|
const amoutRegex = /[+-]?([0-9]*[.])?[0-9]+/;
|
1069
1028
|
const positiveAmountRegex = /^[+]?\d+(\.\d+)?$/;
|
@@ -1116,7 +1075,7 @@ function RequestPayment(props) {
|
|
1116
1075
|
name: requestDetails.name,
|
1117
1076
|
email: requestDetails.email
|
1118
1077
|
};
|
1119
|
-
let response = await
|
1078
|
+
let response = await axios.post(`${baseUrl}create-widget-order`, formData);
|
1120
1079
|
if ((response == null ? void 0 : response.status) === 200) {
|
1121
1080
|
setShowConfirmationModal(true);
|
1122
1081
|
setShow(false);
|
@@ -1194,7 +1153,7 @@ function RequestPayment(props) {
|
|
1194
1153
|
setErrors(newErrors);
|
1195
1154
|
return Object.keys(newErrors).length === 0;
|
1196
1155
|
};
|
1197
|
-
|
1156
|
+
useEffect(() => {
|
1198
1157
|
if (props.amount) {
|
1199
1158
|
setRequestDetails((prev) => __spreadProps(__spreadValues({}, prev), { amount: props.amount }));
|
1200
1159
|
}
|
@@ -1204,8 +1163,8 @@ function RequestPayment(props) {
|
|
1204
1163
|
e.preventDefault();
|
1205
1164
|
}
|
1206
1165
|
};
|
1207
|
-
return /* @__PURE__ */
|
1208
|
-
|
1166
|
+
return /* @__PURE__ */ React4.createElement(React4.Fragment, null, /* @__PURE__ */ React4.createElement(RequestPaymentstyles_default, null), /* @__PURE__ */ React4.createElement(Loader_default, { loading }), /* @__PURE__ */ React4.createElement(React4.Fragment, null, /* @__PURE__ */ React4.createElement("button", { className: "paymentBtn", onClick: handleShow }, "Request Payment"), /* @__PURE__ */ React4.createElement(
|
1167
|
+
Modal,
|
1209
1168
|
{
|
1210
1169
|
show,
|
1211
1170
|
onHide: handleClose,
|
@@ -1213,8 +1172,8 @@ function RequestPayment(props) {
|
|
1213
1172
|
backdrop: "static",
|
1214
1173
|
keyboard: false
|
1215
1174
|
},
|
1216
|
-
/* @__PURE__ */
|
1217
|
-
/* @__PURE__ */
|
1175
|
+
/* @__PURE__ */ React4.createElement(Modal.Header, { closeButton: true }, /* @__PURE__ */ React4.createElement(Modal.Title, null, "Request Payment")),
|
1176
|
+
/* @__PURE__ */ React4.createElement(Modal.Body, { id: "Checkout" }, /* @__PURE__ */ React4.createElement(Form, null, /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "FULL NAME *"), /* @__PURE__ */ React4.createElement(
|
1218
1177
|
"input",
|
1219
1178
|
{
|
1220
1179
|
className: "form-control",
|
@@ -1223,7 +1182,7 @@ function RequestPayment(props) {
|
|
1223
1182
|
"data-token": "name",
|
1224
1183
|
onChange: handleChange
|
1225
1184
|
}
|
1226
|
-
), errors.name && /* @__PURE__ */
|
1185
|
+
), errors.name && /* @__PURE__ */ React4.createElement("small", { className: "text-danger" }, errors.name)), /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement("label", { htmlFor: "requestPhoneNumber", className: "form-label" }, "Phone Number"), /* @__PURE__ */ React4.createElement(
|
1227
1186
|
"input",
|
1228
1187
|
{
|
1229
1188
|
maxLength: 10,
|
@@ -1235,7 +1194,7 @@ function RequestPayment(props) {
|
|
1235
1194
|
type: "text",
|
1236
1195
|
"data-token": "phone_number"
|
1237
1196
|
}
|
1238
|
-
), errors.phone_number && /* @__PURE__ */
|
1197
|
+
), errors.phone_number && /* @__PURE__ */ React4.createElement("small", { className: "text-danger" }, errors.phone_number)), /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "EMAIL"), /* @__PURE__ */ React4.createElement(
|
1239
1198
|
"input",
|
1240
1199
|
{
|
1241
1200
|
className: "form-control",
|
@@ -1244,7 +1203,7 @@ function RequestPayment(props) {
|
|
1244
1203
|
onChange: handleChange,
|
1245
1204
|
"data-token": "email"
|
1246
1205
|
}
|
1247
|
-
), errors.email && /* @__PURE__ */
|
1206
|
+
), errors.email && /* @__PURE__ */ React4.createElement("small", { className: "text-danger" }, errors.email)), /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "AMOUNT *"), /* @__PURE__ */ React4.createElement("div", { className: "input-group" }, /* @__PURE__ */ React4.createElement("span", { className: "input-group-text" }, "$"), /* @__PURE__ */ React4.createElement(
|
1248
1207
|
"input",
|
1249
1208
|
{
|
1250
1209
|
"data-token": "amount",
|
@@ -1260,7 +1219,7 @@ function RequestPayment(props) {
|
|
1260
1219
|
e2.preventDefault();
|
1261
1220
|
}, { passive: false })
|
1262
1221
|
}
|
1263
|
-
)), errors.amount && /* @__PURE__ */
|
1222
|
+
)), errors.amount && /* @__PURE__ */ React4.createElement("small", { className: "text-danger" }, errors.amount)), /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement("label", { htmlFor: "exampleFormControlInput2", className: "form-label" }, "ORDER ID"), /* @__PURE__ */ React4.createElement(
|
1264
1223
|
"input",
|
1265
1224
|
{
|
1266
1225
|
className: "form-control",
|
@@ -1269,8 +1228,8 @@ function RequestPayment(props) {
|
|
1269
1228
|
onChange: handleChange,
|
1270
1229
|
"data-token": "order_id"
|
1271
1230
|
}
|
1272
|
-
), errors.order_id && /* @__PURE__ */
|
1273
|
-
|
1231
|
+
), errors.order_id && /* @__PURE__ */ React4.createElement("small", { className: "text-danger" }, errors.order_id)), /* @__PURE__ */ React4.createElement(
|
1232
|
+
Button,
|
1274
1233
|
{
|
1275
1234
|
type: "button",
|
1276
1235
|
className: "PayButton",
|
@@ -1278,7 +1237,7 @@ function RequestPayment(props) {
|
|
1278
1237
|
disabled: loading
|
1279
1238
|
},
|
1280
1239
|
loading ? "Loading..." : "Send Request"
|
1281
|
-
)), /* @__PURE__ */
|
1240
|
+
)), /* @__PURE__ */ React4.createElement("div", { className: "powerd-by-part" }, /* @__PURE__ */ React4.createElement(
|
1282
1241
|
"svg",
|
1283
1242
|
{
|
1284
1243
|
xmlns: "http://www.w3.org/2000/svg",
|
@@ -1286,14 +1245,14 @@ function RequestPayment(props) {
|
|
1286
1245
|
height: "20",
|
1287
1246
|
viewBox: "0 0 26 26"
|
1288
1247
|
},
|
1289
|
-
/* @__PURE__ */
|
1248
|
+
/* @__PURE__ */ React4.createElement(
|
1290
1249
|
"path",
|
1291
1250
|
{
|
1292
1251
|
fill: "currentColor",
|
1293
1252
|
d: "M23.633 5.028a1.074 1.074 0 0 0-.777-.366c-2.295-.06-5.199-2.514-7.119-3.477C14.551.592 13.768.201 13.18.098a1.225 1.225 0 0 0-.36.001c-.588.103-1.371.494-2.556 1.087c-1.92.962-4.824 3.416-7.119 3.476a1.08 1.08 0 0 0-.778.366a1.167 1.167 0 0 0-.291.834c.493 10.023 4.088 16.226 10.396 19.831c.164.093.346.141.527.141s.363-.048.528-.141c6.308-3.605 9.902-9.808 10.396-19.831a1.161 1.161 0 0 0-.29-.834zM18.617 8.97l-5.323 7.855c-.191.282-.491.469-.788.469c-.298 0-.629-.163-.838-.372l-3.752-3.753a.656.656 0 0 1 0-.926l.927-.929a.658.658 0 0 1 .926 0l2.44 2.44l4.239-6.257a.657.657 0 0 1 .91-.173l1.085.736a.657.657 0 0 1 .174.91z"
|
1294
1253
|
}
|
1295
1254
|
)
|
1296
|
-
), "Secure payments powered by Fractal", /* @__PURE__ */
|
1255
|
+
), "Secure payments powered by Fractal", /* @__PURE__ */ React4.createElement(
|
1297
1256
|
"img",
|
1298
1257
|
{
|
1299
1258
|
src: "https://ui.fractalpay.com/favicon.ico",
|
@@ -1301,15 +1260,15 @@ function RequestPayment(props) {
|
|
1301
1260
|
className: "powered-logo"
|
1302
1261
|
}
|
1303
1262
|
)))
|
1304
|
-
), /* @__PURE__ */
|
1305
|
-
|
1263
|
+
), /* @__PURE__ */ React4.createElement(
|
1264
|
+
Modal,
|
1306
1265
|
{
|
1307
1266
|
className: "payment-suc",
|
1308
1267
|
show: showConfirmationModal,
|
1309
1268
|
onHide: handleCloseConfirmationModal
|
1310
1269
|
},
|
1311
|
-
/* @__PURE__ */
|
1312
|
-
/* @__PURE__ */
|
1270
|
+
/* @__PURE__ */ React4.createElement(Modal.Header, { closeButton: true }),
|
1271
|
+
/* @__PURE__ */ React4.createElement(Modal.Body, null, /* @__PURE__ */ React4.createElement(
|
1313
1272
|
"svg",
|
1314
1273
|
{
|
1315
1274
|
width: "60",
|
@@ -1318,7 +1277,7 @@ function RequestPayment(props) {
|
|
1318
1277
|
fill: "none",
|
1319
1278
|
xmlns: "http://www.w3.org/2000/svg"
|
1320
1279
|
},
|
1321
|
-
/* @__PURE__ */
|
1280
|
+
/* @__PURE__ */ React4.createElement(
|
1322
1281
|
"rect",
|
1323
1282
|
{
|
1324
1283
|
x: "0.5",
|
@@ -1329,14 +1288,14 @@ function RequestPayment(props) {
|
|
1329
1288
|
stroke: "#31B379"
|
1330
1289
|
}
|
1331
1290
|
),
|
1332
|
-
/* @__PURE__ */
|
1291
|
+
/* @__PURE__ */ React4.createElement("g", { clipPath: "url(#clip0_2659_5018)" }, /* @__PURE__ */ React4.createElement(
|
1333
1292
|
"path",
|
1334
1293
|
{
|
1335
1294
|
d: "M41.1778 22.248C40.7483 21.8184 40.0518 21.8184 39.6222 22.248L26.4435 35.4268L21.3778 30.3611C20.9483 29.9315 20.2518 29.9316 19.8222 30.3611C19.3926 30.7907 19.3926 31.4871 19.8222 31.9167L25.6657 37.7601C26.0951 38.1897 26.7921 38.1894 27.2213 37.7601L41.1778 23.8036C41.6074 23.3741 41.6074 22.6776 41.1778 22.248Z",
|
1336
1295
|
fill: "#31B379"
|
1337
1296
|
}
|
1338
1297
|
)),
|
1339
|
-
/* @__PURE__ */
|
1298
|
+
/* @__PURE__ */ React4.createElement("defs", null, /* @__PURE__ */ React4.createElement("clipPath", { id: "clip0_2659_5018" }, /* @__PURE__ */ React4.createElement(
|
1340
1299
|
"rect",
|
1341
1300
|
{
|
1342
1301
|
width: "22",
|
@@ -1345,28 +1304,28 @@ function RequestPayment(props) {
|
|
1345
1304
|
transform: "translate(19.5 19.0039)"
|
1346
1305
|
}
|
1347
1306
|
)))
|
1348
|
-
), /* @__PURE__ */
|
1307
|
+
), /* @__PURE__ */ React4.createElement("h2", null, "Payment link has been ", /* @__PURE__ */ React4.createElement("br", null), " sent successfully"))
|
1349
1308
|
)));
|
1350
1309
|
}
|
1351
1310
|
|
1352
1311
|
// src/app/components/RequestPayment/RequestPaymentAllInput.tsx
|
1353
|
-
|
1354
|
-
|
1355
|
-
|
1356
|
-
|
1312
|
+
import React5, { useState as useState2 } from "react";
|
1313
|
+
import { Modal as Modal2 } from "react-bootstrap";
|
1314
|
+
import { toast, ToastContainer } from "react-toastify";
|
1315
|
+
import "react-toastify/dist/ReactToastify.css";
|
1357
1316
|
function RequestPaymentAllInput({ fractalpayClientKey }) {
|
1358
|
-
const [isLoading, setIsLoading] = (
|
1359
|
-
const [show, setShow] = (
|
1360
|
-
const [phoneNumber, setPhoneNumber] = (
|
1361
|
-
const [amount, setAmount] = (
|
1362
|
-
const [orderId, setOrderId] = (
|
1363
|
-
const [isValidNumber, setIsValidNumber] = (
|
1364
|
-
const [isValidAmount, setIsValidAmount] = (
|
1365
|
-
const [isValidOrderId, setIsValidOrderId] = (
|
1366
|
-
const [errorMessagephone, setErrorMessagephone] = (
|
1367
|
-
const [errorMessageamount, setErrorMessageamount] = (
|
1368
|
-
const [errorMessageorderid, setErrorMessageorderid] = (
|
1369
|
-
const [submitClicked, setSubmitClicked] = (
|
1317
|
+
const [isLoading, setIsLoading] = useState2(false);
|
1318
|
+
const [show, setShow] = useState2(false);
|
1319
|
+
const [phoneNumber, setPhoneNumber] = useState2("");
|
1320
|
+
const [amount, setAmount] = useState2("");
|
1321
|
+
const [orderId, setOrderId] = useState2("");
|
1322
|
+
const [isValidNumber, setIsValidNumber] = useState2(true);
|
1323
|
+
const [isValidAmount, setIsValidAmount] = useState2(true);
|
1324
|
+
const [isValidOrderId, setIsValidOrderId] = useState2(true);
|
1325
|
+
const [errorMessagephone, setErrorMessagephone] = useState2("");
|
1326
|
+
const [errorMessageamount, setErrorMessageamount] = useState2("");
|
1327
|
+
const [errorMessageorderid, setErrorMessageorderid] = useState2("");
|
1328
|
+
const [submitClicked, setSubmitClicked] = useState2(false);
|
1370
1329
|
const handleClose = () => setShow(false);
|
1371
1330
|
const handleShow = () => setShow(true);
|
1372
1331
|
const sendRequestPayment = () => {
|
@@ -1428,7 +1387,7 @@ function RequestPaymentAllInput({ fractalpayClientKey }) {
|
|
1428
1387
|
}).catch((error) => {
|
1429
1388
|
setIsLoading(false);
|
1430
1389
|
console.error("Error:", error);
|
1431
|
-
|
1390
|
+
toast.error(ErrorText.anerroroccured);
|
1432
1391
|
});
|
1433
1392
|
};
|
1434
1393
|
const handlePhoneNumberChange = (e) => {
|
@@ -1468,7 +1427,7 @@ function RequestPaymentAllInput({ fractalpayClientKey }) {
|
|
1468
1427
|
setIsValidOrderId(false);
|
1469
1428
|
}
|
1470
1429
|
};
|
1471
|
-
return /* @__PURE__ */
|
1430
|
+
return /* @__PURE__ */ React5.createElement(React5.Fragment, null, /* @__PURE__ */ React5.createElement(RequestPaymentstyles_default, null), /* @__PURE__ */ React5.createElement("div", { className: " border-container" }, /* @__PURE__ */ React5.createElement("div", { className: "payment-column" }, /* @__PURE__ */ React5.createElement("label", null, "Enter Phone Number:"), /* @__PURE__ */ React5.createElement("div", { className: "input-container" }, /* @__PURE__ */ React5.createElement(
|
1472
1431
|
"input",
|
1473
1432
|
{
|
1474
1433
|
type: "text",
|
@@ -1478,7 +1437,7 @@ function RequestPaymentAllInput({ fractalpayClientKey }) {
|
|
1478
1437
|
maxLength: 10,
|
1479
1438
|
className: submitClicked && (!phoneNumber || !isValidNumber) ? "error" : ""
|
1480
1439
|
}
|
1481
|
-
), errorMessagephone && /* @__PURE__ */
|
1440
|
+
), errorMessagephone && /* @__PURE__ */ React5.createElement("div", { className: "error-message text-danger" }, errorMessagephone))), /* @__PURE__ */ React5.createElement("div", { className: "payment-column" }, /* @__PURE__ */ React5.createElement("label", null, "Enter Amount:"), /* @__PURE__ */ React5.createElement("div", { className: "input-container" }, /* @__PURE__ */ React5.createElement(
|
1482
1441
|
"input",
|
1483
1442
|
{
|
1484
1443
|
type: "text",
|
@@ -1487,7 +1446,7 @@ function RequestPaymentAllInput({ fractalpayClientKey }) {
|
|
1487
1446
|
placeholder: "Enter amount",
|
1488
1447
|
className: submitClicked && (!amount || !isValidAmount) ? "error" : ""
|
1489
1448
|
}
|
1490
|
-
), errorMessageamount && /* @__PURE__ */
|
1449
|
+
), errorMessageamount && /* @__PURE__ */ React5.createElement("div", { className: "error-message text-danger" }, errorMessageamount))), /* @__PURE__ */ React5.createElement("div", { className: "payment-column" }, /* @__PURE__ */ React5.createElement("label", null, "Enter Order ID:"), /* @__PURE__ */ React5.createElement("div", { className: "input-container" }, /* @__PURE__ */ React5.createElement(
|
1491
1450
|
"input",
|
1492
1451
|
{
|
1493
1452
|
type: "text",
|
@@ -1496,7 +1455,7 @@ function RequestPaymentAllInput({ fractalpayClientKey }) {
|
|
1496
1455
|
placeholder: "Enter order ID",
|
1497
1456
|
className: submitClicked && (!orderId || !isValidOrderId) ? "error" : ""
|
1498
1457
|
}
|
1499
|
-
), errorMessageorderid && /* @__PURE__ */
|
1458
|
+
), errorMessageorderid && /* @__PURE__ */ React5.createElement("div", { className: "error-message text-danger" }, errorMessageorderid))), /* @__PURE__ */ React5.createElement(
|
1500
1459
|
"button",
|
1501
1460
|
{
|
1502
1461
|
onClick: sendRequestPayment,
|
@@ -1504,7 +1463,7 @@ function RequestPaymentAllInput({ fractalpayClientKey }) {
|
|
1504
1463
|
className: "paymentBtn"
|
1505
1464
|
},
|
1506
1465
|
isLoading ? "Loading..." : "Request Payment"
|
1507
|
-
)), /* @__PURE__ */
|
1466
|
+
)), /* @__PURE__ */ React5.createElement(Modal2, { className: "payment-suc", show, onHide: handleClose }, /* @__PURE__ */ React5.createElement(Modal2.Header, { closeButton: true }), /* @__PURE__ */ React5.createElement(Modal2.Body, null, /* @__PURE__ */ React5.createElement(
|
1508
1467
|
"svg",
|
1509
1468
|
{
|
1510
1469
|
width: "60",
|
@@ -1513,7 +1472,7 @@ function RequestPaymentAllInput({ fractalpayClientKey }) {
|
|
1513
1472
|
fill: "none",
|
1514
1473
|
xmlns: "http://www.w3.org/2000/svg"
|
1515
1474
|
},
|
1516
|
-
/* @__PURE__ */
|
1475
|
+
/* @__PURE__ */ React5.createElement(
|
1517
1476
|
"rect",
|
1518
1477
|
{
|
1519
1478
|
x: "0.5",
|
@@ -1524,14 +1483,14 @@ function RequestPaymentAllInput({ fractalpayClientKey }) {
|
|
1524
1483
|
stroke: "#31B379"
|
1525
1484
|
}
|
1526
1485
|
),
|
1527
|
-
/* @__PURE__ */
|
1486
|
+
/* @__PURE__ */ React5.createElement("g", { clipPath: "url(#clip0_2659_5018)" }, /* @__PURE__ */ React5.createElement(
|
1528
1487
|
"path",
|
1529
1488
|
{
|
1530
1489
|
d: "M41.1778 22.248C40.7483 21.8184 40.0518 21.8184 39.6222 22.248L26.4435 35.4268L21.3778 30.3611C20.9483 29.9315 20.2518 29.9316 19.8222 30.3611C19.3926 30.7907 19.3926 31.4871 19.8222 31.9167L25.6657 37.7601C26.0951 38.1897 26.7921 38.1894 27.2213 37.7601L41.1778 23.8036C41.6074 23.3741 41.6074 22.6776 41.1778 22.248Z",
|
1531
1490
|
fill: "#31B379"
|
1532
1491
|
}
|
1533
1492
|
)),
|
1534
|
-
/* @__PURE__ */
|
1493
|
+
/* @__PURE__ */ React5.createElement("defs", null, /* @__PURE__ */ React5.createElement("clipPath", { id: "clip0_2659_5018" }, /* @__PURE__ */ React5.createElement(
|
1535
1494
|
"rect",
|
1536
1495
|
{
|
1537
1496
|
width: "22",
|
@@ -1540,12 +1499,12 @@ function RequestPaymentAllInput({ fractalpayClientKey }) {
|
|
1540
1499
|
transform: "translate(19.5 19.0039)"
|
1541
1500
|
}
|
1542
1501
|
)))
|
1543
|
-
), /* @__PURE__ */
|
1502
|
+
), /* @__PURE__ */ React5.createElement("h1", null, "Success!"), /* @__PURE__ */ React5.createElement("h4", null, "Payment link created successfully.")), /* @__PURE__ */ React5.createElement(Modal2.Footer, null, /* @__PURE__ */ React5.createElement("button", { className: "paymentBtn", onClick: handleClose }, "Ok"))), /* @__PURE__ */ React5.createElement(ToastContainer, null));
|
1544
1503
|
}
|
1545
1504
|
|
1546
1505
|
// src/app/components/RequestPayment/RequestPaymentDynamic.tsx
|
1547
|
-
|
1548
|
-
|
1506
|
+
import React6, { useState as useState3 } from "react";
|
1507
|
+
import { Modal as Modal3 } from "react-bootstrap";
|
1549
1508
|
|
1550
1509
|
// src/app/components/Api/createWidgetOrder.ts
|
1551
1510
|
var createWidgetOrder = (formData) => {
|
@@ -1568,9 +1527,8 @@ var createWidgetOrder = (formData) => {
|
|
1568
1527
|
|
1569
1528
|
// src/app/components/RequestPayment/RequestPaymentDynamic.tsx
|
1570
1529
|
function RequestPaymentDynamic({ fractalpayClientKey, amount, phone_number, orderID }) {
|
1571
|
-
|
1572
|
-
const [
|
1573
|
-
const [show, setShow] = (0, import_react6.useState)(false);
|
1530
|
+
const [isLoading, setIsLoading] = useState3(false);
|
1531
|
+
const [show, setShow] = useState3(false);
|
1574
1532
|
const handleClose = () => setShow(false);
|
1575
1533
|
const handleShow = () => setShow(true);
|
1576
1534
|
const sendRequestPayment = () => {
|
@@ -1593,7 +1551,7 @@ function RequestPaymentDynamic({ fractalpayClientKey, amount, phone_number, orde
|
|
1593
1551
|
console.error("Error:", error);
|
1594
1552
|
});
|
1595
1553
|
};
|
1596
|
-
return /* @__PURE__ */
|
1554
|
+
return /* @__PURE__ */ React6.createElement(React6.Fragment, null, /* @__PURE__ */ React6.createElement(
|
1597
1555
|
"button",
|
1598
1556
|
{
|
1599
1557
|
onClick: sendRequestPayment,
|
@@ -1601,7 +1559,7 @@ function RequestPaymentDynamic({ fractalpayClientKey, amount, phone_number, orde
|
|
1601
1559
|
className: "paymentBtn"
|
1602
1560
|
},
|
1603
1561
|
isLoading ? "Loading..." : "Request Payment"
|
1604
|
-
), /* @__PURE__ */
|
1562
|
+
), /* @__PURE__ */ React6.createElement(Modal3, { className: "payment-suc", show, onHide: handleClose }, /* @__PURE__ */ React6.createElement(Modal3.Header, { closeButton: true }), /* @__PURE__ */ React6.createElement(Modal3.Body, null, /* @__PURE__ */ React6.createElement(
|
1605
1563
|
"svg",
|
1606
1564
|
{
|
1607
1565
|
width: "60",
|
@@ -1610,7 +1568,7 @@ function RequestPaymentDynamic({ fractalpayClientKey, amount, phone_number, orde
|
|
1610
1568
|
fill: "none",
|
1611
1569
|
xmlns: "http://www.w3.org/2000/svg"
|
1612
1570
|
},
|
1613
|
-
/* @__PURE__ */
|
1571
|
+
/* @__PURE__ */ React6.createElement(
|
1614
1572
|
"rect",
|
1615
1573
|
{
|
1616
1574
|
x: "0.5",
|
@@ -1621,14 +1579,14 @@ function RequestPaymentDynamic({ fractalpayClientKey, amount, phone_number, orde
|
|
1621
1579
|
stroke: "#31B379"
|
1622
1580
|
}
|
1623
1581
|
),
|
1624
|
-
/* @__PURE__ */
|
1582
|
+
/* @__PURE__ */ React6.createElement("g", { "clip-path": "url(#clip0_2659_5018)" }, /* @__PURE__ */ React6.createElement(
|
1625
1583
|
"path",
|
1626
1584
|
{
|
1627
1585
|
d: "M41.1778 22.248C40.7483 21.8184 40.0518 21.8184 39.6222 22.248L26.4435 35.4268L21.3778 30.3611C20.9483 29.9315 20.2518 29.9316 19.8222 30.3611C19.3926 30.7907 19.3926 31.4871 19.8222 31.9167L25.6657 37.7601C26.0951 38.1897 26.7921 38.1894 27.2213 37.7601L41.1778 23.8036C41.6074 23.3741 41.6074 22.6776 41.1778 22.248Z",
|
1628
1586
|
fill: "#31B379"
|
1629
1587
|
}
|
1630
1588
|
)),
|
1631
|
-
/* @__PURE__ */
|
1589
|
+
/* @__PURE__ */ React6.createElement("defs", null, /* @__PURE__ */ React6.createElement("clipPath", { id: "clip0_2659_5018" }, /* @__PURE__ */ React6.createElement(
|
1632
1590
|
"rect",
|
1633
1591
|
{
|
1634
1592
|
width: "22",
|
@@ -1637,15 +1595,15 @@ function RequestPaymentDynamic({ fractalpayClientKey, amount, phone_number, orde
|
|
1637
1595
|
transform: "translate(19.5 19.0039)"
|
1638
1596
|
}
|
1639
1597
|
)))
|
1640
|
-
), /* @__PURE__ */
|
1598
|
+
), /* @__PURE__ */ React6.createElement("h1", null, "Success!"), /* @__PURE__ */ React6.createElement("h4", null, "Payment link created successfully.")), /* @__PURE__ */ React6.createElement(Modal3.Footer, null, /* @__PURE__ */ React6.createElement("button", { className: "paymentBtn", onClick: handleClose }, "Ok"))));
|
1641
1599
|
}
|
1642
1600
|
|
1643
1601
|
// src/app/components/RequestPayment/RequestPaymentonClick.tsx
|
1644
|
-
|
1645
|
-
|
1602
|
+
import React7, { useState as useState4 } from "react";
|
1603
|
+
import { Modal as Modal4 } from "react-bootstrap";
|
1646
1604
|
function RequestPaymentonClick(props) {
|
1647
|
-
const [isLoading, setIsLoading] = (
|
1648
|
-
const [show, setShow] = (
|
1605
|
+
const [isLoading, setIsLoading] = useState4(false);
|
1606
|
+
const [show, setShow] = useState4(false);
|
1649
1607
|
const handleClose = () => setShow(false);
|
1650
1608
|
const handleShow = () => setShow(true);
|
1651
1609
|
const { fractalpayClientKey, amount, phone_number, orderID, onSuccess, onError } = props;
|
@@ -1679,7 +1637,7 @@ function RequestPaymentonClick(props) {
|
|
1679
1637
|
console.error("Error:", error);
|
1680
1638
|
});
|
1681
1639
|
};
|
1682
|
-
return /* @__PURE__ */
|
1640
|
+
return /* @__PURE__ */ React7.createElement(React7.Fragment, null, /* @__PURE__ */ React7.createElement(RequestPaymentstyles_default, null), /* @__PURE__ */ React7.createElement(
|
1683
1641
|
"button",
|
1684
1642
|
{
|
1685
1643
|
onClick: sendRequestPayment,
|
@@ -1687,7 +1645,7 @@ function RequestPaymentonClick(props) {
|
|
1687
1645
|
className: "paymentBtn"
|
1688
1646
|
},
|
1689
1647
|
isLoading ? "Loading..." : "Request Payment"
|
1690
|
-
), /* @__PURE__ */
|
1648
|
+
), /* @__PURE__ */ React7.createElement(Modal4, { className: "payment-suc", show, onHide: handleClose }, /* @__PURE__ */ React7.createElement(Modal4.Header, { closeButton: true }), /* @__PURE__ */ React7.createElement(Modal4.Body, null, onSuccess && /* @__PURE__ */ React7.createElement(
|
1691
1649
|
"svg",
|
1692
1650
|
{
|
1693
1651
|
width: "60",
|
@@ -1696,7 +1654,7 @@ function RequestPaymentonClick(props) {
|
|
1696
1654
|
fill: "none",
|
1697
1655
|
xmlns: "http://www.w3.org/2000/svg"
|
1698
1656
|
},
|
1699
|
-
/* @__PURE__ */
|
1657
|
+
/* @__PURE__ */ React7.createElement(
|
1700
1658
|
"rect",
|
1701
1659
|
{
|
1702
1660
|
x: "0.5",
|
@@ -1707,14 +1665,14 @@ function RequestPaymentonClick(props) {
|
|
1707
1665
|
stroke: "#31B379"
|
1708
1666
|
}
|
1709
1667
|
),
|
1710
|
-
/* @__PURE__ */
|
1668
|
+
/* @__PURE__ */ React7.createElement("g", { clipPath: "url(#clip0_2659_5018)" }, /* @__PURE__ */ React7.createElement(
|
1711
1669
|
"path",
|
1712
1670
|
{
|
1713
1671
|
d: "M41.1778 22.248C40.7483 21.8184 40.0518 21.8184 39.6222 22.248L26.4435 35.4268L21.3778 30.3611C20.9483 29.9315 20.2518 29.9316 19.8222 30.3611C19.3926 30.7907 19.3926 31.4871 19.8222 31.9167L25.6657 37.7601C26.0951 38.1897 26.7921 38.1894 27.2213 37.7601L41.1778 23.8036C41.6074 23.3741 41.6074 22.6776 41.1778 22.248Z",
|
1714
1672
|
fill: "#31B379"
|
1715
1673
|
}
|
1716
1674
|
)),
|
1717
|
-
/* @__PURE__ */
|
1675
|
+
/* @__PURE__ */ React7.createElement("defs", null, /* @__PURE__ */ React7.createElement("clipPath", { id: "clip0_2659_5018" }, /* @__PURE__ */ React7.createElement(
|
1718
1676
|
"rect",
|
1719
1677
|
{
|
1720
1678
|
width: "22",
|
@@ -1723,21 +1681,21 @@ function RequestPaymentonClick(props) {
|
|
1723
1681
|
transform: "translate(19.5 19.0039)"
|
1724
1682
|
}
|
1725
1683
|
)))
|
1726
|
-
), onSuccess ? /* @__PURE__ */
|
1684
|
+
), onSuccess ? /* @__PURE__ */ React7.createElement(React7.Fragment, null, /* @__PURE__ */ React7.createElement("h1", null, "Success!"), /* @__PURE__ */ React7.createElement("h4", null, onSuccess)) : /* @__PURE__ */ React7.createElement(React7.Fragment, null, /* @__PURE__ */ React7.createElement("h1", null, "Error!"), /* @__PURE__ */ React7.createElement("h4", null, onError))), /* @__PURE__ */ React7.createElement(Modal4.Footer, null, /* @__PURE__ */ React7.createElement("button", { className: "paymentBtn", onClick: handleClose }, "Ok"))));
|
1727
1685
|
}
|
1728
1686
|
|
1729
1687
|
// src/app/components/RequestPayment/RqstPaymntInputField.tsx
|
1730
|
-
|
1731
|
-
|
1732
|
-
|
1733
|
-
|
1688
|
+
import React8, { useState as useState5 } from "react";
|
1689
|
+
import { Modal as Modal5 } from "react-bootstrap";
|
1690
|
+
import { toast as toast2, ToastContainer as ToastContainer2 } from "react-toastify";
|
1691
|
+
import "react-toastify/dist/ReactToastify.css";
|
1734
1692
|
function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }) {
|
1735
|
-
const [isLoading, setIsLoading] = (
|
1736
|
-
const [show, setShow] = (
|
1737
|
-
const [phoneNumber, setPhoneNumber] = (
|
1738
|
-
const [isValidNumber, setIsValidNumber] = (
|
1739
|
-
const [errorMessage, setErrorMessage] = (
|
1740
|
-
const [submitClicked, setSubmitClicked] = (
|
1693
|
+
const [isLoading, setIsLoading] = useState5(false);
|
1694
|
+
const [show, setShow] = useState5(false);
|
1695
|
+
const [phoneNumber, setPhoneNumber] = useState5("");
|
1696
|
+
const [isValidNumber, setIsValidNumber] = useState5(true);
|
1697
|
+
const [errorMessage, setErrorMessage] = useState5("");
|
1698
|
+
const [submitClicked, setSubmitClicked] = useState5(false);
|
1741
1699
|
const handleClose = () => setShow(false);
|
1742
1700
|
const handleShow = () => setShow(true);
|
1743
1701
|
const sendRequestPayment = () => {
|
@@ -1782,7 +1740,7 @@ function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }) {
|
|
1782
1740
|
}).catch((error) => {
|
1783
1741
|
setIsLoading(false);
|
1784
1742
|
console.error("Error:", error);
|
1785
|
-
|
1743
|
+
toast2.error(ErrorText.anerroroccured);
|
1786
1744
|
});
|
1787
1745
|
};
|
1788
1746
|
const handlePhoneNumberChange = (e) => {
|
@@ -1800,7 +1758,7 @@ function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }) {
|
|
1800
1758
|
setErrorMessage(ErrorText.phonenumbervalid);
|
1801
1759
|
}
|
1802
1760
|
};
|
1803
|
-
return /* @__PURE__ */
|
1761
|
+
return /* @__PURE__ */ React8.createElement(React8.Fragment, null, /* @__PURE__ */ React8.createElement("div", { className: "payment-container" }, /* @__PURE__ */ React8.createElement("div", { className: "input-wrapper" }, /* @__PURE__ */ React8.createElement("div", { className: "input-container" }, /* @__PURE__ */ React8.createElement(
|
1804
1762
|
"input",
|
1805
1763
|
{
|
1806
1764
|
type: "text",
|
@@ -1810,7 +1768,7 @@ function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }) {
|
|
1810
1768
|
maxLength: 10,
|
1811
1769
|
className: submitClicked && (!phoneNumber || !isValidNumber) ? "error" : ""
|
1812
1770
|
}
|
1813
|
-
), errorMessage && /* @__PURE__ */
|
1771
|
+
), errorMessage && /* @__PURE__ */ React8.createElement("div", { className: "error-message text-danger" }, errorMessage))), /* @__PURE__ */ React8.createElement("div", { className: "button-wrapper" }, /* @__PURE__ */ React8.createElement(
|
1814
1772
|
"button",
|
1815
1773
|
{
|
1816
1774
|
onClick: sendRequestPayment,
|
@@ -1818,7 +1776,7 @@ function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }) {
|
|
1818
1776
|
className: "paymentBtn"
|
1819
1777
|
},
|
1820
1778
|
isLoading ? "Loading..." : "Request Payment"
|
1821
|
-
))), /* @__PURE__ */
|
1779
|
+
))), /* @__PURE__ */ React8.createElement(Modal5, { className: "payment-suc", show, onHide: handleClose }, /* @__PURE__ */ React8.createElement(Modal5.Header, { closeButton: true }), /* @__PURE__ */ React8.createElement(Modal5.Body, null, /* @__PURE__ */ React8.createElement(
|
1822
1780
|
"svg",
|
1823
1781
|
{
|
1824
1782
|
width: "60",
|
@@ -1827,7 +1785,7 @@ function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }) {
|
|
1827
1785
|
fill: "none",
|
1828
1786
|
xmlns: "http://www.w3.org/2000/svg"
|
1829
1787
|
},
|
1830
|
-
/* @__PURE__ */
|
1788
|
+
/* @__PURE__ */ React8.createElement(
|
1831
1789
|
"rect",
|
1832
1790
|
{
|
1833
1791
|
x: "0.5",
|
@@ -1838,14 +1796,14 @@ function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }) {
|
|
1838
1796
|
stroke: "#31B379"
|
1839
1797
|
}
|
1840
1798
|
),
|
1841
|
-
/* @__PURE__ */
|
1799
|
+
/* @__PURE__ */ React8.createElement("g", { clipPath: "url(#clip0_2659_5018)" }, /* @__PURE__ */ React8.createElement(
|
1842
1800
|
"path",
|
1843
1801
|
{
|
1844
1802
|
d: "M41.1778 22.248C40.7483 21.8184 40.0518 21.8184 39.6222 22.248L26.4435 35.4268L21.3778 30.3611C20.9483 29.9315 20.2518 29.9316 19.8222 30.3611C19.3926 30.7907 19.3926 31.4871 19.8222 31.9167L25.6657 37.7601C26.0951 38.1897 26.7921 38.1894 27.2213 37.7601L41.1778 23.8036C41.6074 23.3741 41.6074 22.6776 41.1778 22.248Z",
|
1845
1803
|
fill: "#31B379"
|
1846
1804
|
}
|
1847
1805
|
)),
|
1848
|
-
/* @__PURE__ */
|
1806
|
+
/* @__PURE__ */ React8.createElement("defs", null, /* @__PURE__ */ React8.createElement("clipPath", { id: "clip0_2659_5018" }, /* @__PURE__ */ React8.createElement(
|
1849
1807
|
"rect",
|
1850
1808
|
{
|
1851
1809
|
width: "22",
|
@@ -1854,20 +1812,20 @@ function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }) {
|
|
1854
1812
|
transform: "translate(19.5 19.0039)"
|
1855
1813
|
}
|
1856
1814
|
)))
|
1857
|
-
), /* @__PURE__ */
|
1815
|
+
), /* @__PURE__ */ React8.createElement("h1", null, "Success!"), /* @__PURE__ */ React8.createElement("h4", null, "Payment link created successfully.")), /* @__PURE__ */ React8.createElement(Modal5.Footer, null, /* @__PURE__ */ React8.createElement("button", { className: "paymentBtn", onClick: handleClose }, "Ok"))), /* @__PURE__ */ React8.createElement(ToastContainer2, null));
|
1858
1816
|
}
|
1859
1817
|
|
1860
1818
|
// src/app/components/Payment/Payment.tsx
|
1861
|
-
|
1862
|
-
|
1863
|
-
|
1864
|
-
|
1865
|
-
|
1819
|
+
import React10, { useState as useState6 } from "react";
|
1820
|
+
import axios2 from "axios";
|
1821
|
+
import forge from "node-forge";
|
1822
|
+
import { toast as toast3 } from "react-toastify";
|
1823
|
+
import { Modal as Modal6 } from "react-bootstrap";
|
1866
1824
|
|
1867
1825
|
// src/app/components/Payment/Paymentstyles.tsx
|
1868
|
-
|
1826
|
+
import React9 from "react";
|
1869
1827
|
function Paymentstyles() {
|
1870
|
-
return /* @__PURE__ */
|
1828
|
+
return /* @__PURE__ */ React9.createElement("style", null, `
|
1871
1829
|
.paymentBtn {
|
1872
1830
|
background-color: black;
|
1873
1831
|
border: none;
|
@@ -2793,7 +2751,7 @@ input {
|
|
2793
2751
|
// src/app/components/Payment/Payment.tsx
|
2794
2752
|
function Payment() {
|
2795
2753
|
var _a;
|
2796
|
-
const [state, setState] = (
|
2754
|
+
const [state, setState] = useState6({
|
2797
2755
|
show: false,
|
2798
2756
|
publicKey: "",
|
2799
2757
|
sessionKey: "",
|
@@ -2804,12 +2762,12 @@ function Payment() {
|
|
2804
2762
|
zip: "",
|
2805
2763
|
amount: ""
|
2806
2764
|
});
|
2807
|
-
const [isValid, setIsValid] = (
|
2808
|
-
const [isValidMonth, setIsValidMonth] = (
|
2809
|
-
const [data, setData] = (
|
2765
|
+
const [isValid, setIsValid] = useState6(false);
|
2766
|
+
const [isValidMonth, setIsValidMonth] = useState6(false);
|
2767
|
+
const [data, setData] = useState6(null);
|
2810
2768
|
const handlePaymentClick = async () => {
|
2811
2769
|
try {
|
2812
|
-
const response = await
|
2770
|
+
const response = await axios2.post(`${baseUrl}generate-session`, {});
|
2813
2771
|
const data2 = response.data;
|
2814
2772
|
if (data2 && (data2 == null ? void 0 : data2.result) === true) {
|
2815
2773
|
setState((prev) => {
|
@@ -2827,12 +2785,12 @@ function Payment() {
|
|
2827
2785
|
};
|
2828
2786
|
const handleSubmitPay = async () => {
|
2829
2787
|
const track2_data = `${state.cardNumber.replace(/\s+/g, "")}=${state.year}${state.month.length > 1 ? state.month : "0" + state.month} ${state.cvv}`;
|
2830
|
-
const publicKey =
|
2788
|
+
const publicKey = forge.pki.publicKeyFromPem(state.publicKey);
|
2831
2789
|
const encrypted = publicKey.encrypt(track2_data, "RSA-OAEP", {
|
2832
|
-
md:
|
2833
|
-
mgf1: { md:
|
2790
|
+
md: forge.md.sha1.create(),
|
2791
|
+
mgf1: { md: forge.md.sha1.create() }
|
2834
2792
|
});
|
2835
|
-
const encryptedBase64 =
|
2793
|
+
const encryptedBase64 = forge.util.encode64(encrypted);
|
2836
2794
|
console.log(encryptedBase64);
|
2837
2795
|
const requestBody = {
|
2838
2796
|
enc_track2_data: encryptedBase64,
|
@@ -2841,14 +2799,14 @@ function Payment() {
|
|
2841
2799
|
};
|
2842
2800
|
const apiUrl = "https://m1ao5pku8b.execute-api.us-east-2.amazonaws.com/prod/tokenizer/tokenize";
|
2843
2801
|
try {
|
2844
|
-
const response = await
|
2802
|
+
const response = await axios2.post(apiUrl, requestBody, {
|
2845
2803
|
headers: {
|
2846
2804
|
"x-app-session-key": state == null ? void 0 : state.sessionKey,
|
2847
2805
|
"Content-Type": "application/json"
|
2848
2806
|
}
|
2849
2807
|
});
|
2850
2808
|
if ((response == null ? void 0 : response.status) === 200) {
|
2851
|
-
|
2809
|
+
toast3.success("Payment Successful");
|
2852
2810
|
setState((prev) => __spreadProps(__spreadValues({}, prev), {
|
2853
2811
|
show: false,
|
2854
2812
|
publicKey: "",
|
@@ -2958,7 +2916,7 @@ function Payment() {
|
|
2958
2916
|
}
|
2959
2917
|
return "";
|
2960
2918
|
}
|
2961
|
-
return /* @__PURE__ */
|
2919
|
+
return /* @__PURE__ */ React10.createElement(React10.Fragment, null, /* @__PURE__ */ React10.createElement(Paymentstyles, null), /* @__PURE__ */ React10.createElement("div", { className: "" }, /* @__PURE__ */ React10.createElement(
|
2962
2920
|
"button",
|
2963
2921
|
{
|
2964
2922
|
className: "export-btn",
|
@@ -2966,8 +2924,8 @@ function Payment() {
|
|
2966
2924
|
onClick: () => handlePaymentClick()
|
2967
2925
|
},
|
2968
2926
|
"Payment"
|
2969
|
-
), /* @__PURE__ */
|
2970
|
-
|
2927
|
+
), /* @__PURE__ */ React10.createElement(
|
2928
|
+
Modal6,
|
2971
2929
|
{
|
2972
2930
|
show: state.show,
|
2973
2931
|
onHide: () => setState((prev) => __spreadProps(__spreadValues({}, prev), {
|
@@ -2975,8 +2933,8 @@ function Payment() {
|
|
2975
2933
|
})),
|
2976
2934
|
centered: true
|
2977
2935
|
},
|
2978
|
-
/* @__PURE__ */
|
2979
|
-
/* @__PURE__ */
|
2936
|
+
/* @__PURE__ */ React10.createElement(Modal6.Header, { closeButton: true }),
|
2937
|
+
/* @__PURE__ */ React10.createElement(Modal6.Body, null, /* @__PURE__ */ React10.createElement("div", { className: "payment-popup" }, /* @__PURE__ */ React10.createElement("div", { className: "row" }, /* @__PURE__ */ React10.createElement("div", { className: "" }, /* @__PURE__ */ React10.createElement("div", { id: "Checkout", className: "inline" }, /* @__PURE__ */ React10.createElement("div", { className: "header" }, /* @__PURE__ */ React10.createElement("h1", null, "Pay")), /* @__PURE__ */ React10.createElement("form", { id: "PaymentForm", className: "payment-form" }, /* @__PURE__ */ React10.createElement("div", { className: "form-group", style: { display: "none" } }, /* @__PURE__ */ React10.createElement("label", null, "Payment amount"), /* @__PURE__ */ React10.createElement("div", { className: "input-group" }, /* @__PURE__ */ React10.createElement("span", { className: "input-group-addon" }, "$"), /* @__PURE__ */ React10.createElement(
|
2980
2938
|
"input",
|
2981
2939
|
{
|
2982
2940
|
type: "text",
|
@@ -2985,13 +2943,13 @@ function Payment() {
|
|
2985
2943
|
className: "form-control",
|
2986
2944
|
id: ""
|
2987
2945
|
}
|
2988
|
-
)), /* @__PURE__ */
|
2946
|
+
)), /* @__PURE__ */ React10.createElement(
|
2989
2947
|
"span",
|
2990
2948
|
{
|
2991
2949
|
id: "amount-error",
|
2992
2950
|
style: { color: "red", display: "none" }
|
2993
2951
|
}
|
2994
|
-
)), /* @__PURE__ */
|
2952
|
+
)), /* @__PURE__ */ React10.createElement("div", { className: "form-group" }, /* @__PURE__ */ React10.createElement("label", null, "Name on card"), /* @__PURE__ */ React10.createElement(
|
2995
2953
|
"input",
|
2996
2954
|
{
|
2997
2955
|
id: "NameOnCard",
|
@@ -3000,13 +2958,13 @@ function Payment() {
|
|
3000
2958
|
maxLength: 100,
|
3001
2959
|
placeholder: "Name"
|
3002
2960
|
}
|
3003
|
-
), /* @__PURE__ */
|
2961
|
+
), /* @__PURE__ */ React10.createElement(
|
3004
2962
|
"span",
|
3005
2963
|
{
|
3006
2964
|
id: "NameOnCard-error",
|
3007
2965
|
style: { color: "red", display: "none" }
|
3008
2966
|
}
|
3009
|
-
)), /* @__PURE__ */
|
2967
|
+
)), /* @__PURE__ */ React10.createElement("div", { className: "form-group" }, /* @__PURE__ */ React10.createElement(
|
3010
2968
|
"input",
|
3011
2969
|
{
|
3012
2970
|
"data-token": "card_number",
|
@@ -3017,7 +2975,7 @@ function Payment() {
|
|
3017
2975
|
placeholder: "0000 0000 0000 0000",
|
3018
2976
|
onChange: handleCardNumberChange
|
3019
2977
|
}
|
3020
|
-
), state.error && /* @__PURE__ */
|
2978
|
+
), state.error && /* @__PURE__ */ React10.createElement("div", { style: { color: "red" } }, state.error)), /* @__PURE__ */ React10.createElement("div", { className: "expiry-date-group form-group" }, /* @__PURE__ */ React10.createElement(
|
3021
2979
|
"input",
|
3022
2980
|
{
|
3023
2981
|
"data-token": "exp_month",
|
@@ -3028,14 +2986,14 @@ function Payment() {
|
|
3028
2986
|
maxLength: 2,
|
3029
2987
|
onChange: (e) => handleMonthChange(e)
|
3030
2988
|
}
|
3031
|
-
), isValidMonth && /* @__PURE__ */
|
2989
|
+
), isValidMonth && /* @__PURE__ */ React10.createElement(
|
3032
2990
|
"span",
|
3033
2991
|
{
|
3034
2992
|
id: "card_number-error",
|
3035
2993
|
style: { color: "red", fontSize: "15px" }
|
3036
2994
|
},
|
3037
2995
|
(_a = ErrorText) == null ? void 0 : _a.montherror
|
3038
|
-
)), /* @__PURE__ */
|
2996
|
+
)), /* @__PURE__ */ React10.createElement("div", { className: "expiry-date-group form-group" }, /* @__PURE__ */ React10.createElement(
|
3039
2997
|
"input",
|
3040
2998
|
{
|
3041
2999
|
"data-token": "exp_year",
|
@@ -3046,7 +3004,7 @@ function Payment() {
|
|
3046
3004
|
value: state.year,
|
3047
3005
|
onChange: (e) => handleYearChange(e)
|
3048
3006
|
}
|
3049
|
-
), state.yearError && /* @__PURE__ */
|
3007
|
+
), state.yearError && /* @__PURE__ */ React10.createElement("span", { id: "exp_year-error", style: { color: "red" } }, state.yearError)), /* @__PURE__ */ React10.createElement("div", { className: "security-code-group form-group" }, /* @__PURE__ */ React10.createElement("div", { className: "input-container" }, /* @__PURE__ */ React10.createElement(
|
3050
3008
|
"input",
|
3051
3009
|
{
|
3052
3010
|
"data-token": "cvv",
|
@@ -3057,7 +3015,7 @@ function Payment() {
|
|
3057
3015
|
placeholder: "CVV",
|
3058
3016
|
onChange: (e) => handleCVVChange(e)
|
3059
3017
|
}
|
3060
|
-
), /* @__PURE__ */
|
3018
|
+
), /* @__PURE__ */ React10.createElement("i", { id: "cvc", className: "fa fa-question-circle" }), state.cvvError && /* @__PURE__ */ React10.createElement("span", { id: "cvv-error", style: { color: "red" } }, state.cvvError)), /* @__PURE__ */ React10.createElement("div", { className: "cvc-preview-container two-card hide" }, /* @__PURE__ */ React10.createElement("div", { className: "amex-cvc-preview" }), /* @__PURE__ */ React10.createElement("div", { className: "visa-mc-dis-cvc-preview" }))), /* @__PURE__ */ React10.createElement("div", { className: "zip-code-group form-group" }, /* @__PURE__ */ React10.createElement("label", null, "Postal code"), /* @__PURE__ */ React10.createElement("div", { className: "input-container" }, /* @__PURE__ */ React10.createElement(
|
3061
3019
|
"input",
|
3062
3020
|
{
|
3063
3021
|
id: "ZIPCode",
|
@@ -3069,7 +3027,7 @@ function Payment() {
|
|
3069
3027
|
value: state.zip,
|
3070
3028
|
onChange: (e) => handleZIP(e)
|
3071
3029
|
}
|
3072
|
-
), /* @__PURE__ */
|
3030
|
+
), /* @__PURE__ */ React10.createElement(
|
3073
3031
|
"a",
|
3074
3032
|
{
|
3075
3033
|
tabIndex: 0,
|
@@ -3079,15 +3037,15 @@ function Payment() {
|
|
3079
3037
|
"data-placement": "left",
|
3080
3038
|
"data-content": "Enter the ZIP/Postal code for your credit card billing address."
|
3081
3039
|
},
|
3082
|
-
/* @__PURE__ */
|
3083
|
-
), /* @__PURE__ */
|
3040
|
+
/* @__PURE__ */ React10.createElement("i", { className: "fa fa-question-circle" })
|
3041
|
+
), /* @__PURE__ */ React10.createElement(
|
3084
3042
|
"span",
|
3085
3043
|
{
|
3086
3044
|
id: "ZIPCode-error",
|
3087
3045
|
style: { color: "red", display: "none" }
|
3088
3046
|
},
|
3089
3047
|
ErrorText.fieldrequired
|
3090
|
-
))), /* @__PURE__ */
|
3048
|
+
))), /* @__PURE__ */ React10.createElement("div", { className: "form-group top-amnt" }, /* @__PURE__ */ React10.createElement("div", null, /* @__PURE__ */ React10.createElement("label", null, "Payment amount"), /* @__PURE__ */ React10.createElement("div", { className: "amount-placeholder" }, /* @__PURE__ */ React10.createElement(
|
3091
3049
|
"input",
|
3092
3050
|
{
|
3093
3051
|
id: "Amount",
|
@@ -3099,7 +3057,7 @@ function Payment() {
|
|
3099
3057
|
onChange: (e) => handleAmount(e),
|
3100
3058
|
onBlur: handleAmountBlur
|
3101
3059
|
}
|
3102
|
-
))), /* @__PURE__ */
|
3060
|
+
))), /* @__PURE__ */ React10.createElement("div", { className: "card-row" }, /* @__PURE__ */ React10.createElement("span", { className: "visa" }), /* @__PURE__ */ React10.createElement("span", { className: "mastercard" }), /* @__PURE__ */ React10.createElement("span", { className: "amex" }), /* @__PURE__ */ React10.createElement("span", { className: "discover" }))), /* @__PURE__ */ React10.createElement(
|
3103
3061
|
"button",
|
3104
3062
|
{
|
3105
3063
|
type: "button",
|
@@ -3108,7 +3066,7 @@ function Payment() {
|
|
3108
3066
|
className: "btn btn-block btn-success submit-button"
|
3109
3067
|
},
|
3110
3068
|
"Pay"
|
3111
|
-
)), /* @__PURE__ */
|
3069
|
+
)), /* @__PURE__ */ React10.createElement("div", { className: "powerd-by-part" }, /* @__PURE__ */ React10.createElement(
|
3112
3070
|
"svg",
|
3113
3071
|
{
|
3114
3072
|
xmlns: "http://www.w3.org/2000/svg",
|
@@ -3116,14 +3074,14 @@ function Payment() {
|
|
3116
3074
|
height: "20",
|
3117
3075
|
viewBox: "0 0 26 26"
|
3118
3076
|
},
|
3119
|
-
/* @__PURE__ */
|
3077
|
+
/* @__PURE__ */ React10.createElement(
|
3120
3078
|
"path",
|
3121
3079
|
{
|
3122
3080
|
fill: "currentColor",
|
3123
3081
|
d: "M23.633 5.028a1.074 1.074 0 0 0-.777-.366c-2.295-.06-5.199-2.514-7.119-3.477C14.551.592 13.768.201 13.18.098a1.225 1.225 0 0 0-.36.001c-.588.103-1.371.494-2.556 1.087c-1.92.962-4.824 3.416-7.119 3.476a1.08 1.08 0 0 0-.778.366a1.167 1.167 0 0 0-.291.834c.493 10.023 4.088 16.226 10.396 19.831c.164.093.346.141.527.141s.363-.048.528-.141c6.308-3.605 9.902-9.808 10.396-19.831a1.161 1.161 0 0 0-.29-.834zM18.617 8.97l-5.323 7.855c-.191.282-.491.469-.788.469c-.298 0-.629-.163-.838-.372l-3.752-3.753a.656.656 0 0 1 0-.926l.927-.929a.658.658 0 0 1 .926 0l2.44 2.44l4.239-6.257a.657.657 0 0 1 .91-.173l1.085.736a.657.657 0 0 1 .174.91z"
|
3124
3082
|
}
|
3125
3083
|
)
|
3126
|
-
), "Secure payments powered by Fractal", /* @__PURE__ */
|
3084
|
+
), "Secure payments powered by Fractal", /* @__PURE__ */ React10.createElement(
|
3127
3085
|
"img",
|
3128
3086
|
{
|
3129
3087
|
src: "https://ui.fractalpay.com/favicon.ico",
|
@@ -3135,22 +3093,28 @@ function Payment() {
|
|
3135
3093
|
}
|
3136
3094
|
|
3137
3095
|
// src/app/components/Transaction/CompletedTransactions.tsx
|
3138
|
-
|
3139
|
-
|
3140
|
-
|
3141
|
-
|
3142
|
-
|
3143
|
-
|
3096
|
+
import React12, { useEffect as useEffect3, useState as useState8 } from "react";
|
3097
|
+
import { Col, Row, Table } from "react-bootstrap";
|
3098
|
+
import {
|
3099
|
+
DatatableWrapper,
|
3100
|
+
Filter,
|
3101
|
+
PaginationOptions,
|
3102
|
+
TableBody,
|
3103
|
+
TableHeader
|
3104
|
+
} from "react-bs-datatable";
|
3105
|
+
import DatePicker from "react-datepicker";
|
3106
|
+
import "react-datepicker/dist/react-datepicker.css";
|
3107
|
+
import { toast as toast4 } from "react-toastify";
|
3144
3108
|
|
3145
3109
|
// src/app/components/Pagination/Pagination.tsx
|
3146
|
-
|
3147
|
-
|
3148
|
-
const [currentPage, setCurrentPage] = (
|
3149
|
-
const [showPages, setShowPages] = (
|
3150
|
-
(
|
3110
|
+
import React11, { useState as useState7, useEffect as useEffect2 } from "react";
|
3111
|
+
function PaginationPg({ totalPages, onPageChange, current }) {
|
3112
|
+
const [currentPage, setCurrentPage] = useState7(current);
|
3113
|
+
const [showPages, setShowPages] = useState7(false);
|
3114
|
+
useEffect2(() => {
|
3151
3115
|
setCurrentPage(current);
|
3152
3116
|
}, [current]);
|
3153
|
-
(
|
3117
|
+
useEffect2(() => {
|
3154
3118
|
setTimeout(() => {
|
3155
3119
|
setShowPages(true);
|
3156
3120
|
}, 1e3);
|
@@ -3186,7 +3150,7 @@ var PaginationPgComp = ({ totalPages, onPageChange, current }) => {
|
|
3186
3150
|
if (currentPage > 3) {
|
3187
3151
|
pageNumbers.push(renderPageNumber(1));
|
3188
3152
|
if (currentPage > 4) {
|
3189
|
-
pageNumbers.push(/* @__PURE__ */
|
3153
|
+
pageNumbers.push(/* @__PURE__ */ React11.createElement("li", { key: "start-break", className: "page-item disabled" }, /* @__PURE__ */ React11.createElement("span", { className: "page-link" }, "...")));
|
3190
3154
|
}
|
3191
3155
|
}
|
3192
3156
|
const startPage = Math.max(currentPage - 1, 1);
|
@@ -3196,17 +3160,16 @@ var PaginationPgComp = ({ totalPages, onPageChange, current }) => {
|
|
3196
3160
|
}
|
3197
3161
|
if (currentPage < totalPages - 2) {
|
3198
3162
|
if (currentPage < totalPages - 3) {
|
3199
|
-
pageNumbers.push(/* @__PURE__ */
|
3163
|
+
pageNumbers.push(/* @__PURE__ */ React11.createElement("li", { key: "end-break", className: "page-item disabled" }, /* @__PURE__ */ React11.createElement("span", { className: "page-link" }, "...")));
|
3200
3164
|
}
|
3201
3165
|
pageNumbers.push(renderPageNumber(totalPages));
|
3202
3166
|
}
|
3203
3167
|
}
|
3204
3168
|
return pageNumbers;
|
3205
3169
|
};
|
3206
|
-
const renderPageNumber = (pageNumber) => /* @__PURE__ */
|
3207
|
-
return /* @__PURE__ */
|
3208
|
-
}
|
3209
|
-
var PaginationPg = import_react11.default.memo(PaginationPgComp);
|
3170
|
+
const renderPageNumber = (pageNumber) => /* @__PURE__ */ React11.createElement("li", { key: pageNumber, className: `page-item ${currentPage === pageNumber ? "active" : ""}` }, /* @__PURE__ */ React11.createElement("a", { className: "page-link cursor-pointer", onClick: (e) => handlePageClick(e, pageNumber) }, pageNumber));
|
3171
|
+
return /* @__PURE__ */ React11.createElement(React11.Fragment, null, /* @__PURE__ */ React11.createElement("nav", { className: "app-pagination py-2" }, /* @__PURE__ */ React11.createElement("ul", { className: "pagination justify-content-center" }, /* @__PURE__ */ React11.createElement("li", { className: `page-item ${currentPage === 1 ? "disabled" : ""}` }, /* @__PURE__ */ React11.createElement("a", { className: "page-link cursor-pointer", onClick: handlePrevious }, /* @__PURE__ */ React11.createElement("span", null, "\u2B9C"))), showPages && getPageNumbers(), /* @__PURE__ */ React11.createElement("li", { className: `page-item ${currentPage === totalPages ? "disabled" : ""}` }, /* @__PURE__ */ React11.createElement("a", { className: "page-link cursor-pointer", onClick: handleNext }, /* @__PURE__ */ React11.createElement("span", null, "\u2B9E"))))));
|
3172
|
+
}
|
3210
3173
|
|
3211
3174
|
// src/app/components/Transaction/CompletedTransactions.tsx
|
3212
3175
|
var STORY_HEADERS = [
|
@@ -3243,10 +3206,10 @@ var STORY_HEADERS = [
|
|
3243
3206
|
}
|
3244
3207
|
];
|
3245
3208
|
function CompletedTransactions(props) {
|
3246
|
-
const [dataList, setDataList] = (
|
3247
|
-
const [startDate, setStartDate] = (
|
3248
|
-
const [endDate, setEndDate] = (
|
3249
|
-
const [state, setState] = (
|
3209
|
+
const [dataList, setDataList] = useState8([]);
|
3210
|
+
const [startDate, setStartDate] = useState8(null);
|
3211
|
+
const [endDate, setEndDate] = useState8(null);
|
3212
|
+
const [state, setState] = useState8({
|
3250
3213
|
page: 1,
|
3251
3214
|
totalPage: 0,
|
3252
3215
|
data: [],
|
@@ -3334,9 +3297,9 @@ function CompletedTransactions(props) {
|
|
3334
3297
|
};
|
3335
3298
|
const handleExport = async () => {
|
3336
3299
|
if (!startDate) {
|
3337
|
-
|
3300
|
+
toast4.error("Start date required");
|
3338
3301
|
} else if (!endDate) {
|
3339
|
-
|
3302
|
+
toast4.error("End date required");
|
3340
3303
|
} else {
|
3341
3304
|
setState((prev) => __spreadProps(__spreadValues({}, prev), { csvData: true }));
|
3342
3305
|
try {
|
@@ -3369,19 +3332,19 @@ function CompletedTransactions(props) {
|
|
3369
3332
|
}
|
3370
3333
|
}
|
3371
3334
|
};
|
3372
|
-
(
|
3335
|
+
useEffect3(() => {
|
3373
3336
|
fetchData(state.page, startDate, endDate);
|
3374
3337
|
}, [state.page]);
|
3375
3338
|
const handlePageChange = (pageNumber) => {
|
3376
3339
|
setState((prev) => __spreadProps(__spreadValues({}, prev), { page: pageNumber }));
|
3377
3340
|
fetchData(pageNumber, startDate, endDate);
|
3378
3341
|
};
|
3379
|
-
return /* @__PURE__ */
|
3342
|
+
return /* @__PURE__ */ React12.createElement(React12.Fragment, null, /* @__PURE__ */ React12.createElement("style", null, `
|
3380
3343
|
.react-datepicker-wrapper:first-child {
|
3381
3344
|
margin-right: 10px;
|
3382
3345
|
}
|
3383
|
-
`), /* @__PURE__ */
|
3384
|
-
|
3346
|
+
`), /* @__PURE__ */ React12.createElement("div", { className: "mb-5" }, /* @__PURE__ */ React12.createElement("div", null, /* @__PURE__ */ React12.createElement("div", { style: { display: "flex" } }, /* @__PURE__ */ React12.createElement("div", { style: { display: "flex", marginRight: "10px", marginTop: "25px" } }, /* @__PURE__ */ React12.createElement(
|
3347
|
+
DatePicker,
|
3385
3348
|
{
|
3386
3349
|
selected: startDate,
|
3387
3350
|
onChange: handleStartDateChange,
|
@@ -3391,8 +3354,8 @@ function CompletedTransactions(props) {
|
|
3391
3354
|
placeholderText: "Start Date",
|
3392
3355
|
required: true
|
3393
3356
|
}
|
3394
|
-
), /* @__PURE__ */
|
3395
|
-
|
3357
|
+
), /* @__PURE__ */ React12.createElement(
|
3358
|
+
DatePicker,
|
3396
3359
|
{
|
3397
3360
|
selected: endDate,
|
3398
3361
|
onChange: handleEndDateChange,
|
@@ -3402,8 +3365,8 @@ function CompletedTransactions(props) {
|
|
3402
3365
|
minDate: startDate,
|
3403
3366
|
placeholderText: "End Date"
|
3404
3367
|
}
|
3405
|
-
)), /* @__PURE__ */
|
3406
|
-
|
3368
|
+
)), /* @__PURE__ */ React12.createElement("button", { className: "export-btn1", onClick: handleExport }, "Export")), /* @__PURE__ */ React12.createElement(
|
3369
|
+
DatatableWrapper,
|
3407
3370
|
{
|
3408
3371
|
body: dataList,
|
3409
3372
|
headers: STORY_HEADERS,
|
@@ -3414,21 +3377,21 @@ function CompletedTransactions(props) {
|
|
3414
3377
|
}
|
3415
3378
|
}
|
3416
3379
|
},
|
3417
|
-
/* @__PURE__ */
|
3418
|
-
/* @__PURE__ */
|
3419
|
-
/* @__PURE__ */
|
3380
|
+
/* @__PURE__ */ React12.createElement(Row, { className: "mb-4 p-2" }, /* @__PURE__ */ React12.createElement(Col, { xs: 12, sm: 6, lg: 4, className: "d-flex flex-col justify-content-lg-start align-items-center justify-content-sm-start mb-2 mb-sm-0" }, /* @__PURE__ */ React12.createElement(PaginationOptions, null)), /* @__PURE__ */ React12.createElement(Col, { xs: 12, lg: 4, className: "d-flex flex-col justify-content-end align-items-end" }), /* @__PURE__ */ React12.createElement(Col, { xs: 12, sm: 6, lg: 4, className: "d-flex flex-col justify-content-end align-items-end" }, /* @__PURE__ */ React12.createElement(Filter, null))),
|
3381
|
+
/* @__PURE__ */ React12.createElement(Row, null, /* @__PURE__ */ React12.createElement("div", { className: "responsive-tbl" }, /* @__PURE__ */ React12.createElement(Table, null, /* @__PURE__ */ React12.createElement(TableHeader, null), /* @__PURE__ */ React12.createElement(TableBody, null)))),
|
3382
|
+
/* @__PURE__ */ React12.createElement(PaginationPg, { totalPages: state.totalPage, onPageChange: handlePageChange, current: state.page })
|
3420
3383
|
))));
|
3421
3384
|
}
|
3422
3385
|
|
3423
3386
|
// src/app/components/Payment/TockenizPay.tsx
|
3424
|
-
|
3425
|
-
|
3426
|
-
|
3427
|
-
|
3428
|
-
|
3429
|
-
|
3387
|
+
import React13, { useState as useState9 } from "react";
|
3388
|
+
import { Modal as Modal7 } from "react-bootstrap";
|
3389
|
+
import { toast as toast5, ToastContainer as ToastContainer3 } from "react-toastify";
|
3390
|
+
import axios3 from "axios";
|
3391
|
+
import forge2 from "node-forge";
|
3392
|
+
import creditCardType from "credit-card-type";
|
3430
3393
|
function TockenizPay() {
|
3431
|
-
const [state, setState] = (
|
3394
|
+
const [state, setState] = useState9({
|
3432
3395
|
show: false,
|
3433
3396
|
publicKey: "",
|
3434
3397
|
sessionKey: "",
|
@@ -3439,13 +3402,13 @@ function TockenizPay() {
|
|
3439
3402
|
zip: "",
|
3440
3403
|
amount: ""
|
3441
3404
|
});
|
3442
|
-
const [cardTypeDetail, setCardTypeDetail] = (
|
3443
|
-
const [isValid, setIsValid] = (
|
3444
|
-
const [isValidMonth, setIsValidMonth] = (
|
3445
|
-
const [data, setData] = (
|
3405
|
+
const [cardTypeDetail, setCardTypeDetail] = useState9(null);
|
3406
|
+
const [isValid, setIsValid] = useState9(false);
|
3407
|
+
const [isValidMonth, setIsValidMonth] = useState9(false);
|
3408
|
+
const [data, setData] = useState9(null);
|
3446
3409
|
const handlePaymentClick = async () => {
|
3447
3410
|
try {
|
3448
|
-
const response = await
|
3411
|
+
const response = await axios3.post(`${baseUrl}/generate-session`, {});
|
3449
3412
|
const data2 = response.data;
|
3450
3413
|
if (data2 && (data2 == null ? void 0 : data2.result) === true) {
|
3451
3414
|
setState((prev) => {
|
@@ -3464,14 +3427,14 @@ function TockenizPay() {
|
|
3464
3427
|
const handleSubmitPay = async () => {
|
3465
3428
|
var _a, _b, _c, _d, _e;
|
3466
3429
|
let track2_data = `${(_a = state == null ? void 0 : state.cardNumber) == null ? void 0 : _a.replaceAll(" ", "")}=${state.year}${((_b = state == null ? void 0 : state.month) == null ? void 0 : _b.length) > 1 ? state == null ? void 0 : state.month : "0" + (state == null ? void 0 : state.month)} ${state.cvv}`;
|
3467
|
-
const publicKey =
|
3430
|
+
const publicKey = forge2.pki.publicKeyFromPem(state.publicKey);
|
3468
3431
|
const encrypted = publicKey.encrypt(track2_data, "RSA-OAEP", {
|
3469
|
-
md:
|
3432
|
+
md: forge2.md.sha1.create(),
|
3470
3433
|
mgf1: {
|
3471
|
-
md:
|
3434
|
+
md: forge2.md.sha1.create()
|
3472
3435
|
}
|
3473
3436
|
});
|
3474
|
-
const encryptedBase64 =
|
3437
|
+
const encryptedBase64 = forge2.util.encode64(encrypted);
|
3475
3438
|
console.log(encryptedBase64);
|
3476
3439
|
const requestBody = {
|
3477
3440
|
enc_track2_data: encryptedBase64,
|
@@ -3479,7 +3442,7 @@ function TockenizPay() {
|
|
3479
3442
|
algorithm: "RSAES_OAEP_SHA_1"
|
3480
3443
|
};
|
3481
3444
|
try {
|
3482
|
-
const response = await
|
3445
|
+
const response = await axios3.post(
|
3483
3446
|
"https://m1ao5pku8b.execute-api.us-east-2.amazonaws.com/prod/tokenizer/tokenize",
|
3484
3447
|
requestBody,
|
3485
3448
|
{
|
@@ -3490,7 +3453,7 @@ function TockenizPay() {
|
|
3490
3453
|
}
|
3491
3454
|
);
|
3492
3455
|
if ((response == null ? void 0 : response.status) === 200) {
|
3493
|
-
|
3456
|
+
toast5.success("Payment Successful");
|
3494
3457
|
setState((prev) => __spreadProps(__spreadValues({}, prev), {
|
3495
3458
|
show: false,
|
3496
3459
|
publicKey: "",
|
@@ -3505,7 +3468,7 @@ function TockenizPay() {
|
|
3505
3468
|
}
|
3506
3469
|
console.log("response", response);
|
3507
3470
|
} catch (error) {
|
3508
|
-
|
3471
|
+
toast5.error((_e = (_d = (_c = error == null ? void 0 : error.response) == null ? void 0 : _c.data) == null ? void 0 : _d.data) == null ? void 0 : _e.message);
|
3509
3472
|
console.error("Error:", error);
|
3510
3473
|
}
|
3511
3474
|
};
|
@@ -3537,9 +3500,9 @@ function TockenizPay() {
|
|
3537
3500
|
e.preventDefault();
|
3538
3501
|
e.stopPropagation();
|
3539
3502
|
const { value } = e.target;
|
3540
|
-
let cardtyp = (
|
3503
|
+
let cardtyp = creditCardType(value)[0];
|
3541
3504
|
const formattedValue = formatCreditCardNumber(value, cardtyp == null ? void 0 : cardtyp.type);
|
3542
|
-
setCardTypeDetail((
|
3505
|
+
setCardTypeDetail(creditCardType(value)[0]);
|
3543
3506
|
console.log(formattedValue);
|
3544
3507
|
if (value.match(/[a-zA-Z]/)) {
|
3545
3508
|
setState((prev) => __spreadProps(__spreadValues({}, prev), {
|
@@ -3641,8 +3604,7 @@ function TockenizPay() {
|
|
3641
3604
|
}
|
3642
3605
|
return "";
|
3643
3606
|
}
|
3644
|
-
|
3645
|
-
return /* @__PURE__ */ import_react13.default.createElement("div", null, /* @__PURE__ */ import_react13.default.createElement(import_react_toastify5.ToastContainer, null), /* @__PURE__ */ import_react13.default.createElement(
|
3607
|
+
return /* @__PURE__ */ React13.createElement("div", null, /* @__PURE__ */ React13.createElement(ToastContainer3, null), /* @__PURE__ */ React13.createElement(
|
3646
3608
|
"button",
|
3647
3609
|
{
|
3648
3610
|
className: "export-btn mt-4",
|
@@ -3650,8 +3612,8 @@ function TockenizPay() {
|
|
3650
3612
|
onClick: () => handlePaymentClick()
|
3651
3613
|
},
|
3652
3614
|
"TokenizePay"
|
3653
|
-
), /* @__PURE__ */
|
3654
|
-
|
3615
|
+
), /* @__PURE__ */ React13.createElement(
|
3616
|
+
Modal7,
|
3655
3617
|
{
|
3656
3618
|
show: state.show,
|
3657
3619
|
onHide: () => setState((prev) => __spreadProps(__spreadValues({}, prev), {
|
@@ -3659,8 +3621,8 @@ function TockenizPay() {
|
|
3659
3621
|
})),
|
3660
3622
|
centered: true
|
3661
3623
|
},
|
3662
|
-
/* @__PURE__ */
|
3663
|
-
/* @__PURE__ */
|
3624
|
+
/* @__PURE__ */ React13.createElement(Modal7.Header, { closeButton: true }),
|
3625
|
+
/* @__PURE__ */ React13.createElement(Modal7.Body, null, /* @__PURE__ */ React13.createElement("div", { className: "payment-popup" }, /* @__PURE__ */ React13.createElement("div", { className: "row" }, /* @__PURE__ */ React13.createElement("div", { className: "" }, /* @__PURE__ */ React13.createElement("div", { id: "Checkout", className: "inline" }, /* @__PURE__ */ React13.createElement("div", { className: "header" }, /* @__PURE__ */ React13.createElement("h1", null, "Pay")), /* @__PURE__ */ React13.createElement("form", { id: "PaymentForm", className: "payment-form" }, /* @__PURE__ */ React13.createElement("div", { className: "form-group" }, /* @__PURE__ */ React13.createElement("label", null, "Name on card"), /* @__PURE__ */ React13.createElement(
|
3664
3626
|
"input",
|
3665
3627
|
{
|
3666
3628
|
id: "NameOnCard",
|
@@ -3669,13 +3631,13 @@ function TockenizPay() {
|
|
3669
3631
|
maxLength: 100,
|
3670
3632
|
placeholder: "Name"
|
3671
3633
|
}
|
3672
|
-
), /* @__PURE__ */
|
3634
|
+
), /* @__PURE__ */ React13.createElement(
|
3673
3635
|
"span",
|
3674
3636
|
{
|
3675
3637
|
id: "NameOnCard-error",
|
3676
3638
|
style: { color: "red", display: "none" }
|
3677
3639
|
}
|
3678
|
-
)), /* @__PURE__ */
|
3640
|
+
)), /* @__PURE__ */ React13.createElement("div", { className: "form-group" }, /* @__PURE__ */ React13.createElement(
|
3679
3641
|
"input",
|
3680
3642
|
{
|
3681
3643
|
"data-token": "card_number",
|
@@ -3686,7 +3648,7 @@ function TockenizPay() {
|
|
3686
3648
|
placeholder: "0000 0000 0000 0000",
|
3687
3649
|
onChange: handleCardNumberChange
|
3688
3650
|
}
|
3689
|
-
), state.error && /* @__PURE__ */
|
3651
|
+
), state.error && /* @__PURE__ */ React13.createElement("div", { style: { color: "red" } }, state.error)), /* @__PURE__ */ React13.createElement("div", { className: "expiry-date-group form-group" }, /* @__PURE__ */ React13.createElement(
|
3690
3652
|
"input",
|
3691
3653
|
{
|
3692
3654
|
"data-token": "exp_month",
|
@@ -3697,14 +3659,14 @@ function TockenizPay() {
|
|
3697
3659
|
maxLength: 2,
|
3698
3660
|
onChange: (e) => handleMonthChange(e)
|
3699
3661
|
}
|
3700
|
-
), isValidMonth && /* @__PURE__ */
|
3662
|
+
), isValidMonth && /* @__PURE__ */ React13.createElement(
|
3701
3663
|
"span",
|
3702
3664
|
{
|
3703
3665
|
id: "card_number-error",
|
3704
3666
|
style: { color: "red", fontSize: "15px" }
|
3705
3667
|
},
|
3706
3668
|
"Please write month only 1 to 12"
|
3707
|
-
)), /* @__PURE__ */
|
3669
|
+
)), /* @__PURE__ */ React13.createElement("div", { className: "expiry-date-group form-group" }, /* @__PURE__ */ React13.createElement(
|
3708
3670
|
"input",
|
3709
3671
|
{
|
3710
3672
|
"data-token": "exp_year",
|
@@ -3715,7 +3677,7 @@ function TockenizPay() {
|
|
3715
3677
|
value: state.year,
|
3716
3678
|
onChange: (e) => handleYearChange(e)
|
3717
3679
|
}
|
3718
|
-
), state.yearError && /* @__PURE__ */
|
3680
|
+
), state.yearError && /* @__PURE__ */ React13.createElement("span", { id: "exp_year-error", style: { color: "red" } }, state.yearError)), /* @__PURE__ */ React13.createElement("div", { className: "security-code-group form-group" }, /* @__PURE__ */ React13.createElement("div", { className: "input-container" }, /* @__PURE__ */ React13.createElement(
|
3719
3681
|
"input",
|
3720
3682
|
{
|
3721
3683
|
"data-token": "cvv",
|
@@ -3726,7 +3688,7 @@ function TockenizPay() {
|
|
3726
3688
|
placeholder: "CVV",
|
3727
3689
|
onChange: (e) => handleCVVChange(e)
|
3728
3690
|
}
|
3729
|
-
), /* @__PURE__ */
|
3691
|
+
), /* @__PURE__ */ React13.createElement("i", { id: "cvc", className: "fa fa-question-circle" }), state.cvvError && /* @__PURE__ */ React13.createElement("span", { id: "cvv-error", style: { color: "red" } }, state.cvvError)), /* @__PURE__ */ React13.createElement("div", { className: "cvc-preview-container two-card hide" }, /* @__PURE__ */ React13.createElement("div", { className: "amex-cvc-preview" }), /* @__PURE__ */ React13.createElement("div", { className: "visa-mc-dis-cvc-preview" }))), /* @__PURE__ */ React13.createElement("div", { className: "zip-code-group form-group" }, /* @__PURE__ */ React13.createElement("label", null, "Postal code"), /* @__PURE__ */ React13.createElement("div", { className: "input-container" }, /* @__PURE__ */ React13.createElement(
|
3730
3692
|
"input",
|
3731
3693
|
{
|
3732
3694
|
id: "ZIPCode",
|
@@ -3738,7 +3700,7 @@ function TockenizPay() {
|
|
3738
3700
|
value: state.zip,
|
3739
3701
|
onChange: (e) => handleZIP(e)
|
3740
3702
|
}
|
3741
|
-
), /* @__PURE__ */
|
3703
|
+
), /* @__PURE__ */ React13.createElement(
|
3742
3704
|
"a",
|
3743
3705
|
{
|
3744
3706
|
tabIndex: 0,
|
@@ -3748,15 +3710,15 @@ function TockenizPay() {
|
|
3748
3710
|
"data-placement": "left",
|
3749
3711
|
"data-content": "Enter the ZIP/Postal code for your credit card billing address."
|
3750
3712
|
},
|
3751
|
-
/* @__PURE__ */
|
3752
|
-
), /* @__PURE__ */
|
3713
|
+
/* @__PURE__ */ React13.createElement("i", { className: "fa fa-question-circle" })
|
3714
|
+
), /* @__PURE__ */ React13.createElement(
|
3753
3715
|
"span",
|
3754
3716
|
{
|
3755
3717
|
id: "ZIPCode-error",
|
3756
3718
|
style: { color: "red", display: "none" }
|
3757
3719
|
},
|
3758
3720
|
"This field is required"
|
3759
|
-
))), /* @__PURE__ */
|
3721
|
+
))), /* @__PURE__ */ React13.createElement("div", { className: "form-group top-amnt" }, /* @__PURE__ */ React13.createElement("div", null, /* @__PURE__ */ React13.createElement("label", null, "Payment amount"), /* @__PURE__ */ React13.createElement("div", { className: "amount-placeholder" }, /* @__PURE__ */ React13.createElement(
|
3760
3722
|
"input",
|
3761
3723
|
{
|
3762
3724
|
id: "Amount",
|
@@ -3768,7 +3730,7 @@ function TockenizPay() {
|
|
3768
3730
|
onChange: (e) => handleAmount(e),
|
3769
3731
|
onBlur: handleAmountBlur
|
3770
3732
|
}
|
3771
|
-
))), /* @__PURE__ */
|
3733
|
+
))), /* @__PURE__ */ React13.createElement("div", { className: "card-row" }, /* @__PURE__ */ React13.createElement("span", { className: "visa" }), /* @__PURE__ */ React13.createElement("span", { className: "mastercard" }), /* @__PURE__ */ React13.createElement("span", { className: "amex" }), /* @__PURE__ */ React13.createElement("span", { className: "discover" }))), /* @__PURE__ */ React13.createElement(
|
3772
3734
|
"button",
|
3773
3735
|
{
|
3774
3736
|
type: "button",
|
@@ -3777,7 +3739,7 @@ function TockenizPay() {
|
|
3777
3739
|
className: "btn btn-block btn-success submit-button"
|
3778
3740
|
},
|
3779
3741
|
"Submit"
|
3780
|
-
)), /* @__PURE__ */
|
3742
|
+
)), /* @__PURE__ */ React13.createElement("div", { className: "powerd-by-part" }, /* @__PURE__ */ React13.createElement(
|
3781
3743
|
"svg",
|
3782
3744
|
{
|
3783
3745
|
xmlns: "http://www.w3.org/2000/svg",
|
@@ -3785,14 +3747,14 @@ function TockenizPay() {
|
|
3785
3747
|
height: "20",
|
3786
3748
|
viewBox: "0 0 26 26"
|
3787
3749
|
},
|
3788
|
-
/* @__PURE__ */
|
3750
|
+
/* @__PURE__ */ React13.createElement(
|
3789
3751
|
"path",
|
3790
3752
|
{
|
3791
3753
|
fill: "currentColor",
|
3792
3754
|
d: "M23.633 5.028a1.074 1.074 0 0 0-.777-.366c-2.295-.06-5.199-2.514-7.119-3.477C14.551.592 13.768.201 13.18.098a1.225 1.225 0 0 0-.36.001c-.588.103-1.371.494-2.556 1.087c-1.92.962-4.824 3.416-7.119 3.476a1.08 1.08 0 0 0-.778.366a1.167 1.167 0 0 0-.291.834c.493 10.023 4.088 16.226 10.396 19.831c.164.093.346.141.527.141s.363-.048.528-.141c6.308-3.605 9.902-9.808 10.396-19.831a1.161 1.161 0 0 0-.29-.834zM18.617 8.97l-5.323 7.855c-.191.282-.491.469-.788.469c-.298 0-.629-.163-.838-.372l-3.752-3.753a.656.656 0 0 1 0-.926l.927-.929a.658.658 0 0 1 .926 0l2.44 2.44l4.239-6.257a.657.657 0 0 1 .91-.173l1.085.736a.657.657 0 0 1 .174.91z"
|
3793
3755
|
}
|
3794
3756
|
)
|
3795
|
-
), "Secure payments powered by Fractal", /* @__PURE__ */
|
3757
|
+
), "Secure payments powered by Fractal", /* @__PURE__ */ React13.createElement(
|
3796
3758
|
"img",
|
3797
3759
|
{
|
3798
3760
|
src: "https://ui.fractalpay.com/favicon.ico",
|
@@ -3804,25 +3766,25 @@ function TockenizPay() {
|
|
3804
3766
|
}
|
3805
3767
|
|
3806
3768
|
// src/app/components/Payment/GetPaymentDynamic.tsx
|
3807
|
-
|
3808
|
-
|
3769
|
+
import React15, { useEffect as useEffect4, useState as useState10 } from "react";
|
3770
|
+
import { Modal as Modal8 } from "react-bootstrap";
|
3809
3771
|
|
3810
3772
|
// src/app/components/Loader/MyLoadingAnimation.tsx
|
3811
|
-
|
3773
|
+
import React14 from "react";
|
3812
3774
|
function MyLoadingAnimation() {
|
3813
|
-
return /* @__PURE__ */
|
3775
|
+
return /* @__PURE__ */ React14.createElement(React14.Fragment, null, /* @__PURE__ */ React14.createElement(LoaderStyle_default, null), /* @__PURE__ */ React14.createElement("div", { className: "loading-animation" }, /* @__PURE__ */ React14.createElement("div", { className: "spinner" })));
|
3814
3776
|
}
|
3815
3777
|
|
3816
3778
|
// src/app/components/Payment/GetPaymentDynamic.tsx
|
3817
3779
|
function GetPaymentDynamic(props) {
|
3818
3780
|
const { amount, fractalpayClientKey, orderID } = props;
|
3819
|
-
const [loading, setLoading] = (
|
3820
|
-
const [show, setShow] = (
|
3821
|
-
const [iframeLoaded, setIframeLoaded] = (
|
3822
|
-
const [phoneNumber, setPhoneNumber] = (
|
3823
|
-
const [errorMessage, setErrorMessage] = (
|
3824
|
-
const [submitClicked, setSubmitClicked] = (
|
3825
|
-
const [isValidNumber, setIsValidNumber] = (
|
3781
|
+
const [loading, setLoading] = useState10(false);
|
3782
|
+
const [show, setShow] = useState10(false);
|
3783
|
+
const [iframeLoaded, setIframeLoaded] = useState10(false);
|
3784
|
+
const [phoneNumber, setPhoneNumber] = useState10("");
|
3785
|
+
const [errorMessage, setErrorMessage] = useState10("");
|
3786
|
+
const [submitClicked, setSubmitClicked] = useState10(false);
|
3787
|
+
const [isValidNumber, setIsValidNumber] = useState10(true);
|
3826
3788
|
const handleClose = () => {
|
3827
3789
|
setIframeLoaded(false);
|
3828
3790
|
setTimeout(() => {
|
@@ -3837,7 +3799,7 @@ function GetPaymentDynamic(props) {
|
|
3837
3799
|
console.error("Fractalpay client key is missing or empty.");
|
3838
3800
|
}
|
3839
3801
|
};
|
3840
|
-
(
|
3802
|
+
useEffect4(() => {
|
3841
3803
|
if (!fractalpayClientKey) {
|
3842
3804
|
console.error("Fractalpay client key is missing or empty.");
|
3843
3805
|
}
|
@@ -3860,7 +3822,7 @@ function GetPaymentDynamic(props) {
|
|
3860
3822
|
const handleLoad = () => {
|
3861
3823
|
setLoading(false);
|
3862
3824
|
};
|
3863
|
-
(
|
3825
|
+
useEffect4(() => {
|
3864
3826
|
const messageListener = (event) => {
|
3865
3827
|
var _a, _b;
|
3866
3828
|
const response = (_b = (_a = event == null ? void 0 : event.data) == null ? void 0 : _a.other) == null ? void 0 : _b.data;
|
@@ -3875,7 +3837,7 @@ function GetPaymentDynamic(props) {
|
|
3875
3837
|
window.removeEventListener("message", messageListener);
|
3876
3838
|
};
|
3877
3839
|
}, []);
|
3878
|
-
return /* @__PURE__ */
|
3840
|
+
return /* @__PURE__ */ React15.createElement("div", null, /* @__PURE__ */ React15.createElement("button", { className: "paymentBtn", onClick: handleShow }, "Pay"), /* @__PURE__ */ React15.createElement(Modal8, { show: show && iframeLoaded, id: "modal-pay", className: "modal-lg", onHide: handleClose }, /* @__PURE__ */ React15.createElement(Modal8.Header, { closeButton: true }), /* @__PURE__ */ React15.createElement(Modal8.Body, null, loading && /* @__PURE__ */ React15.createElement(MyLoadingAnimation, null), /* @__PURE__ */ React15.createElement(
|
3879
3841
|
"iframe",
|
3880
3842
|
{
|
3881
3843
|
src: `${baseUrl}widget-form/${amount}?fractalpay_public_key=${fractalpayClientKey}&order_id=${orderID}`,
|
@@ -3886,8 +3848,7 @@ function GetPaymentDynamic(props) {
|
|
3886
3848
|
}
|
3887
3849
|
))));
|
3888
3850
|
}
|
3889
|
-
|
3890
|
-
0 && (module.exports = {
|
3851
|
+
export {
|
3891
3852
|
CompletedTransactions,
|
3892
3853
|
GetPaymentDynamic,
|
3893
3854
|
Payment,
|
@@ -3897,4 +3858,4 @@ function GetPaymentDynamic(props) {
|
|
3897
3858
|
RequestPaymentonClick,
|
3898
3859
|
RqstPaymntInputField,
|
3899
3860
|
TockenizPay
|
3900
|
-
}
|
3861
|
+
};
|