@churchapps/apphelper 0.5.0 → 0.5.2

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 (100) hide show
  1. package/dist/components/Loading.js +36 -36
  2. package/dist/components/notes/Notes.js +27 -27
  3. package/dist/helpers/AnalyticsHelper.d.ts.map +1 -1
  4. package/dist/helpers/AnalyticsHelper.js +21 -6
  5. package/dist/helpers/AnalyticsHelper.js.map +1 -1
  6. package/dist/helpers/UserHelper.d.ts.map +1 -1
  7. package/dist/helpers/UserHelper.js +4 -1
  8. package/dist/helpers/UserHelper.js.map +1 -1
  9. package/dist/public/css/cropper.css +309 -309
  10. package/dist/public/css/styles.css +111 -111
  11. package/dist/public/locales/de.json +270 -0
  12. package/dist/public/locales/en.json +277 -0
  13. package/dist/public/locales/es.json +272 -0
  14. package/dist/public/locales/fr.json +270 -0
  15. package/dist/public/locales/hi.json +270 -0
  16. package/dist/public/locales/it.json +270 -0
  17. package/dist/public/locales/ko.json +270 -0
  18. package/dist/public/locales/no.json +270 -0
  19. package/dist/public/locales/pt.json +270 -0
  20. package/dist/public/locales/ru.json +270 -0
  21. package/dist/public/locales/tl.json +270 -0
  22. package/dist/public/locales/zh.json +270 -0
  23. package/package.json +72 -72
  24. package/public/css/cropper.css +309 -309
  25. package/public/css/styles.css +111 -111
  26. package/public/locales/de.json +269 -269
  27. package/public/locales/en.json +276 -276
  28. package/public/locales/es.json +272 -272
  29. package/public/locales/fr.json +269 -269
  30. package/public/locales/hi.json +269 -269
  31. package/public/locales/it.json +269 -269
  32. package/public/locales/ko.json +269 -269
  33. package/public/locales/no.json +269 -269
  34. package/public/locales/pt.json +269 -269
  35. package/public/locales/ru.json +269 -269
  36. package/public/locales/tl.json +269 -269
  37. package/public/locales/zh.json +269 -269
  38. package/src/components/DisplayBox.tsx +83 -83
  39. package/src/components/ErrorMessages.tsx +28 -28
  40. package/src/components/ExportLink.tsx +81 -81
  41. package/src/components/FloatingSupport.tsx +18 -18
  42. package/src/components/FormCardPayment.tsx +184 -184
  43. package/src/components/FormSubmissionEdit.tsx +168 -168
  44. package/src/components/HelpIcon.tsx +12 -12
  45. package/src/components/ImageEditor.tsx +161 -161
  46. package/src/components/InputBox.tsx +96 -96
  47. package/src/components/Loading.tsx +77 -77
  48. package/src/components/PageHeader.tsx +110 -110
  49. package/src/components/PersonAvatar.tsx +77 -77
  50. package/src/components/QuestionEdit.tsx +99 -99
  51. package/src/components/SmallButton.tsx +42 -42
  52. package/src/components/SupportModal.tsx +32 -32
  53. package/src/components/TabPanel.tsx +28 -28
  54. package/src/components/gallery/GalleryModal.tsx +173 -173
  55. package/src/components/gallery/StockPhotos.tsx +95 -95
  56. package/src/components/gallery/index.ts +1 -1
  57. package/src/components/header/Banner.tsx +11 -11
  58. package/src/components/header/PrimaryMenu.tsx +100 -100
  59. package/src/components/header/SecondaryMenu.tsx +23 -23
  60. package/src/components/header/SecondaryMenuAlt.tsx +40 -40
  61. package/src/components/header/SiteHeader.tsx +207 -207
  62. package/src/components/header/SupportDrawer.tsx +111 -111
  63. package/src/components/header/index.tsx +2 -2
  64. package/src/components/index.tsx +20 -20
  65. package/src/components/notes/AddNote.tsx +180 -180
  66. package/src/components/notes/Note.tsx +68 -68
  67. package/src/components/notes/Notes.tsx +208 -208
  68. package/src/components/notes/index.ts +3 -3
  69. package/src/components/wrapper/AppList.tsx +19 -19
  70. package/src/components/wrapper/ChurchList.tsx +154 -154
  71. package/src/components/wrapper/NavItem.tsx +47 -47
  72. package/src/components/wrapper/NewPrivateMessage.tsx +253 -253
  73. package/src/components/wrapper/Notifications.tsx +223 -223
  74. package/src/components/wrapper/PrivateMessageDetails.tsx +112 -112
  75. package/src/components/wrapper/PrivateMessages.tsx +576 -576
  76. package/src/components/wrapper/UserMenu.tsx +383 -383
  77. package/src/components/wrapper/index.tsx +8 -8
  78. package/src/helpers/AnalyticsHelper.ts +44 -32
  79. package/src/helpers/AppearanceHelper.ts +73 -73
  80. package/src/helpers/ArrayHelper.ts +87 -87
  81. package/src/helpers/CurrencyHelper.ts +10 -10
  82. package/src/helpers/DateHelper.ts +104 -104
  83. package/src/helpers/ErrorHelper.ts +43 -43
  84. package/src/helpers/EventHelper.ts +49 -49
  85. package/src/helpers/FileHelper.ts +31 -31
  86. package/src/helpers/Locale.ts +457 -457
  87. package/src/helpers/NotificationService.ts +296 -296
  88. package/src/helpers/PersonHelper.ts +62 -62
  89. package/src/helpers/SlugHelper.ts +37 -37
  90. package/src/helpers/SocketHelper.ts +296 -296
  91. package/src/helpers/UniqueIdHelper.ts +36 -36
  92. package/src/helpers/UserHelper.ts +107 -104
  93. package/src/helpers/createEmotionCache.ts +17 -17
  94. package/src/helpers/index.ts +58 -58
  95. package/src/hooks/index.ts +3 -3
  96. package/src/hooks/useMountedState.ts +16 -16
  97. package/src/hooks/useNotifications.ts +93 -93
  98. package/src/index.ts +2 -2
  99. package/src/types/interface-extensions.d.ts +11 -11
  100. package/tsconfig.json +31 -31
@@ -1,168 +1,168 @@
1
- "use client";
2
-
3
- import React, { useRef } from "react";
4
- import { loadStripe, Stripe } from "@stripe/stripe-js";
5
- import { ErrorMessages, InputBox, QuestionEdit } from "./";
6
- import { ApiHelper, Locale, UniqueIdHelper, UserHelper } from "../helpers";
7
- import { AnswerInterface, QuestionInterface, FormSubmissionInterface } from "@churchapps/helpers";
8
-
9
- interface Props {
10
- addFormId: string,
11
- contentType: string,
12
- contentId: string,
13
- formSubmissionId: string,
14
- unRestrictedFormId?: string,
15
- personId?: string,
16
- churchId?: string,
17
- showHeader?: boolean,
18
- noBackground?:boolean,
19
- updatedFunction: () => void,
20
- cancelFunction?: () => void
21
- }
22
-
23
- export const FormSubmissionEdit: React.FC<Props> = ({showHeader = true, noBackground = false, ...props}) => {
24
- const [stripePromise, setStripe] = React.useState<Promise<Stripe>>(null);
25
- const [formSubmission, setFormSubmission] = React.useState(null);
26
- const [errors, setErrors] = React.useState([]);
27
- const [isSubmitting, setIsSubmitting] = React.useState<boolean>(false);
28
- const paymentRef = useRef<any>(null);
29
-
30
- const getDeleteFunction = () => (!UniqueIdHelper.isMissing(formSubmission?.id)) ? handleDelete : undefined
31
- const handleDelete = () => {
32
- if (window.confirm(Locale.label("formSubmissionEdit.confirmDelete"))) {
33
- ApiHelper.delete("/formsubmissions/" + formSubmission.id, "MembershipApi").then(() => {
34
- props.updatedFunction();
35
- });
36
- }
37
- }
38
-
39
- const getAnswer = (questionId: string) => {
40
- let answers = formSubmission.answers;
41
- for (let i = 0; i < answers.length; i++) if (answers[i].questionId === questionId) return answers[i];
42
- return null;
43
- }
44
-
45
- const setFormSubmissionData = (data: any) => {
46
- const formId = props.addFormId || props.unRestrictedFormId;
47
- let fs: FormSubmissionInterface = {
48
- formId, contentType: props.contentType, contentId: props.contentId, answers: []
49
- };
50
- fs.questions = data;
51
- fs.answers = [];
52
- fs.questions.forEach((q) => {
53
- let answer: AnswerInterface = { formSubmissionId: fs.id, questionId: q.id, required: q.required };
54
- answer.value = getDefaultValue(q);
55
- fs.answers.push(answer);
56
- });
57
- setFormSubmission(fs);
58
- }
59
-
60
- const loadData = () => {
61
- if (!UniqueIdHelper.isMissing(props.formSubmissionId)) ApiHelper.get("/formsubmissions/" + props.formSubmissionId + "/?include=questions,answers,form", "MembershipApi").then((data: any) => setFormSubmission(data));
62
- else if (!UniqueIdHelper.isMissing(props.addFormId)) ApiHelper.get("/questions/?formId=" + props.addFormId, "MembershipApi").then((data: any) => setFormSubmissionData(data));
63
- else if (!UniqueIdHelper.isMissing(props.unRestrictedFormId)) ApiHelper.get("/questions/unrestricted?formId=" + props.unRestrictedFormId, "MembershipApi").then((data: any) => setFormSubmissionData(data));
64
- }
65
-
66
- const getDefaultValue = (q: QuestionInterface) => {
67
- let result = "";
68
- if (q.fieldType === "Yes/No") result = "False";
69
- else if (q.fieldType === "Multiple Choice") {
70
- if (q.choices !== undefined && q.choices !== null && q.choices.length > 0) result = q.choices[0].value;
71
- }
72
- return result;
73
- }
74
-
75
- const validate = (fs: any) => {
76
- let e: any = [];
77
- fs.answers.forEach((a: AnswerInterface) => {
78
-
79
- if (a.required && a.value === "") {
80
- const q: QuestionInterface = fs.questions.find((q: QuestionInterface) => q.id === a.questionId);
81
- e.push(q.title + " " + Locale.label("formSubmissionEdit.isRequired"));
82
- setErrors(e);
83
- }
84
- });
85
- return e.length === 0;
86
- }
87
-
88
- const handleSave = async () => {
89
- const fs = formSubmission;
90
- if (validate(fs)) {
91
- setIsSubmitting(true);
92
- // First, handle the payment if there's a payment component
93
- if (paymentRef.current) {
94
- const paymentResult = await paymentRef.current.handlePayment();
95
- if (!paymentResult.paymentSuccessful) {
96
- setErrors(paymentResult.errors);
97
- setIsSubmitting(false);
98
- return;
99
- } else {
100
- // Mark payment as successful in answers
101
- const paymentAnswer = fs.answers.find((a: AnswerInterface) => a.questionId === paymentRef.current.questionId);
102
- if (paymentAnswer) {
103
- paymentAnswer.value = `Payment Successful [${paymentResult?.name}]`;
104
- } else {
105
- fs.answers.push({
106
- questionId: paymentRef.current.questionId,
107
- value: "Payment Successful"
108
- });
109
- }
110
- }
111
- }
112
-
113
- // If payment is successful or there's no payment, proceed with form submission
114
- fs.submittedBy = props.personId || null;
115
- fs.submissionDate = new Date();
116
- fs.churchId = props.churchId || null;
117
-
118
- ApiHelper.post("/formsubmissions/", [fs], "MembershipApi").then((res: any) => {
119
- if (res?.[0]?.error) {
120
- setErrors([res?.[0].error]);
121
- } else {
122
- props.updatedFunction();
123
- }
124
- })
125
- .finally(() => {
126
- setIsSubmitting(false);
127
- });
128
- }
129
- }
130
-
131
- const handleChange = (questionId: string, value: string) => {
132
- let fs = { ...formSubmission };
133
- let answer: AnswerInterface = null;
134
- for (let i = 0; i < fs.answers.length; i++) if (fs.answers[i].questionId === questionId) answer = fs.answers[i];
135
- if (answer !== null) answer.value = value;
136
- else {
137
- answer = { formSubmissionId: fs.id, questionId: questionId, value: value };
138
- fs.answers.push(answer);
139
- }
140
- setFormSubmission(fs);
141
- }
142
-
143
- React.useEffect(() => {
144
- if (props.churchId) {
145
- ApiHelper.get("/gateways/churchId/" + props.churchId, "GivingApi").then((data: any) => {
146
- if (data.length && data[0]?.publicKey) {
147
- setStripe(loadStripe(data[0].publicKey));
148
- }
149
- });
150
- }
151
- }, [props.churchId]);
152
-
153
- React.useEffect(loadData, []); //eslint-disable-line
154
-
155
- let questionList = [];
156
- if (formSubmission != null) {
157
- let questions = formSubmission.questions;
158
- for (let i = 0; i < questions.length; i++) questionList.push(<QuestionEdit noBackground={noBackground} key={questions[i].id} question={questions[i]} answer={getAnswer(questions[i].id)} changeFunction={handleChange} churchId={props.churchId} ref={questions[i].fieldType === "Payment" ? paymentRef : null} stripePromise={stripePromise} />);
159
- }
160
-
161
- return (
162
- <InputBox id="formSubmissionBox" headerText={showHeader ? (formSubmission?.form?.name || Locale.label("formSubmissionEdit.editForm")) : ""} headerIcon={showHeader ? "person" : ""} mainContainerCssProps={noBackground ? { sx: {backgroundColor: "transparent", boxShadow: 0}}: {}} saveFunction={handleSave} isSubmitting={isSubmitting} saveText={props.contentType === "form" ? Locale.label("formSubmissionEdit.submit") : ""} cancelFunction={props.cancelFunction} deleteFunction={getDeleteFunction()}>
163
- <ErrorMessages errors={errors} />
164
- {questionList}
165
- </InputBox>
166
- );
167
- }
168
-
1
+ "use client";
2
+
3
+ import React, { useRef } from "react";
4
+ import { loadStripe, Stripe } from "@stripe/stripe-js";
5
+ import { ErrorMessages, InputBox, QuestionEdit } from "./";
6
+ import { ApiHelper, Locale, UniqueIdHelper, UserHelper } from "../helpers";
7
+ import { AnswerInterface, QuestionInterface, FormSubmissionInterface } from "@churchapps/helpers";
8
+
9
+ interface Props {
10
+ addFormId: string,
11
+ contentType: string,
12
+ contentId: string,
13
+ formSubmissionId: string,
14
+ unRestrictedFormId?: string,
15
+ personId?: string,
16
+ churchId?: string,
17
+ showHeader?: boolean,
18
+ noBackground?:boolean,
19
+ updatedFunction: () => void,
20
+ cancelFunction?: () => void
21
+ }
22
+
23
+ export const FormSubmissionEdit: React.FC<Props> = ({showHeader = true, noBackground = false, ...props}) => {
24
+ const [stripePromise, setStripe] = React.useState<Promise<Stripe>>(null);
25
+ const [formSubmission, setFormSubmission] = React.useState(null);
26
+ const [errors, setErrors] = React.useState([]);
27
+ const [isSubmitting, setIsSubmitting] = React.useState<boolean>(false);
28
+ const paymentRef = useRef<any>(null);
29
+
30
+ const getDeleteFunction = () => (!UniqueIdHelper.isMissing(formSubmission?.id)) ? handleDelete : undefined
31
+ const handleDelete = () => {
32
+ if (window.confirm(Locale.label("formSubmissionEdit.confirmDelete"))) {
33
+ ApiHelper.delete("/formsubmissions/" + formSubmission.id, "MembershipApi").then(() => {
34
+ props.updatedFunction();
35
+ });
36
+ }
37
+ }
38
+
39
+ const getAnswer = (questionId: string) => {
40
+ let answers = formSubmission.answers;
41
+ for (let i = 0; i < answers.length; i++) if (answers[i].questionId === questionId) return answers[i];
42
+ return null;
43
+ }
44
+
45
+ const setFormSubmissionData = (data: any) => {
46
+ const formId = props.addFormId || props.unRestrictedFormId;
47
+ let fs: FormSubmissionInterface = {
48
+ formId, contentType: props.contentType, contentId: props.contentId, answers: []
49
+ };
50
+ fs.questions = data;
51
+ fs.answers = [];
52
+ fs.questions.forEach((q) => {
53
+ let answer: AnswerInterface = { formSubmissionId: fs.id, questionId: q.id, required: q.required };
54
+ answer.value = getDefaultValue(q);
55
+ fs.answers.push(answer);
56
+ });
57
+ setFormSubmission(fs);
58
+ }
59
+
60
+ const loadData = () => {
61
+ if (!UniqueIdHelper.isMissing(props.formSubmissionId)) ApiHelper.get("/formsubmissions/" + props.formSubmissionId + "/?include=questions,answers,form", "MembershipApi").then((data: any) => setFormSubmission(data));
62
+ else if (!UniqueIdHelper.isMissing(props.addFormId)) ApiHelper.get("/questions/?formId=" + props.addFormId, "MembershipApi").then((data: any) => setFormSubmissionData(data));
63
+ else if (!UniqueIdHelper.isMissing(props.unRestrictedFormId)) ApiHelper.get("/questions/unrestricted?formId=" + props.unRestrictedFormId, "MembershipApi").then((data: any) => setFormSubmissionData(data));
64
+ }
65
+
66
+ const getDefaultValue = (q: QuestionInterface) => {
67
+ let result = "";
68
+ if (q.fieldType === "Yes/No") result = "False";
69
+ else if (q.fieldType === "Multiple Choice") {
70
+ if (q.choices !== undefined && q.choices !== null && q.choices.length > 0) result = q.choices[0].value;
71
+ }
72
+ return result;
73
+ }
74
+
75
+ const validate = (fs: any) => {
76
+ let e: any = [];
77
+ fs.answers.forEach((a: AnswerInterface) => {
78
+
79
+ if (a.required && a.value === "") {
80
+ const q: QuestionInterface = fs.questions.find((q: QuestionInterface) => q.id === a.questionId);
81
+ e.push(q.title + " " + Locale.label("formSubmissionEdit.isRequired"));
82
+ setErrors(e);
83
+ }
84
+ });
85
+ return e.length === 0;
86
+ }
87
+
88
+ const handleSave = async () => {
89
+ const fs = formSubmission;
90
+ if (validate(fs)) {
91
+ setIsSubmitting(true);
92
+ // First, handle the payment if there's a payment component
93
+ if (paymentRef.current) {
94
+ const paymentResult = await paymentRef.current.handlePayment();
95
+ if (!paymentResult.paymentSuccessful) {
96
+ setErrors(paymentResult.errors);
97
+ setIsSubmitting(false);
98
+ return;
99
+ } else {
100
+ // Mark payment as successful in answers
101
+ const paymentAnswer = fs.answers.find((a: AnswerInterface) => a.questionId === paymentRef.current.questionId);
102
+ if (paymentAnswer) {
103
+ paymentAnswer.value = `Payment Successful [${paymentResult?.name}]`;
104
+ } else {
105
+ fs.answers.push({
106
+ questionId: paymentRef.current.questionId,
107
+ value: "Payment Successful"
108
+ });
109
+ }
110
+ }
111
+ }
112
+
113
+ // If payment is successful or there's no payment, proceed with form submission
114
+ fs.submittedBy = props.personId || null;
115
+ fs.submissionDate = new Date();
116
+ fs.churchId = props.churchId || null;
117
+
118
+ ApiHelper.post("/formsubmissions/", [fs], "MembershipApi").then((res: any) => {
119
+ if (res?.[0]?.error) {
120
+ setErrors([res?.[0].error]);
121
+ } else {
122
+ props.updatedFunction();
123
+ }
124
+ })
125
+ .finally(() => {
126
+ setIsSubmitting(false);
127
+ });
128
+ }
129
+ }
130
+
131
+ const handleChange = (questionId: string, value: string) => {
132
+ let fs = { ...formSubmission };
133
+ let answer: AnswerInterface = null;
134
+ for (let i = 0; i < fs.answers.length; i++) if (fs.answers[i].questionId === questionId) answer = fs.answers[i];
135
+ if (answer !== null) answer.value = value;
136
+ else {
137
+ answer = { formSubmissionId: fs.id, questionId: questionId, value: value };
138
+ fs.answers.push(answer);
139
+ }
140
+ setFormSubmission(fs);
141
+ }
142
+
143
+ React.useEffect(() => {
144
+ if (props.churchId) {
145
+ ApiHelper.get("/gateways/churchId/" + props.churchId, "GivingApi").then((data: any) => {
146
+ if (data.length && data[0]?.publicKey) {
147
+ setStripe(loadStripe(data[0].publicKey));
148
+ }
149
+ });
150
+ }
151
+ }, [props.churchId]);
152
+
153
+ React.useEffect(loadData, []); //eslint-disable-line
154
+
155
+ let questionList = [];
156
+ if (formSubmission != null) {
157
+ let questions = formSubmission.questions;
158
+ for (let i = 0; i < questions.length; i++) questionList.push(<QuestionEdit noBackground={noBackground} key={questions[i].id} question={questions[i]} answer={getAnswer(questions[i].id)} changeFunction={handleChange} churchId={props.churchId} ref={questions[i].fieldType === "Payment" ? paymentRef : null} stripePromise={stripePromise} />);
159
+ }
160
+
161
+ return (
162
+ <InputBox id="formSubmissionBox" headerText={showHeader ? (formSubmission?.form?.name || Locale.label("formSubmissionEdit.editForm")) : ""} headerIcon={showHeader ? "person" : ""} mainContainerCssProps={noBackground ? { sx: {backgroundColor: "transparent", boxShadow: 0}}: {}} saveFunction={handleSave} isSubmitting={isSubmitting} saveText={props.contentType === "form" ? Locale.label("formSubmissionEdit.submit") : ""} cancelFunction={props.cancelFunction} deleteFunction={getDeleteFunction()}>
163
+ <ErrorMessages errors={errors} />
164
+ {questionList}
165
+ </InputBox>
166
+ );
167
+ }
168
+
@@ -1,12 +1,12 @@
1
- "use client";
2
-
3
- import React from "react";
4
- import { SmallButton } from "./SmallButton";
5
-
6
- interface Props { article: string; }
7
-
8
- export const HelpIcon = (props: Props) => (
9
- <span style={{ float: "right", color: "#1976d2" }}>
10
- <SmallButton icon="help" aria-label={"help"} onClick={() => window.open("https://support.churchapps.org/" + props.article, "_blank")} />
11
- </span>
12
- )
1
+ "use client";
2
+
3
+ import React from "react";
4
+ import { SmallButton } from "./SmallButton";
5
+
6
+ interface Props { article: string; }
7
+
8
+ export const HelpIcon = (props: Props) => (
9
+ <span style={{ float: "right", color: "#1976d2" }}>
10
+ <SmallButton icon="help" aria-label={"help"} onClick={() => window.open("https://support.churchapps.org/" + props.article, "_blank")} />
11
+ </span>
12
+ )