@churchapps/apphelper 0.1.7 → 0.1.9

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.
Files changed (192) hide show
  1. package/.eslintignore +3 -3
  2. package/.eslintrc.json +22 -22
  3. package/LICENSE +21 -21
  4. package/README.md +24 -24
  5. package/dist/components/gallery/GalleryModal.d.ts.map +1 -1
  6. package/dist/components/gallery/GalleryModal.js +13 -2
  7. package/dist/components/gallery/GalleryModal.js.map +1 -1
  8. package/dist/components/markdownEditor/editor.css +787 -787
  9. package/dist/components/markdownEditor/images/icons/arrow-clockwise.svg +3 -3
  10. package/dist/components/markdownEditor/images/icons/arrow-counterclockwise.svg +3 -3
  11. package/dist/components/markdownEditor/images/icons/chat-square-quote.svg +3 -3
  12. package/dist/components/markdownEditor/images/icons/chevron-down.svg +2 -2
  13. package/dist/components/markdownEditor/images/icons/code.svg +2 -2
  14. package/dist/components/markdownEditor/images/icons/journal-code.svg +4 -4
  15. package/dist/components/markdownEditor/images/icons/journal-text.svg +4 -4
  16. package/dist/components/markdownEditor/images/icons/justify.svg +2 -2
  17. package/dist/components/markdownEditor/images/icons/link.svg +3 -3
  18. package/dist/components/markdownEditor/images/icons/list-ol.svg +3 -3
  19. package/dist/components/markdownEditor/images/icons/list-ul.svg +2 -2
  20. package/dist/components/markdownEditor/images/icons/pencil-fill.svg +2 -2
  21. package/dist/components/markdownEditor/images/icons/text-center.svg +2 -2
  22. package/dist/components/markdownEditor/images/icons/text-left.svg +2 -2
  23. package/dist/components/markdownEditor/images/icons/text-paragraph.svg +2 -2
  24. package/dist/components/markdownEditor/images/icons/text-right.svg +2 -2
  25. package/dist/components/markdownEditor/images/icons/type-bold.svg +2 -2
  26. package/dist/components/markdownEditor/images/icons/type-h1.svg +2 -2
  27. package/dist/components/markdownEditor/images/icons/type-h2.svg +2 -2
  28. package/dist/components/markdownEditor/images/icons/type-h3.svg +2 -2
  29. package/dist/components/markdownEditor/images/icons/type-h4.svg +12 -12
  30. package/dist/components/markdownEditor/images/icons/type-italic.svg +2 -2
  31. package/dist/components/markdownEditor/images/icons/type-strikethrough.svg +2 -2
  32. package/dist/components/markdownEditor/images/icons/type-underline.svg +2 -2
  33. package/dist/components/wrapper/SiteWrapper.d.ts.map +1 -1
  34. package/dist/components/wrapper/SiteWrapper.js +5 -2
  35. package/dist/components/wrapper/SiteWrapper.js.map +1 -1
  36. package/package.json +86 -86
  37. package/src/components/CreatePerson.tsx +80 -80
  38. package/src/components/DisplayBox.tsx +68 -68
  39. package/src/components/ErrorMessages.tsx +26 -26
  40. package/src/components/ExportLink.tsx +67 -67
  41. package/src/components/FloatingSupport.tsx +16 -16
  42. package/src/components/FormSubmissionEdit.tsx +120 -120
  43. package/src/components/HelpIcon.tsx +10 -10
  44. package/src/components/ImageEditor.tsx +126 -126
  45. package/src/components/InputBox.tsx +73 -73
  46. package/src/components/Loading.tsx +29 -29
  47. package/src/components/PersonAdd.tsx +75 -75
  48. package/src/components/QuestionEdit.tsx +63 -63
  49. package/src/components/SmallButton.tsx +39 -39
  50. package/src/components/SupportModal.tsx +26 -26
  51. package/src/components/TabPanel.tsx +34 -34
  52. package/src/components/gallery/GalleryModal.tsx +119 -102
  53. package/src/components/gallery/StockPhotos.tsx +74 -74
  54. package/src/components/gallery/index.ts +1 -1
  55. package/src/components/iconPicker/IconNamesList.ts +2240 -2240
  56. package/src/components/iconPicker/IconPicker.tsx +153 -153
  57. package/src/components/index.tsx +24 -24
  58. package/src/components/markdownEditor/Editor.tsx +132 -132
  59. package/src/components/markdownEditor/MarkdownEditor.tsx +16 -16
  60. package/src/components/markdownEditor/MarkdownModal.tsx +46 -46
  61. package/src/components/markdownEditor/MarkdownPreview.tsx +14 -14
  62. package/src/components/markdownEditor/editor.css +787 -787
  63. package/src/components/markdownEditor/images/icons/arrow-clockwise.svg +3 -3
  64. package/src/components/markdownEditor/images/icons/arrow-counterclockwise.svg +3 -3
  65. package/src/components/markdownEditor/images/icons/chat-square-quote.svg +3 -3
  66. package/src/components/markdownEditor/images/icons/chevron-down.svg +2 -2
  67. package/src/components/markdownEditor/images/icons/code.svg +2 -2
  68. package/src/components/markdownEditor/images/icons/journal-code.svg +4 -4
  69. package/src/components/markdownEditor/images/icons/journal-text.svg +4 -4
  70. package/src/components/markdownEditor/images/icons/justify.svg +2 -2
  71. package/src/components/markdownEditor/images/icons/link.svg +3 -3
  72. package/src/components/markdownEditor/images/icons/list-ol.svg +3 -3
  73. package/src/components/markdownEditor/images/icons/list-ul.svg +2 -2
  74. package/src/components/markdownEditor/images/icons/pencil-fill.svg +2 -2
  75. package/src/components/markdownEditor/images/icons/text-center.svg +2 -2
  76. package/src/components/markdownEditor/images/icons/text-left.svg +2 -2
  77. package/src/components/markdownEditor/images/icons/text-paragraph.svg +2 -2
  78. package/src/components/markdownEditor/images/icons/text-right.svg +2 -2
  79. package/src/components/markdownEditor/images/icons/type-bold.svg +2 -2
  80. package/src/components/markdownEditor/images/icons/type-h1.svg +2 -2
  81. package/src/components/markdownEditor/images/icons/type-h2.svg +2 -2
  82. package/src/components/markdownEditor/images/icons/type-h3.svg +2 -2
  83. package/src/components/markdownEditor/images/icons/type-h4.svg +12 -12
  84. package/src/components/markdownEditor/images/icons/type-italic.svg +2 -2
  85. package/src/components/markdownEditor/images/icons/type-strikethrough.svg +2 -2
  86. package/src/components/markdownEditor/images/icons/type-underline.svg +2 -2
  87. package/src/components/markdownEditor/index.ts +2 -2
  88. package/src/components/markdownEditor/plugins/AutoLinkPlugin.tsx +35 -35
  89. package/src/components/markdownEditor/plugins/ControlledEditorPlugin.tsx +24 -24
  90. package/src/components/markdownEditor/plugins/ListMaxIndentLevelPlugin.tsx +68 -68
  91. package/src/components/markdownEditor/plugins/MarkdownTransformers.ts +106 -106
  92. package/src/components/markdownEditor/plugins/ReadOnlyPlugin.tsx +15 -15
  93. package/src/components/markdownEditor/plugins/ToolbarPlugin.tsx +401 -401
  94. package/src/components/markdownEditor/plugins/customLink/CustomLinkNode.tsx +224 -224
  95. package/src/components/markdownEditor/plugins/customLink/CustomLinkNodePlugin.tsx +32 -32
  96. package/src/components/markdownEditor/plugins/customLink/CustomLinkNodeTransformer.tsx +102 -102
  97. package/src/components/markdownEditor/plugins/customLink/FloatingLinkEditor.tsx +243 -243
  98. package/src/components/markdownEditor/plugins/customLink/FloatingLinkEditor.types.ts +11 -11
  99. package/src/components/markdownEditor/plugins/emoji/EmojiNode.tsx +95 -95
  100. package/src/components/markdownEditor/plugins/emoji/EmojiNodeTransform.ts +41 -41
  101. package/src/components/markdownEditor/plugins/emoji/EmojiPickerPlugin.tsx +152 -152
  102. package/src/components/markdownEditor/plugins/emoji/EmojisPlugin.tsx +65 -65
  103. package/src/components/markdownEditor/plugins/index.ts +6 -6
  104. package/src/components/markdownEditor/theme.ts +65 -65
  105. package/src/components/notes/AddNote.tsx +90 -90
  106. package/src/components/notes/Conversation.tsx +82 -82
  107. package/src/components/notes/Conversations.tsx +58 -58
  108. package/src/components/notes/NewConversation.tsx +78 -78
  109. package/src/components/notes/Note.tsx +44 -44
  110. package/src/components/notes/Notes.tsx +69 -69
  111. package/src/components/notes/index.ts +5 -5
  112. package/src/components/reporting/ChartReport.tsx +98 -98
  113. package/src/components/reporting/ReportFilter.tsx +54 -54
  114. package/src/components/reporting/ReportFilterField.tsx +160 -160
  115. package/src/components/reporting/ReportOutput.tsx +79 -79
  116. package/src/components/reporting/ReportWithFilter.tsx +70 -70
  117. package/src/components/reporting/TableReport.tsx +57 -57
  118. package/src/components/reporting/TreeReport.tsx +111 -111
  119. package/src/components/reporting/index.ts +4 -4
  120. package/src/components/wrapper/AppList.tsx +20 -20
  121. package/src/components/wrapper/ChurchList.tsx +22 -22
  122. package/src/components/wrapper/Drawers.tsx +60 -60
  123. package/src/components/wrapper/NavItem.tsx +41 -41
  124. package/src/components/wrapper/NewPrivateMessage.tsx +103 -103
  125. package/src/components/wrapper/NotificationMenu.tsx +96 -96
  126. package/src/components/wrapper/Notifications.tsx +53 -53
  127. package/src/components/wrapper/PrivateMessageDetails.tsx +24 -24
  128. package/src/components/wrapper/PrivateMessages.tsx +92 -92
  129. package/src/components/wrapper/SiteWrapper.tsx +99 -97
  130. package/src/components/wrapper/TabPanel.tsx +30 -30
  131. package/src/components/wrapper/UserMenu.tsx +106 -106
  132. package/src/components/wrapper/index.tsx +5 -5
  133. package/src/donationComponents/DonationPage.tsx +136 -136
  134. package/src/donationComponents/components/BankForm.tsx +159 -159
  135. package/src/donationComponents/components/CardForm.tsx +104 -104
  136. package/src/donationComponents/components/DonationForm.tsx +235 -235
  137. package/src/donationComponents/components/FundDonation.tsx +49 -49
  138. package/src/donationComponents/components/FundDonations.tsx +39 -39
  139. package/src/donationComponents/components/NonAuthDonation.tsx +31 -31
  140. package/src/donationComponents/components/NonAuthDonationInner.tsx +259 -259
  141. package/src/donationComponents/components/PaymentMethods.tsx +135 -135
  142. package/src/donationComponents/components/RecurringDonations.tsx +121 -121
  143. package/src/donationComponents/components/RecurringDonationsEdit.tsx +93 -93
  144. package/src/donationComponents/components/index.tsx +9 -9
  145. package/src/donationComponents/index.ts +3 -3
  146. package/src/donationComponents/modals/DonationPreviewModal.tsx +66 -66
  147. package/src/helpers/AnalyticsHelper.ts +33 -33
  148. package/src/helpers/ApiHelper.ts +125 -125
  149. package/src/helpers/AppearanceHelper.ts +69 -69
  150. package/src/helpers/ArrayHelper.ts +81 -81
  151. package/src/helpers/CommonEnvironmentHelper.ts +80 -80
  152. package/src/helpers/CurrencyHelper.ts +10 -10
  153. package/src/helpers/DateHelper.ts +109 -109
  154. package/src/helpers/DonationHelper.ts +26 -26
  155. package/src/helpers/ErrorHelper.ts +36 -36
  156. package/src/helpers/EventHelper.ts +52 -52
  157. package/src/helpers/FileHelper.ts +31 -31
  158. package/src/helpers/PersonHelper.ts +60 -60
  159. package/src/helpers/SocketHelper.ts +78 -78
  160. package/src/helpers/Themes.ts +14 -14
  161. package/src/helpers/UniqueIdHelper.ts +36 -36
  162. package/src/helpers/UserHelper.ts +59 -59
  163. package/src/helpers/createEmotionCache.ts +17 -17
  164. package/src/helpers/index.ts +18 -18
  165. package/src/hooks/index.ts +1 -1
  166. package/src/hooks/useMountedState.ts +16 -16
  167. package/src/index.ts +6 -6
  168. package/src/interfaces/Access.ts +24 -24
  169. package/src/interfaces/Attendance.ts +8 -8
  170. package/src/interfaces/Content.ts +10 -10
  171. package/src/interfaces/Doing.ts +24 -24
  172. package/src/interfaces/Donation.ts +45 -45
  173. package/src/interfaces/Error.ts +17 -17
  174. package/src/interfaces/Membership.ts +51 -51
  175. package/src/interfaces/Messaging.ts +11 -11
  176. package/src/interfaces/Permissions.ts +68 -68
  177. package/src/interfaces/Reporting.ts +7 -7
  178. package/src/interfaces/UserContextInterface.ts +13 -13
  179. package/src/interfaces/index.ts +13 -13
  180. package/src/pageComponents/LoginPage.tsx +244 -244
  181. package/src/pageComponents/LogoutPage.tsx +28 -28
  182. package/src/pageComponents/components/Forgot.tsx +79 -79
  183. package/src/pageComponents/components/Login.tsx +54 -54
  184. package/src/pageComponents/components/LoginSetPassword.tsx +63 -63
  185. package/src/pageComponents/components/Register.tsx +107 -107
  186. package/src/pageComponents/components/SelectChurchModal.tsx +41 -41
  187. package/src/pageComponents/components/SelectChurchRegister.tsx +88 -88
  188. package/src/pageComponents/components/SelectChurchSearch.tsx +69 -69
  189. package/src/pageComponents/components/SelectableChurch.tsx +38 -38
  190. package/src/pageComponents/index.ts +3 -3
  191. package/tsconfig.json +34 -34
  192. package/tslint.json +14 -14
@@ -1,136 +1,136 @@
1
- import React from "react";
2
- import { loadStripe, Stripe } from "@stripe/stripe-js";
3
- import { DonationForm, RecurringDonations, PaymentMethods } from "./components";
4
- import { DisplayBox, Loading } from "../components";
5
- import { ApiHelper, DateHelper, UniqueIdHelper, CurrencyHelper } from "../helpers";
6
- import { DonationInterface, PersonInterface, StripePaymentMethod, ChurchInterface } from "../interfaces";
7
- import { Link } from "react-router-dom"
8
- import { Table, TableBody, TableRow, TableCell, TableHead, Alert } from "@mui/material"
9
- import { useMountedState } from "../hooks/useMountedState";
10
-
11
- interface Props { personId: string, appName?: string, church?: ChurchInterface, churchLogo?: string }
12
-
13
- export const DonationPage: React.FC<Props> = (props) => {
14
- const [donations, setDonations] = React.useState<DonationInterface[]>(null);
15
- const [stripePromise, setStripe] = React.useState<Promise<Stripe>>(null);
16
- const [paymentMethods, setPaymentMethods] = React.useState<StripePaymentMethod[]>(null);
17
- const [customerId, setCustomerId] = React.useState(null);
18
- const [person, setPerson] = React.useState<PersonInterface>(null);
19
- const [message, setMessage] = React.useState<string>(null);
20
- const [appName, setAppName] = React.useState<string>("");
21
- const isMounted = useMountedState();
22
-
23
- const loadData = () => {
24
- if (props?.appName) setAppName(props.appName);
25
- if (!UniqueIdHelper.isMissing(props.personId)) {
26
- ApiHelper.get("/donations?personId=" + props.personId, "GivingApi").then(data => {
27
- if(isMounted()) {
28
- setDonations(data);
29
- }});
30
- ApiHelper.get("/gateways", "GivingApi").then(data => {
31
- if (data.length && data[0]?.publicKey) {
32
- if(isMounted()) {
33
- setStripe(loadStripe(data[0].publicKey));
34
- }
35
- ApiHelper.get("/paymentmethods/personid/" + props.personId, "GivingApi").then(results => {
36
- if(!isMounted()) {
37
- return;
38
- }
39
- if (!results.length) setPaymentMethods([]);
40
- else {
41
- let cards = results[0].cards.data.map((card: any) => new StripePaymentMethod(card));
42
- let banks = results[0].banks.data.map((bank: any) => new StripePaymentMethod(bank));
43
- let methods = cards.concat(banks);
44
- setCustomerId(results[0].customer.id);
45
- setPaymentMethods(methods);
46
- }
47
- });
48
- ApiHelper.get("/people/" + props.personId, "MembershipApi").then(data => {
49
- if(isMounted()) {
50
- setPerson(data);
51
- }
52
- });
53
- }
54
- else setPaymentMethods([]);
55
- });
56
- }
57
- }
58
-
59
- const handleDataUpdate = (message?: string) => {
60
- setMessage(message)
61
- setPaymentMethods(null);
62
- loadData();
63
- }
64
-
65
- const getRows = () => {
66
- let rows: JSX.Element[] = [];
67
-
68
- if (donations.length === 0) {
69
- rows.push(<TableRow key="0"><TableCell>Donations will appear once a donation has been entered.</TableCell></TableRow>);
70
- return rows;
71
- }
72
-
73
- for (let i = 0; i < donations.length; i++) {
74
- let d = donations[i];
75
- rows.push(
76
- <TableRow key={i}>
77
- {appName !== "B1App" && <TableCell><Link to={"/donations/" + d.batchId}>{d.batchId}</Link></TableCell>}
78
- <TableCell>{DateHelper.prettyDate(new Date(d.donationDate))}</TableCell>
79
- <TableCell>{d.method} - {d.methodDetails}</TableCell>
80
- <TableCell>{d.fund.name}</TableCell>
81
- <TableCell>{CurrencyHelper.formatCurrency(d.fund.amount)}</TableCell>
82
- </TableRow>
83
- );
84
- }
85
- return rows;
86
- }
87
-
88
- const getTableHeader = () => {
89
- const rows: JSX.Element[] = []
90
-
91
- if (donations.length > 0) {
92
- rows.push(
93
- <TableRow key="header" sx={{textAlign: "left"}}>
94
- {appName !== "B1App" && <th>Batch</th>}
95
- <th>Date</th>
96
- <th>Method</th>
97
- <th>Fund</th>
98
- <th>Amount</th>
99
- </TableRow>
100
- );
101
- }
102
-
103
- return rows;
104
- }
105
-
106
- React.useEffect(loadData, [isMounted]); //eslint-disable-line
107
-
108
- const getTable = () => {
109
- if (!donations) return <Loading />;
110
- else return (<Table>
111
- <TableHead>{getTableHeader()}</TableHead>
112
- <TableBody>{getRows()}</TableBody>
113
- </Table>);
114
- }
115
-
116
- const getPaymentMethodComponents = () => {
117
- if (!paymentMethods) return <Loading />;
118
- else return (
119
- <>
120
- <DonationForm person={person} customerId={customerId} paymentMethods={paymentMethods} stripePromise={stripePromise} donationSuccess={handleDataUpdate} church={props?.church} churchLogo={props?.churchLogo} />
121
- <DisplayBox headerIcon="payments" headerText="Donations">
122
- {getTable()}
123
- </DisplayBox>
124
- <RecurringDonations customerId={customerId} paymentMethods={paymentMethods} appName={appName} dataUpdate={handleDataUpdate} />
125
- <PaymentMethods person={person} customerId={customerId} paymentMethods={paymentMethods} appName={appName} stripePromise={stripePromise} dataUpdate={handleDataUpdate} />
126
- </>
127
- );
128
- }
129
-
130
- return (
131
- <>
132
- {paymentMethods && message && <Alert severity="success">{message}</Alert>}
133
- {getPaymentMethodComponents()}
134
- </>
135
- );
136
- }
1
+ import React from "react";
2
+ import { loadStripe, Stripe } from "@stripe/stripe-js";
3
+ import { DonationForm, RecurringDonations, PaymentMethods } from "./components";
4
+ import { DisplayBox, Loading } from "../components";
5
+ import { ApiHelper, DateHelper, UniqueIdHelper, CurrencyHelper } from "../helpers";
6
+ import { DonationInterface, PersonInterface, StripePaymentMethod, ChurchInterface } from "../interfaces";
7
+ import { Link } from "react-router-dom"
8
+ import { Table, TableBody, TableRow, TableCell, TableHead, Alert } from "@mui/material"
9
+ import { useMountedState } from "../hooks/useMountedState";
10
+
11
+ interface Props { personId: string, appName?: string, church?: ChurchInterface, churchLogo?: string }
12
+
13
+ export const DonationPage: React.FC<Props> = (props) => {
14
+ const [donations, setDonations] = React.useState<DonationInterface[]>(null);
15
+ const [stripePromise, setStripe] = React.useState<Promise<Stripe>>(null);
16
+ const [paymentMethods, setPaymentMethods] = React.useState<StripePaymentMethod[]>(null);
17
+ const [customerId, setCustomerId] = React.useState(null);
18
+ const [person, setPerson] = React.useState<PersonInterface>(null);
19
+ const [message, setMessage] = React.useState<string>(null);
20
+ const [appName, setAppName] = React.useState<string>("");
21
+ const isMounted = useMountedState();
22
+
23
+ const loadData = () => {
24
+ if (props?.appName) setAppName(props.appName);
25
+ if (!UniqueIdHelper.isMissing(props.personId)) {
26
+ ApiHelper.get("/donations?personId=" + props.personId, "GivingApi").then(data => {
27
+ if(isMounted()) {
28
+ setDonations(data);
29
+ }});
30
+ ApiHelper.get("/gateways", "GivingApi").then(data => {
31
+ if (data.length && data[0]?.publicKey) {
32
+ if(isMounted()) {
33
+ setStripe(loadStripe(data[0].publicKey));
34
+ }
35
+ ApiHelper.get("/paymentmethods/personid/" + props.personId, "GivingApi").then(results => {
36
+ if(!isMounted()) {
37
+ return;
38
+ }
39
+ if (!results.length) setPaymentMethods([]);
40
+ else {
41
+ let cards = results[0].cards.data.map((card: any) => new StripePaymentMethod(card));
42
+ let banks = results[0].banks.data.map((bank: any) => new StripePaymentMethod(bank));
43
+ let methods = cards.concat(banks);
44
+ setCustomerId(results[0].customer.id);
45
+ setPaymentMethods(methods);
46
+ }
47
+ });
48
+ ApiHelper.get("/people/" + props.personId, "MembershipApi").then(data => {
49
+ if(isMounted()) {
50
+ setPerson(data);
51
+ }
52
+ });
53
+ }
54
+ else setPaymentMethods([]);
55
+ });
56
+ }
57
+ }
58
+
59
+ const handleDataUpdate = (message?: string) => {
60
+ setMessage(message)
61
+ setPaymentMethods(null);
62
+ loadData();
63
+ }
64
+
65
+ const getRows = () => {
66
+ let rows: JSX.Element[] = [];
67
+
68
+ if (donations.length === 0) {
69
+ rows.push(<TableRow key="0"><TableCell>Donations will appear once a donation has been entered.</TableCell></TableRow>);
70
+ return rows;
71
+ }
72
+
73
+ for (let i = 0; i < donations.length; i++) {
74
+ let d = donations[i];
75
+ rows.push(
76
+ <TableRow key={i}>
77
+ {appName !== "B1App" && <TableCell><Link to={"/donations/" + d.batchId}>{d.batchId}</Link></TableCell>}
78
+ <TableCell>{DateHelper.prettyDate(new Date(d.donationDate))}</TableCell>
79
+ <TableCell>{d.method} - {d.methodDetails}</TableCell>
80
+ <TableCell>{d.fund.name}</TableCell>
81
+ <TableCell>{CurrencyHelper.formatCurrency(d.fund.amount)}</TableCell>
82
+ </TableRow>
83
+ );
84
+ }
85
+ return rows;
86
+ }
87
+
88
+ const getTableHeader = () => {
89
+ const rows: JSX.Element[] = []
90
+
91
+ if (donations.length > 0) {
92
+ rows.push(
93
+ <TableRow key="header" sx={{textAlign: "left"}}>
94
+ {appName !== "B1App" && <th>Batch</th>}
95
+ <th>Date</th>
96
+ <th>Method</th>
97
+ <th>Fund</th>
98
+ <th>Amount</th>
99
+ </TableRow>
100
+ );
101
+ }
102
+
103
+ return rows;
104
+ }
105
+
106
+ React.useEffect(loadData, [isMounted]); //eslint-disable-line
107
+
108
+ const getTable = () => {
109
+ if (!donations) return <Loading />;
110
+ else return (<Table>
111
+ <TableHead>{getTableHeader()}</TableHead>
112
+ <TableBody>{getRows()}</TableBody>
113
+ </Table>);
114
+ }
115
+
116
+ const getPaymentMethodComponents = () => {
117
+ if (!paymentMethods) return <Loading />;
118
+ else return (
119
+ <>
120
+ <DonationForm person={person} customerId={customerId} paymentMethods={paymentMethods} stripePromise={stripePromise} donationSuccess={handleDataUpdate} church={props?.church} churchLogo={props?.churchLogo} />
121
+ <DisplayBox headerIcon="payments" headerText="Donations">
122
+ {getTable()}
123
+ </DisplayBox>
124
+ <RecurringDonations customerId={customerId} paymentMethods={paymentMethods} appName={appName} dataUpdate={handleDataUpdate} />
125
+ <PaymentMethods person={person} customerId={customerId} paymentMethods={paymentMethods} appName={appName} stripePromise={stripePromise} dataUpdate={handleDataUpdate} />
126
+ </>
127
+ );
128
+ }
129
+
130
+ return (
131
+ <>
132
+ {paymentMethods && message && <Alert severity="success">{message}</Alert>}
133
+ {getPaymentMethodComponents()}
134
+ </>
135
+ );
136
+ }
@@ -1,159 +1,159 @@
1
- import React from "react";
2
- import { FormControl, Grid, InputLabel, MenuItem, Select, SelectChangeEvent, TextField } from "@mui/material"
3
- import { useStripe } from "@stripe/react-stripe-js";
4
- import { InputBox, ErrorMessages } from "../../components";
5
- import { ApiHelper } from "../../helpers";
6
- import { PersonInterface, StripePaymentMethod, PaymentMethodInterface, StripeBankAccountInterface, StripeBankAccountUpdateInterface, StripeBankAccountVerifyInterface } from "../../interfaces";
7
-
8
- interface Props { bank: StripePaymentMethod, showVerifyForm: boolean, customerId: string, person: PersonInterface, setMode: any, deletePayment: any, updateList: (message?: string) => void }
9
-
10
- export const BankForm: React.FC<Props> = (props) => {
11
- const stripe = useStripe();
12
- const [bankAccount, setBankAccount] = React.useState<StripeBankAccountInterface>({ account_holder_name: props.bank.account_holder_name, account_holder_type: props.bank.account_holder_type, country: "US", currency: "usd" } as StripeBankAccountInterface);
13
- const [paymentMethod] = React.useState<PaymentMethodInterface>({ customerId: props.customerId, personId: props.person.id, email: props.person.contactInfo.email, name: props.person.name.display });
14
- const [updateBankData] = React.useState<StripeBankAccountUpdateInterface>({ paymentMethodId: props.bank.id, customerId: props.customerId, personId: props.person.id, bankData: { account_holder_name: props.bank.account_holder_name, account_holder_type: props.bank.account_holder_type } } as StripeBankAccountUpdateInterface);
15
- const [verifyBankData, setVerifyBankData] = React.useState<StripeBankAccountVerifyInterface>({ paymentMethodId: props.bank.id, customerId: props.customerId, amountData: { amounts: [] } });
16
- const [showSave, setShowSave] = React.useState<boolean>(true);
17
- const [errorMessage, setErrorMessage] = React.useState<string>(null);
18
- const saveDisabled = () => { }
19
- const handleCancel = () => { props.setMode("display"); }
20
- const handleDelete = () => { props.deletePayment(); }
21
- const handleSave = () => {
22
- setShowSave(false);
23
- if (props.showVerifyForm) verifyBank();
24
- else props.bank.id ? updateBank() : createBank();
25
- }
26
-
27
- const createBank = async () => {
28
- if (!bankAccount.routing_number || !bankAccount.account_number) setErrorMessage("Routing and account number are required.")
29
- else {
30
- await stripe.createToken("bank_account", bankAccount).then(response => {
31
- if (response?.error?.message) setErrorMessage(response.error.message);
32
- else {
33
- const pm = { ...paymentMethod };
34
- pm.id = response.token.id;
35
- ApiHelper.post("/paymentmethods/addbankaccount", pm, "GivingApi").then(result => {
36
- if (result?.raw?.message) setErrorMessage(result.raw.message);
37
- else {
38
- props.updateList("Bank account added. Verify your bank account to make a donation.");
39
- props.setMode("display");
40
- }
41
- });
42
- }
43
- });
44
- }
45
- setShowSave(true);
46
- }
47
-
48
- const updateBank = () => {
49
- if (bankAccount.account_holder_name === "") setErrorMessage("Account holder name is required.");
50
- else {
51
- let bank = { ...updateBankData };
52
- bank.bankData.account_holder_name = bankAccount.account_holder_name;
53
- bank.bankData.account_holder_type = bankAccount.account_holder_type;
54
- ApiHelper.post("/paymentmethods/updatebank", bank, "GivingApi").then(response => {
55
- if (response?.raw?.message) setErrorMessage(response.raw.message);
56
- else {
57
- props.updateList("Bank account updated.");
58
- props.setMode("display");
59
- }
60
- });
61
- }
62
- setShowSave(true);
63
- }
64
-
65
- const verifyBank = () => {
66
- const amounts = verifyBankData?.amountData?.amounts;
67
- if (amounts && amounts.length === 2 && amounts[0] !== "" && amounts[1] !== "") {
68
- ApiHelper.post("/paymentmethods/verifyBank", verifyBankData, "GivingApi").then(response => {
69
- if (response?.raw?.message) setErrorMessage(response.raw.message);
70
- else {
71
- props.updateList("Bank account verified.");
72
- props.setMode("display");
73
- }
74
- });
75
- }
76
- else setErrorMessage("Both deposit amounts are required.");
77
- setShowSave(true);
78
- }
79
-
80
- const getHeaderText = () => props.bank.id
81
- ? `${props.bank.name.toUpperCase()} ****${props.bank.last4}`
82
- : "Add New Bank Account"
83
-
84
- const handleChange = (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement> | SelectChangeEvent<string>) => {
85
- const bankData = { ...bankAccount };
86
- const inputData = { [e.target.name]: e.target.value };
87
- setBankAccount({ ...bankData, ...inputData });
88
- setShowSave(true);
89
- }
90
-
91
- const handleKeyPress = (e: React.KeyboardEvent<any>) => {
92
- const pattern = /^\d+$/;
93
- if (!pattern.test(e.key)) e.preventDefault();
94
- }
95
-
96
- const handleVerify = (e: React.ChangeEvent<HTMLInputElement>) => {
97
- const verifyData = { ...verifyBankData };
98
- if (e.currentTarget.name === "amount1") verifyData.amountData.amounts[0] = e.currentTarget.value;
99
- if (e.currentTarget.name === "amount2") verifyData.amountData.amounts[1] = e.currentTarget.value;
100
- setVerifyBankData(verifyData);
101
- }
102
-
103
- const getForm = () => {
104
- if (props.showVerifyForm) {
105
- return (<>
106
- <p>Enter the two deposits you received in your account to finish verifying your bank account.</p>
107
- <Grid container columnSpacing={2}>
108
- <Grid item md={6} xs={12}>
109
- <TextField fullWidth aria-label="amount1" label="First Deposit" name="amount1" placeholder="00" inputProps={{ maxLength: 2 }} onChange={handleVerify} onKeyPress={handleKeyPress} />
110
- </Grid>
111
- <Grid item md={6} xs={12}>
112
- <TextField fullWidth aria-label="amount2" label="Second Deposit" name="amount2" placeholder="00" inputProps={{ maxLength: 2 }} onChange={handleVerify} onKeyPress={handleKeyPress} />
113
- </Grid>
114
- </Grid>
115
- </>);
116
-
117
- } else {
118
- let accountDetails = <></>
119
- if (!props.bank.id) accountDetails = (
120
- <Grid container spacing={3}>
121
- <Grid item md={6} xs={12} style={{ marginBottom: "20px" }}>
122
- <TextField fullWidth label="Routing Number" type="number" name="routing_number" aria-label="routing-number" placeholder="Routing Number" className="form-control" onChange={handleChange} />
123
- </Grid>
124
- <Grid item md={6} xs={12} style={{ marginBottom: "20px" }}>
125
- <TextField fullWidth label="Account Number" type="number" name="account_number" aria-label="account-number" placeholder="Account Number" className="form-control" onChange={handleChange} />
126
- </Grid>
127
- </Grid>
128
- );
129
- return (<>
130
- <Grid container spacing={3}>
131
- <Grid item md={6} xs={12} style={{ marginBottom: "20px" }}>
132
- <TextField fullWidth label="Account Holder Name" name="account_holder_name" required aria-label="account-holder-name" placeholder="Account Holder Name" value={bankAccount.account_holder_name} className="form-control" onChange={handleChange} />
133
- </Grid>
134
- <Grid item md={6} xs={12} style={{ marginBottom: "20px" }}>
135
- <FormControl fullWidth>
136
- <InputLabel>Account Holder Type</InputLabel>
137
- <Select label="Account Holder Type" name="account_holder_type" aria-label="account-holder-type" value={bankAccount.account_holder_type} onChange={handleChange}>
138
- <MenuItem value="individual">Individual</MenuItem>
139
- <MenuItem value="company">Company</MenuItem>
140
- </Select>
141
- </FormControl>
142
- </Grid>
143
- </Grid>
144
- {accountDetails}
145
- </>);
146
- }
147
- }
148
-
149
- return (
150
- <InputBox headerIcon="volunteer_activism" headerText={getHeaderText()} ariaLabelSave="save-button" ariaLabelDelete="delete-button" cancelFunction={handleCancel} saveFunction={showSave ? handleSave : saveDisabled} deleteFunction={props.bank.id && !props.showVerifyForm ? handleDelete : undefined}>
151
- {errorMessage && <ErrorMessages errors={[errorMessage]}></ErrorMessages>}
152
- <div>
153
- {!props.bank.id && <p>Bank accounts will need to be verified before making any donations. Your account will receive two small deposits in approximately 1-3 business days. You will need to enter those deposit amounts to finish verifying your account by selecting the verify account link next to your bank account under the payment methods section.</p>}
154
- {getForm()}
155
- </div>
156
- </InputBox>
157
- );
158
-
159
- }
1
+ import React from "react";
2
+ import { FormControl, Grid, InputLabel, MenuItem, Select, SelectChangeEvent, TextField } from "@mui/material"
3
+ import { useStripe } from "@stripe/react-stripe-js";
4
+ import { InputBox, ErrorMessages } from "../../components";
5
+ import { ApiHelper } from "../../helpers";
6
+ import { PersonInterface, StripePaymentMethod, PaymentMethodInterface, StripeBankAccountInterface, StripeBankAccountUpdateInterface, StripeBankAccountVerifyInterface } from "../../interfaces";
7
+
8
+ interface Props { bank: StripePaymentMethod, showVerifyForm: boolean, customerId: string, person: PersonInterface, setMode: any, deletePayment: any, updateList: (message?: string) => void }
9
+
10
+ export const BankForm: React.FC<Props> = (props) => {
11
+ const stripe = useStripe();
12
+ const [bankAccount, setBankAccount] = React.useState<StripeBankAccountInterface>({ account_holder_name: props.bank.account_holder_name, account_holder_type: props.bank.account_holder_type, country: "US", currency: "usd" } as StripeBankAccountInterface);
13
+ const [paymentMethod] = React.useState<PaymentMethodInterface>({ customerId: props.customerId, personId: props.person.id, email: props.person.contactInfo.email, name: props.person.name.display });
14
+ const [updateBankData] = React.useState<StripeBankAccountUpdateInterface>({ paymentMethodId: props.bank.id, customerId: props.customerId, personId: props.person.id, bankData: { account_holder_name: props.bank.account_holder_name, account_holder_type: props.bank.account_holder_type } } as StripeBankAccountUpdateInterface);
15
+ const [verifyBankData, setVerifyBankData] = React.useState<StripeBankAccountVerifyInterface>({ paymentMethodId: props.bank.id, customerId: props.customerId, amountData: { amounts: [] } });
16
+ const [showSave, setShowSave] = React.useState<boolean>(true);
17
+ const [errorMessage, setErrorMessage] = React.useState<string>(null);
18
+ const saveDisabled = () => { }
19
+ const handleCancel = () => { props.setMode("display"); }
20
+ const handleDelete = () => { props.deletePayment(); }
21
+ const handleSave = () => {
22
+ setShowSave(false);
23
+ if (props.showVerifyForm) verifyBank();
24
+ else props.bank.id ? updateBank() : createBank();
25
+ }
26
+
27
+ const createBank = async () => {
28
+ if (!bankAccount.routing_number || !bankAccount.account_number) setErrorMessage("Routing and account number are required.")
29
+ else {
30
+ await stripe.createToken("bank_account", bankAccount).then(response => {
31
+ if (response?.error?.message) setErrorMessage(response.error.message);
32
+ else {
33
+ const pm = { ...paymentMethod };
34
+ pm.id = response.token.id;
35
+ ApiHelper.post("/paymentmethods/addbankaccount", pm, "GivingApi").then(result => {
36
+ if (result?.raw?.message) setErrorMessage(result.raw.message);
37
+ else {
38
+ props.updateList("Bank account added. Verify your bank account to make a donation.");
39
+ props.setMode("display");
40
+ }
41
+ });
42
+ }
43
+ });
44
+ }
45
+ setShowSave(true);
46
+ }
47
+
48
+ const updateBank = () => {
49
+ if (bankAccount.account_holder_name === "") setErrorMessage("Account holder name is required.");
50
+ else {
51
+ let bank = { ...updateBankData };
52
+ bank.bankData.account_holder_name = bankAccount.account_holder_name;
53
+ bank.bankData.account_holder_type = bankAccount.account_holder_type;
54
+ ApiHelper.post("/paymentmethods/updatebank", bank, "GivingApi").then(response => {
55
+ if (response?.raw?.message) setErrorMessage(response.raw.message);
56
+ else {
57
+ props.updateList("Bank account updated.");
58
+ props.setMode("display");
59
+ }
60
+ });
61
+ }
62
+ setShowSave(true);
63
+ }
64
+
65
+ const verifyBank = () => {
66
+ const amounts = verifyBankData?.amountData?.amounts;
67
+ if (amounts && amounts.length === 2 && amounts[0] !== "" && amounts[1] !== "") {
68
+ ApiHelper.post("/paymentmethods/verifyBank", verifyBankData, "GivingApi").then(response => {
69
+ if (response?.raw?.message) setErrorMessage(response.raw.message);
70
+ else {
71
+ props.updateList("Bank account verified.");
72
+ props.setMode("display");
73
+ }
74
+ });
75
+ }
76
+ else setErrorMessage("Both deposit amounts are required.");
77
+ setShowSave(true);
78
+ }
79
+
80
+ const getHeaderText = () => props.bank.id
81
+ ? `${props.bank.name.toUpperCase()} ****${props.bank.last4}`
82
+ : "Add New Bank Account"
83
+
84
+ const handleChange = (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement> | SelectChangeEvent<string>) => {
85
+ const bankData = { ...bankAccount };
86
+ const inputData = { [e.target.name]: e.target.value };
87
+ setBankAccount({ ...bankData, ...inputData });
88
+ setShowSave(true);
89
+ }
90
+
91
+ const handleKeyPress = (e: React.KeyboardEvent<any>) => {
92
+ const pattern = /^\d+$/;
93
+ if (!pattern.test(e.key)) e.preventDefault();
94
+ }
95
+
96
+ const handleVerify = (e: React.ChangeEvent<HTMLInputElement>) => {
97
+ const verifyData = { ...verifyBankData };
98
+ if (e.currentTarget.name === "amount1") verifyData.amountData.amounts[0] = e.currentTarget.value;
99
+ if (e.currentTarget.name === "amount2") verifyData.amountData.amounts[1] = e.currentTarget.value;
100
+ setVerifyBankData(verifyData);
101
+ }
102
+
103
+ const getForm = () => {
104
+ if (props.showVerifyForm) {
105
+ return (<>
106
+ <p>Enter the two deposits you received in your account to finish verifying your bank account.</p>
107
+ <Grid container columnSpacing={2}>
108
+ <Grid item md={6} xs={12}>
109
+ <TextField fullWidth aria-label="amount1" label="First Deposit" name="amount1" placeholder="00" inputProps={{ maxLength: 2 }} onChange={handleVerify} onKeyPress={handleKeyPress} />
110
+ </Grid>
111
+ <Grid item md={6} xs={12}>
112
+ <TextField fullWidth aria-label="amount2" label="Second Deposit" name="amount2" placeholder="00" inputProps={{ maxLength: 2 }} onChange={handleVerify} onKeyPress={handleKeyPress} />
113
+ </Grid>
114
+ </Grid>
115
+ </>);
116
+
117
+ } else {
118
+ let accountDetails = <></>
119
+ if (!props.bank.id) accountDetails = (
120
+ <Grid container spacing={3}>
121
+ <Grid item md={6} xs={12} style={{ marginBottom: "20px" }}>
122
+ <TextField fullWidth label="Routing Number" type="number" name="routing_number" aria-label="routing-number" placeholder="Routing Number" className="form-control" onChange={handleChange} />
123
+ </Grid>
124
+ <Grid item md={6} xs={12} style={{ marginBottom: "20px" }}>
125
+ <TextField fullWidth label="Account Number" type="number" name="account_number" aria-label="account-number" placeholder="Account Number" className="form-control" onChange={handleChange} />
126
+ </Grid>
127
+ </Grid>
128
+ );
129
+ return (<>
130
+ <Grid container spacing={3}>
131
+ <Grid item md={6} xs={12} style={{ marginBottom: "20px" }}>
132
+ <TextField fullWidth label="Account Holder Name" name="account_holder_name" required aria-label="account-holder-name" placeholder="Account Holder Name" value={bankAccount.account_holder_name} className="form-control" onChange={handleChange} />
133
+ </Grid>
134
+ <Grid item md={6} xs={12} style={{ marginBottom: "20px" }}>
135
+ <FormControl fullWidth>
136
+ <InputLabel>Account Holder Type</InputLabel>
137
+ <Select label="Account Holder Type" name="account_holder_type" aria-label="account-holder-type" value={bankAccount.account_holder_type} onChange={handleChange}>
138
+ <MenuItem value="individual">Individual</MenuItem>
139
+ <MenuItem value="company">Company</MenuItem>
140
+ </Select>
141
+ </FormControl>
142
+ </Grid>
143
+ </Grid>
144
+ {accountDetails}
145
+ </>);
146
+ }
147
+ }
148
+
149
+ return (
150
+ <InputBox headerIcon="volunteer_activism" headerText={getHeaderText()} ariaLabelSave="save-button" ariaLabelDelete="delete-button" cancelFunction={handleCancel} saveFunction={showSave ? handleSave : saveDisabled} deleteFunction={props.bank.id && !props.showVerifyForm ? handleDelete : undefined}>
151
+ {errorMessage && <ErrorMessages errors={[errorMessage]}></ErrorMessages>}
152
+ <div>
153
+ {!props.bank.id && <p>Bank accounts will need to be verified before making any donations. Your account will receive two small deposits in approximately 1-3 business days. You will need to enter those deposit amounts to finish verifying your account by selecting the verify account link next to your bank account under the payment methods section.</p>}
154
+ {getForm()}
155
+ </div>
156
+ </InputBox>
157
+ );
158
+
159
+ }