@churchapps/apphelper 0.1.3 → 0.1.4

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 (188) hide show
  1. package/.eslintignore +3 -3
  2. package/.eslintrc.json +22 -22
  3. package/LICENSE +21 -21
  4. package/README.md +22 -22
  5. package/dist/components/markdownEditor/editor.css +787 -787
  6. package/dist/components/markdownEditor/images/icons/arrow-clockwise.svg +3 -3
  7. package/dist/components/markdownEditor/images/icons/arrow-counterclockwise.svg +3 -3
  8. package/dist/components/markdownEditor/images/icons/chat-square-quote.svg +3 -3
  9. package/dist/components/markdownEditor/images/icons/chevron-down.svg +2 -2
  10. package/dist/components/markdownEditor/images/icons/code.svg +2 -2
  11. package/dist/components/markdownEditor/images/icons/journal-code.svg +4 -4
  12. package/dist/components/markdownEditor/images/icons/journal-text.svg +4 -4
  13. package/dist/components/markdownEditor/images/icons/justify.svg +2 -2
  14. package/dist/components/markdownEditor/images/icons/link.svg +3 -3
  15. package/dist/components/markdownEditor/images/icons/list-ol.svg +3 -3
  16. package/dist/components/markdownEditor/images/icons/list-ul.svg +2 -2
  17. package/dist/components/markdownEditor/images/icons/pencil-fill.svg +2 -2
  18. package/dist/components/markdownEditor/images/icons/text-center.svg +2 -2
  19. package/dist/components/markdownEditor/images/icons/text-left.svg +2 -2
  20. package/dist/components/markdownEditor/images/icons/text-paragraph.svg +2 -2
  21. package/dist/components/markdownEditor/images/icons/text-right.svg +2 -2
  22. package/dist/components/markdownEditor/images/icons/type-bold.svg +2 -2
  23. package/dist/components/markdownEditor/images/icons/type-h1.svg +2 -2
  24. package/dist/components/markdownEditor/images/icons/type-h2.svg +2 -2
  25. package/dist/components/markdownEditor/images/icons/type-h3.svg +2 -2
  26. package/dist/components/markdownEditor/images/icons/type-h4.svg +12 -12
  27. package/dist/components/markdownEditor/images/icons/type-italic.svg +2 -2
  28. package/dist/components/markdownEditor/images/icons/type-strikethrough.svg +2 -2
  29. package/dist/components/markdownEditor/images/icons/type-underline.svg +2 -2
  30. package/dist/pageComponents/components/SelectChurchRegister.js +3 -3
  31. package/dist/pageComponents/components/SelectChurchRegister.js.map +1 -1
  32. package/package.json +85 -85
  33. package/src/components/CreatePerson.tsx +80 -80
  34. package/src/components/DisplayBox.tsx +68 -68
  35. package/src/components/ErrorMessages.tsx +26 -26
  36. package/src/components/ExportLink.tsx +67 -67
  37. package/src/components/FloatingSupport.tsx +16 -16
  38. package/src/components/FormSubmissionEdit.tsx +120 -120
  39. package/src/components/HelpIcon.tsx +10 -10
  40. package/src/components/ImageEditor.tsx +126 -126
  41. package/src/components/InputBox.tsx +73 -73
  42. package/src/components/Loading.tsx +29 -29
  43. package/src/components/PersonAdd.tsx +75 -75
  44. package/src/components/QuestionEdit.tsx +63 -63
  45. package/src/components/SmallButton.tsx +39 -39
  46. package/src/components/SupportModal.tsx +26 -26
  47. package/src/components/TabPanel.tsx +34 -34
  48. package/src/components/gallery/GalleryModal.tsx +102 -102
  49. package/src/components/gallery/StockPhotos.tsx +74 -74
  50. package/src/components/gallery/index.ts +1 -1
  51. package/src/components/iconPicker/IconNamesList.ts +2240 -2240
  52. package/src/components/iconPicker/IconPicker.tsx +153 -153
  53. package/src/components/index.tsx +24 -24
  54. package/src/components/markdownEditor/Editor.tsx +132 -132
  55. package/src/components/markdownEditor/MarkdownEditor.tsx +16 -16
  56. package/src/components/markdownEditor/MarkdownModal.tsx +46 -46
  57. package/src/components/markdownEditor/MarkdownPreview.tsx +14 -14
  58. package/src/components/markdownEditor/editor.css +787 -787
  59. package/src/components/markdownEditor/images/icons/arrow-clockwise.svg +3 -3
  60. package/src/components/markdownEditor/images/icons/arrow-counterclockwise.svg +3 -3
  61. package/src/components/markdownEditor/images/icons/chat-square-quote.svg +3 -3
  62. package/src/components/markdownEditor/images/icons/chevron-down.svg +2 -2
  63. package/src/components/markdownEditor/images/icons/code.svg +2 -2
  64. package/src/components/markdownEditor/images/icons/journal-code.svg +4 -4
  65. package/src/components/markdownEditor/images/icons/journal-text.svg +4 -4
  66. package/src/components/markdownEditor/images/icons/justify.svg +2 -2
  67. package/src/components/markdownEditor/images/icons/link.svg +3 -3
  68. package/src/components/markdownEditor/images/icons/list-ol.svg +3 -3
  69. package/src/components/markdownEditor/images/icons/list-ul.svg +2 -2
  70. package/src/components/markdownEditor/images/icons/pencil-fill.svg +2 -2
  71. package/src/components/markdownEditor/images/icons/text-center.svg +2 -2
  72. package/src/components/markdownEditor/images/icons/text-left.svg +2 -2
  73. package/src/components/markdownEditor/images/icons/text-paragraph.svg +2 -2
  74. package/src/components/markdownEditor/images/icons/text-right.svg +2 -2
  75. package/src/components/markdownEditor/images/icons/type-bold.svg +2 -2
  76. package/src/components/markdownEditor/images/icons/type-h1.svg +2 -2
  77. package/src/components/markdownEditor/images/icons/type-h2.svg +2 -2
  78. package/src/components/markdownEditor/images/icons/type-h3.svg +2 -2
  79. package/src/components/markdownEditor/images/icons/type-h4.svg +12 -12
  80. package/src/components/markdownEditor/images/icons/type-italic.svg +2 -2
  81. package/src/components/markdownEditor/images/icons/type-strikethrough.svg +2 -2
  82. package/src/components/markdownEditor/images/icons/type-underline.svg +2 -2
  83. package/src/components/markdownEditor/index.ts +2 -2
  84. package/src/components/markdownEditor/plugins/AutoLinkPlugin.tsx +35 -35
  85. package/src/components/markdownEditor/plugins/ControlledEditorPlugin.tsx +24 -24
  86. package/src/components/markdownEditor/plugins/ListMaxIndentLevelPlugin.tsx +68 -68
  87. package/src/components/markdownEditor/plugins/MarkdownTransformers.ts +106 -106
  88. package/src/components/markdownEditor/plugins/ReadOnlyPlugin.tsx +15 -15
  89. package/src/components/markdownEditor/plugins/ToolbarPlugin.tsx +401 -401
  90. package/src/components/markdownEditor/plugins/customLink/CustomLinkNode.tsx +224 -224
  91. package/src/components/markdownEditor/plugins/customLink/CustomLinkNodePlugin.tsx +32 -32
  92. package/src/components/markdownEditor/plugins/customLink/CustomLinkNodeTransformer.tsx +102 -102
  93. package/src/components/markdownEditor/plugins/customLink/FloatingLinkEditor.tsx +243 -243
  94. package/src/components/markdownEditor/plugins/customLink/FloatingLinkEditor.types.ts +11 -11
  95. package/src/components/markdownEditor/plugins/emoji/EmojiNode.tsx +95 -95
  96. package/src/components/markdownEditor/plugins/emoji/EmojiNodeTransform.ts +41 -41
  97. package/src/components/markdownEditor/plugins/emoji/EmojiPickerPlugin.tsx +152 -152
  98. package/src/components/markdownEditor/plugins/emoji/EmojisPlugin.tsx +65 -65
  99. package/src/components/markdownEditor/plugins/index.ts +6 -6
  100. package/src/components/markdownEditor/theme.ts +65 -65
  101. package/src/components/notes/AddNote.tsx +90 -90
  102. package/src/components/notes/Conversation.tsx +82 -82
  103. package/src/components/notes/Conversations.tsx +58 -58
  104. package/src/components/notes/NewConversation.tsx +78 -78
  105. package/src/components/notes/Note.tsx +44 -44
  106. package/src/components/notes/Notes.tsx +68 -68
  107. package/src/components/notes/index.ts +5 -5
  108. package/src/components/reporting/ChartReport.tsx +98 -98
  109. package/src/components/reporting/ReportFilter.tsx +54 -54
  110. package/src/components/reporting/ReportFilterField.tsx +160 -160
  111. package/src/components/reporting/ReportOutput.tsx +79 -79
  112. package/src/components/reporting/ReportWithFilter.tsx +70 -70
  113. package/src/components/reporting/TableReport.tsx +57 -57
  114. package/src/components/reporting/TreeReport.tsx +111 -111
  115. package/src/components/reporting/index.ts +4 -4
  116. package/src/components/wrapper/AppList.tsx +20 -20
  117. package/src/components/wrapper/ChurchList.tsx +22 -22
  118. package/src/components/wrapper/Drawers.tsx +60 -60
  119. package/src/components/wrapper/NavItem.tsx +41 -41
  120. package/src/components/wrapper/NewPrivateMessage.tsx +103 -103
  121. package/src/components/wrapper/NotificationMenu.tsx +85 -85
  122. package/src/components/wrapper/Notifications.tsx +50 -50
  123. package/src/components/wrapper/PrivateMessageDetails.tsx +23 -23
  124. package/src/components/wrapper/PrivateMessages.tsx +87 -87
  125. package/src/components/wrapper/SiteWrapper.tsx +96 -96
  126. package/src/components/wrapper/TabPanel.tsx +30 -30
  127. package/src/components/wrapper/UserMenu.tsx +106 -106
  128. package/src/components/wrapper/index.tsx +5 -5
  129. package/src/donationComponents/DonationPage.tsx +136 -136
  130. package/src/donationComponents/components/BankForm.tsx +159 -159
  131. package/src/donationComponents/components/CardForm.tsx +104 -104
  132. package/src/donationComponents/components/DonationForm.tsx +235 -235
  133. package/src/donationComponents/components/FundDonation.tsx +49 -49
  134. package/src/donationComponents/components/FundDonations.tsx +39 -39
  135. package/src/donationComponents/components/NonAuthDonation.tsx +31 -31
  136. package/src/donationComponents/components/NonAuthDonationInner.tsx +259 -259
  137. package/src/donationComponents/components/PaymentMethods.tsx +135 -135
  138. package/src/donationComponents/components/RecurringDonations.tsx +121 -121
  139. package/src/donationComponents/components/RecurringDonationsEdit.tsx +93 -93
  140. package/src/donationComponents/components/index.tsx +9 -9
  141. package/src/donationComponents/index.ts +3 -3
  142. package/src/donationComponents/modals/DonationPreviewModal.tsx +66 -66
  143. package/src/helpers/AnalyticsHelper.ts +33 -33
  144. package/src/helpers/ApiHelper.ts +125 -125
  145. package/src/helpers/AppearanceHelper.ts +69 -69
  146. package/src/helpers/ArrayHelper.ts +81 -81
  147. package/src/helpers/CommonEnvironmentHelper.ts +80 -80
  148. package/src/helpers/CurrencyHelper.ts +10 -10
  149. package/src/helpers/DateHelper.ts +108 -108
  150. package/src/helpers/DonationHelper.ts +26 -26
  151. package/src/helpers/ErrorHelper.ts +36 -36
  152. package/src/helpers/EventHelper.ts +52 -52
  153. package/src/helpers/FileHelper.ts +31 -31
  154. package/src/helpers/PersonHelper.ts +60 -60
  155. package/src/helpers/SocketHelper.ts +76 -76
  156. package/src/helpers/Themes.ts +14 -14
  157. package/src/helpers/UniqueIdHelper.ts +36 -36
  158. package/src/helpers/UserHelper.ts +59 -59
  159. package/src/helpers/createEmotionCache.ts +17 -17
  160. package/src/helpers/index.ts +18 -18
  161. package/src/hooks/index.ts +1 -1
  162. package/src/hooks/useMountedState.ts +16 -16
  163. package/src/index.ts +6 -6
  164. package/src/interfaces/Access.ts +24 -24
  165. package/src/interfaces/Attendance.ts +8 -8
  166. package/src/interfaces/Content.ts +10 -10
  167. package/src/interfaces/Doing.ts +24 -24
  168. package/src/interfaces/Donation.ts +45 -45
  169. package/src/interfaces/Error.ts +17 -17
  170. package/src/interfaces/Membership.ts +51 -51
  171. package/src/interfaces/Messaging.ts +21 -21
  172. package/src/interfaces/Permissions.ts +68 -68
  173. package/src/interfaces/Reporting.ts +7 -7
  174. package/src/interfaces/UserContextInterface.ts +13 -13
  175. package/src/interfaces/index.ts +13 -13
  176. package/src/pageComponents/LoginPage.tsx +244 -244
  177. package/src/pageComponents/LogoutPage.tsx +28 -28
  178. package/src/pageComponents/components/Forgot.tsx +79 -79
  179. package/src/pageComponents/components/Login.tsx +54 -54
  180. package/src/pageComponents/components/LoginSetPassword.tsx +63 -63
  181. package/src/pageComponents/components/Register.tsx +107 -107
  182. package/src/pageComponents/components/SelectChurchModal.tsx +41 -41
  183. package/src/pageComponents/components/SelectChurchRegister.tsx +88 -88
  184. package/src/pageComponents/components/SelectChurchSearch.tsx +69 -69
  185. package/src/pageComponents/components/SelectableChurch.tsx +38 -38
  186. package/src/pageComponents/index.ts +3 -3
  187. package/tsconfig.json +34 -34
  188. 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
+ }