@churchapps/apphelper 0.1.10 → 0.1.11
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.
- package/.eslintignore +3 -3
- package/.eslintrc.json +22 -22
- package/LICENSE +21 -21
- package/README.md +24 -24
- package/dist/components/markdownEditor/editor.css +787 -787
- package/dist/components/markdownEditor/images/icons/arrow-clockwise.svg +3 -3
- package/dist/components/markdownEditor/images/icons/arrow-counterclockwise.svg +3 -3
- package/dist/components/markdownEditor/images/icons/chat-square-quote.svg +3 -3
- package/dist/components/markdownEditor/images/icons/chevron-down.svg +2 -2
- package/dist/components/markdownEditor/images/icons/code.svg +2 -2
- package/dist/components/markdownEditor/images/icons/journal-code.svg +4 -4
- package/dist/components/markdownEditor/images/icons/journal-text.svg +4 -4
- package/dist/components/markdownEditor/images/icons/justify.svg +2 -2
- package/dist/components/markdownEditor/images/icons/link.svg +3 -3
- package/dist/components/markdownEditor/images/icons/list-ol.svg +3 -3
- package/dist/components/markdownEditor/images/icons/list-ul.svg +2 -2
- package/dist/components/markdownEditor/images/icons/pencil-fill.svg +2 -2
- package/dist/components/markdownEditor/images/icons/text-center.svg +2 -2
- package/dist/components/markdownEditor/images/icons/text-left.svg +2 -2
- package/dist/components/markdownEditor/images/icons/text-paragraph.svg +2 -2
- package/dist/components/markdownEditor/images/icons/text-right.svg +2 -2
- package/dist/components/markdownEditor/images/icons/type-bold.svg +2 -2
- package/dist/components/markdownEditor/images/icons/type-h1.svg +2 -2
- package/dist/components/markdownEditor/images/icons/type-h2.svg +2 -2
- package/dist/components/markdownEditor/images/icons/type-h3.svg +2 -2
- package/dist/components/markdownEditor/images/icons/type-h4.svg +12 -12
- package/dist/components/markdownEditor/images/icons/type-italic.svg +2 -2
- package/dist/components/markdownEditor/images/icons/type-strikethrough.svg +2 -2
- package/dist/components/markdownEditor/images/icons/type-underline.svg +2 -2
- package/dist/components/markdownEditor/plugins/customLink/FloatingLinkEditor.d.ts.map +1 -1
- package/dist/components/markdownEditor/plugins/customLink/FloatingLinkEditor.js +10 -3
- package/dist/components/markdownEditor/plugins/customLink/FloatingLinkEditor.js.map +1 -1
- package/package.json +88 -88
- package/src/components/CreatePerson.tsx +80 -80
- package/src/components/DisplayBox.tsx +68 -68
- package/src/components/ErrorMessages.tsx +26 -26
- package/src/components/ExportLink.tsx +67 -67
- package/src/components/FloatingSupport.tsx +16 -16
- package/src/components/FormSubmissionEdit.tsx +120 -120
- package/src/components/HelpIcon.tsx +10 -10
- package/src/components/ImageEditor.tsx +126 -126
- package/src/components/InputBox.tsx +73 -73
- package/src/components/Loading.tsx +29 -29
- package/src/components/PersonAdd.tsx +75 -75
- package/src/components/QuestionEdit.tsx +63 -63
- package/src/components/SmallButton.tsx +39 -39
- package/src/components/SupportModal.tsx +26 -26
- package/src/components/TabPanel.tsx +34 -34
- package/src/components/gallery/GalleryModal.tsx +119 -119
- package/src/components/gallery/StockPhotos.tsx +74 -74
- package/src/components/gallery/index.ts +1 -1
- package/src/components/iconPicker/IconNamesList.ts +2240 -2240
- package/src/components/iconPicker/IconPicker.tsx +153 -153
- package/src/components/index.tsx +24 -24
- package/src/components/markdownEditor/Editor.tsx +132 -132
- package/src/components/markdownEditor/MarkdownEditor.tsx +16 -16
- package/src/components/markdownEditor/MarkdownModal.tsx +46 -46
- package/src/components/markdownEditor/MarkdownPreview.tsx +14 -14
- package/src/components/markdownEditor/editor.css +787 -787
- package/src/components/markdownEditor/images/icons/arrow-clockwise.svg +3 -3
- package/src/components/markdownEditor/images/icons/arrow-counterclockwise.svg +3 -3
- package/src/components/markdownEditor/images/icons/chat-square-quote.svg +3 -3
- package/src/components/markdownEditor/images/icons/chevron-down.svg +2 -2
- package/src/components/markdownEditor/images/icons/code.svg +2 -2
- package/src/components/markdownEditor/images/icons/journal-code.svg +4 -4
- package/src/components/markdownEditor/images/icons/journal-text.svg +4 -4
- package/src/components/markdownEditor/images/icons/justify.svg +2 -2
- package/src/components/markdownEditor/images/icons/link.svg +3 -3
- package/src/components/markdownEditor/images/icons/list-ol.svg +3 -3
- package/src/components/markdownEditor/images/icons/list-ul.svg +2 -2
- package/src/components/markdownEditor/images/icons/pencil-fill.svg +2 -2
- package/src/components/markdownEditor/images/icons/text-center.svg +2 -2
- package/src/components/markdownEditor/images/icons/text-left.svg +2 -2
- package/src/components/markdownEditor/images/icons/text-paragraph.svg +2 -2
- package/src/components/markdownEditor/images/icons/text-right.svg +2 -2
- package/src/components/markdownEditor/images/icons/type-bold.svg +2 -2
- package/src/components/markdownEditor/images/icons/type-h1.svg +2 -2
- package/src/components/markdownEditor/images/icons/type-h2.svg +2 -2
- package/src/components/markdownEditor/images/icons/type-h3.svg +2 -2
- package/src/components/markdownEditor/images/icons/type-h4.svg +12 -12
- package/src/components/markdownEditor/images/icons/type-italic.svg +2 -2
- package/src/components/markdownEditor/images/icons/type-strikethrough.svg +2 -2
- package/src/components/markdownEditor/images/icons/type-underline.svg +2 -2
- package/src/components/markdownEditor/index.ts +2 -2
- package/src/components/markdownEditor/plugins/AutoLinkPlugin.tsx +35 -35
- package/src/components/markdownEditor/plugins/ControlledEditorPlugin.tsx +24 -24
- package/src/components/markdownEditor/plugins/ListMaxIndentLevelPlugin.tsx +68 -68
- package/src/components/markdownEditor/plugins/MarkdownTransformers.ts +106 -106
- package/src/components/markdownEditor/plugins/ReadOnlyPlugin.tsx +15 -15
- package/src/components/markdownEditor/plugins/ToolbarPlugin.tsx +401 -401
- package/src/components/markdownEditor/plugins/customLink/CustomLinkNode.tsx +224 -224
- package/src/components/markdownEditor/plugins/customLink/CustomLinkNodePlugin.tsx +32 -32
- package/src/components/markdownEditor/plugins/customLink/CustomLinkNodeTransformer.tsx +102 -102
- package/src/components/markdownEditor/plugins/customLink/FloatingLinkEditor.tsx +252 -243
- package/src/components/markdownEditor/plugins/customLink/FloatingLinkEditor.types.ts +11 -11
- package/src/components/markdownEditor/plugins/emoji/EmojiNode.tsx +95 -95
- package/src/components/markdownEditor/plugins/emoji/EmojiNodeTransform.ts +41 -41
- package/src/components/markdownEditor/plugins/emoji/EmojiPickerPlugin.tsx +152 -152
- package/src/components/markdownEditor/plugins/emoji/EmojisPlugin.tsx +65 -65
- package/src/components/markdownEditor/plugins/index.ts +6 -6
- package/src/components/markdownEditor/theme.ts +65 -65
- package/src/components/notes/AddNote.tsx +90 -90
- package/src/components/notes/Conversation.tsx +82 -82
- package/src/components/notes/Conversations.tsx +58 -58
- package/src/components/notes/NewConversation.tsx +78 -78
- package/src/components/notes/Note.tsx +44 -44
- package/src/components/notes/Notes.tsx +69 -69
- package/src/components/notes/index.ts +5 -5
- package/src/components/reporting/ChartReport.tsx +98 -98
- package/src/components/reporting/ReportFilter.tsx +54 -54
- package/src/components/reporting/ReportFilterField.tsx +160 -160
- package/src/components/reporting/ReportOutput.tsx +79 -79
- package/src/components/reporting/ReportWithFilter.tsx +70 -70
- package/src/components/reporting/TableReport.tsx +57 -57
- package/src/components/reporting/TreeReport.tsx +111 -111
- package/src/components/reporting/index.ts +4 -4
- package/src/components/wrapper/AppList.tsx +20 -20
- package/src/components/wrapper/ChurchList.tsx +22 -22
- package/src/components/wrapper/Drawers.tsx +60 -60
- package/src/components/wrapper/NavItem.tsx +41 -41
- package/src/components/wrapper/NewPrivateMessage.tsx +103 -103
- package/src/components/wrapper/NotificationMenu.tsx +96 -96
- package/src/components/wrapper/Notifications.tsx +53 -53
- package/src/components/wrapper/PrivateMessageDetails.tsx +24 -24
- package/src/components/wrapper/PrivateMessages.tsx +92 -92
- package/src/components/wrapper/SiteWrapper.tsx +99 -99
- package/src/components/wrapper/TabPanel.tsx +30 -30
- package/src/components/wrapper/UserMenu.tsx +106 -106
- package/src/components/wrapper/index.tsx +5 -5
- package/src/donationComponents/DonationPage.tsx +136 -136
- package/src/donationComponents/components/BankForm.tsx +159 -159
- package/src/donationComponents/components/CardForm.tsx +104 -104
- package/src/donationComponents/components/DonationForm.tsx +235 -235
- package/src/donationComponents/components/FundDonation.tsx +49 -49
- package/src/donationComponents/components/FundDonations.tsx +39 -39
- package/src/donationComponents/components/NonAuthDonation.tsx +31 -31
- package/src/donationComponents/components/NonAuthDonationInner.tsx +259 -259
- package/src/donationComponents/components/PaymentMethods.tsx +135 -135
- package/src/donationComponents/components/RecurringDonations.tsx +121 -121
- package/src/donationComponents/components/RecurringDonationsEdit.tsx +93 -93
- package/src/donationComponents/components/index.tsx +9 -9
- package/src/donationComponents/index.ts +3 -3
- package/src/donationComponents/modals/DonationPreviewModal.tsx +66 -66
- package/src/helpers/AnalyticsHelper.ts +33 -33
- package/src/helpers/ApiHelper.ts +125 -125
- package/src/helpers/AppearanceHelper.ts +69 -69
- package/src/helpers/ArrayHelper.ts +81 -81
- package/src/helpers/CommonEnvironmentHelper.ts +80 -80
- package/src/helpers/CurrencyHelper.ts +10 -10
- package/src/helpers/DateHelper.ts +109 -109
- package/src/helpers/DonationHelper.ts +26 -26
- package/src/helpers/ErrorHelper.ts +36 -36
- package/src/helpers/EventHelper.ts +52 -52
- package/src/helpers/FileHelper.ts +31 -31
- package/src/helpers/PersonHelper.ts +60 -60
- package/src/helpers/SlugHelper.ts +37 -37
- package/src/helpers/SocketHelper.ts +78 -78
- package/src/helpers/Themes.ts +14 -14
- package/src/helpers/UniqueIdHelper.ts +36 -36
- package/src/helpers/UserHelper.ts +59 -59
- package/src/helpers/createEmotionCache.ts +17 -17
- package/src/helpers/index.ts +19 -19
- package/src/hooks/index.ts +1 -1
- package/src/hooks/useMountedState.ts +16 -16
- package/src/index.ts +6 -6
- package/src/interfaces/Access.ts +24 -24
- package/src/interfaces/Attendance.ts +8 -8
- package/src/interfaces/Content.ts +10 -10
- package/src/interfaces/Doing.ts +24 -24
- package/src/interfaces/Donation.ts +45 -45
- package/src/interfaces/Error.ts +17 -17
- package/src/interfaces/Membership.ts +51 -51
- package/src/interfaces/Messaging.ts +11 -11
- package/src/interfaces/Permissions.ts +68 -68
- package/src/interfaces/Reporting.ts +7 -7
- package/src/interfaces/UserContextInterface.ts +13 -13
- package/src/interfaces/index.ts +13 -13
- package/src/pageComponents/LoginPage.tsx +244 -244
- package/src/pageComponents/LogoutPage.tsx +28 -28
- package/src/pageComponents/components/Forgot.tsx +79 -79
- package/src/pageComponents/components/Login.tsx +54 -54
- package/src/pageComponents/components/LoginSetPassword.tsx +63 -63
- package/src/pageComponents/components/Register.tsx +107 -107
- package/src/pageComponents/components/SelectChurchModal.tsx +41 -41
- package/src/pageComponents/components/SelectChurchRegister.tsx +88 -88
- package/src/pageComponents/components/SelectChurchSearch.tsx +69 -69
- package/src/pageComponents/components/SelectableChurch.tsx +38 -38
- package/src/pageComponents/index.ts +3 -3
- package/tsconfig.json +34 -34
- package/tslint.json +14 -14
|
@@ -1,80 +1,80 @@
|
|
|
1
|
-
import React from "react"
|
|
2
|
-
import { useNavigate } from "react-router-dom"
|
|
3
|
-
import { UserHelper, ApiHelper } from "../helpers";
|
|
4
|
-
import { Permissions, PersonInterface, HouseholdInterface } from "../interfaces";
|
|
5
|
-
import { Button, Grid, TextField } from "@mui/material"
|
|
6
|
-
import { ErrorMessages } from "./ErrorMessages"
|
|
7
|
-
import { useMountedState } from "../hooks/useMountedState"
|
|
8
|
-
|
|
9
|
-
interface Props {
|
|
10
|
-
navigateOnCreate?: boolean;
|
|
11
|
-
onCreate?: (person: PersonInterface) => void;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export function CreatePerson({ navigateOnCreate = true, onCreate = () => {} }: Props) {
|
|
15
|
-
const navigate = useNavigate()
|
|
16
|
-
const [person, setPerson] = React.useState<PersonInterface>({ name: { first: "", last: "" }, contactInfo: {} });
|
|
17
|
-
const [errors, setErrors] = React.useState<string[]>([]);
|
|
18
|
-
const [isSubmitting, setIsSubmitting] = React.useState(false);
|
|
19
|
-
const isMounted = useMountedState()
|
|
20
|
-
|
|
21
|
-
const validate = () => {
|
|
22
|
-
const result = [];
|
|
23
|
-
if (!person.name?.first) result.push("Please enter a first name.");
|
|
24
|
-
if (!person.name?.last) result.push("Please enter a last name.");
|
|
25
|
-
setErrors(result);
|
|
26
|
-
return result.length === 0;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
const handleChange = (e: React.ChangeEvent<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>) => {
|
|
30
|
-
setErrors([]);
|
|
31
|
-
const p = { ...person } as PersonInterface;
|
|
32
|
-
let value = e.target.value;
|
|
33
|
-
switch (e.target.name) {
|
|
34
|
-
case "first": p.name.first = value; break;
|
|
35
|
-
case "last": p.name.last = value; break;
|
|
36
|
-
}
|
|
37
|
-
setPerson(p);
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
function handleSubmit() {
|
|
41
|
-
let household = { name: person.name.last } as HouseholdInterface;
|
|
42
|
-
if (validate()) {
|
|
43
|
-
setIsSubmitting(true);
|
|
44
|
-
ApiHelper.post("/households", [household], "MembershipApi").then(data => {
|
|
45
|
-
household.id = data[0].id;
|
|
46
|
-
person.householdId = household.id;
|
|
47
|
-
person.name.display = [person.name.first, person.name.last].join(" ");
|
|
48
|
-
ApiHelper.post("/people", [person], "MembershipApi").then(data => {
|
|
49
|
-
person.id = data[0].id
|
|
50
|
-
onCreate(person);
|
|
51
|
-
setPerson({...person, name: { first: "", last: "" }});
|
|
52
|
-
navigateOnCreate && navigate("/people/" + person.id);
|
|
53
|
-
}).finally(() => {
|
|
54
|
-
if (isMounted()) {
|
|
55
|
-
setIsSubmitting(false);
|
|
56
|
-
}
|
|
57
|
-
});
|
|
58
|
-
});
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
if (!UserHelper.checkAccess(Permissions.membershipApi.people.edit)) return null;
|
|
63
|
-
return (
|
|
64
|
-
<div>
|
|
65
|
-
<p className="pl-1 mb-3 text-dark"><b>Add a New Person</b></p>
|
|
66
|
-
<ErrorMessages errors={errors} />
|
|
67
|
-
<Grid container spacing={3} alignItems="center">
|
|
68
|
-
<Grid item md={4} xs={12}>
|
|
69
|
-
<TextField size="small" margin="none" fullWidth type="text" aria-label="firstName" label="First Name" name="first" value={person.name.first || ""} onChange={handleChange} onKeyDown={(e: React.KeyboardEvent<HTMLInputElement>) => e.key === "Enter" && handleSubmit} />
|
|
70
|
-
</Grid>
|
|
71
|
-
<Grid item md={4} xs={12}>
|
|
72
|
-
<TextField size="small" margin="none" fullWidth type="text" aria-label="lastName" label="Last Name" name="last" value={person.name.last || ""} onChange={handleChange} onKeyDown={(e: React.KeyboardEvent<HTMLInputElement>) => e.key === "Enter" && handleSubmit} />
|
|
73
|
-
</Grid>
|
|
74
|
-
<Grid item md={4} xs={12}>
|
|
75
|
-
<Button type="submit" fullWidth variant="contained" disabled={isSubmitting} onClick={handleSubmit}>Add</Button>
|
|
76
|
-
</Grid>
|
|
77
|
-
</Grid>
|
|
78
|
-
</div>
|
|
79
|
-
)
|
|
80
|
-
}
|
|
1
|
+
import React from "react"
|
|
2
|
+
import { useNavigate } from "react-router-dom"
|
|
3
|
+
import { UserHelper, ApiHelper } from "../helpers";
|
|
4
|
+
import { Permissions, PersonInterface, HouseholdInterface } from "../interfaces";
|
|
5
|
+
import { Button, Grid, TextField } from "@mui/material"
|
|
6
|
+
import { ErrorMessages } from "./ErrorMessages"
|
|
7
|
+
import { useMountedState } from "../hooks/useMountedState"
|
|
8
|
+
|
|
9
|
+
interface Props {
|
|
10
|
+
navigateOnCreate?: boolean;
|
|
11
|
+
onCreate?: (person: PersonInterface) => void;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export function CreatePerson({ navigateOnCreate = true, onCreate = () => {} }: Props) {
|
|
15
|
+
const navigate = useNavigate()
|
|
16
|
+
const [person, setPerson] = React.useState<PersonInterface>({ name: { first: "", last: "" }, contactInfo: {} });
|
|
17
|
+
const [errors, setErrors] = React.useState<string[]>([]);
|
|
18
|
+
const [isSubmitting, setIsSubmitting] = React.useState(false);
|
|
19
|
+
const isMounted = useMountedState()
|
|
20
|
+
|
|
21
|
+
const validate = () => {
|
|
22
|
+
const result = [];
|
|
23
|
+
if (!person.name?.first) result.push("Please enter a first name.");
|
|
24
|
+
if (!person.name?.last) result.push("Please enter a last name.");
|
|
25
|
+
setErrors(result);
|
|
26
|
+
return result.length === 0;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const handleChange = (e: React.ChangeEvent<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>) => {
|
|
30
|
+
setErrors([]);
|
|
31
|
+
const p = { ...person } as PersonInterface;
|
|
32
|
+
let value = e.target.value;
|
|
33
|
+
switch (e.target.name) {
|
|
34
|
+
case "first": p.name.first = value; break;
|
|
35
|
+
case "last": p.name.last = value; break;
|
|
36
|
+
}
|
|
37
|
+
setPerson(p);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
function handleSubmit() {
|
|
41
|
+
let household = { name: person.name.last } as HouseholdInterface;
|
|
42
|
+
if (validate()) {
|
|
43
|
+
setIsSubmitting(true);
|
|
44
|
+
ApiHelper.post("/households", [household], "MembershipApi").then(data => {
|
|
45
|
+
household.id = data[0].id;
|
|
46
|
+
person.householdId = household.id;
|
|
47
|
+
person.name.display = [person.name.first, person.name.last].join(" ");
|
|
48
|
+
ApiHelper.post("/people", [person], "MembershipApi").then(data => {
|
|
49
|
+
person.id = data[0].id
|
|
50
|
+
onCreate(person);
|
|
51
|
+
setPerson({...person, name: { first: "", last: "" }});
|
|
52
|
+
navigateOnCreate && navigate("/people/" + person.id);
|
|
53
|
+
}).finally(() => {
|
|
54
|
+
if (isMounted()) {
|
|
55
|
+
setIsSubmitting(false);
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
if (!UserHelper.checkAccess(Permissions.membershipApi.people.edit)) return null;
|
|
63
|
+
return (
|
|
64
|
+
<div>
|
|
65
|
+
<p className="pl-1 mb-3 text-dark"><b>Add a New Person</b></p>
|
|
66
|
+
<ErrorMessages errors={errors} />
|
|
67
|
+
<Grid container spacing={3} alignItems="center">
|
|
68
|
+
<Grid item md={4} xs={12}>
|
|
69
|
+
<TextField size="small" margin="none" fullWidth type="text" aria-label="firstName" label="First Name" name="first" value={person.name.first || ""} onChange={handleChange} onKeyDown={(e: React.KeyboardEvent<HTMLInputElement>) => e.key === "Enter" && handleSubmit} />
|
|
70
|
+
</Grid>
|
|
71
|
+
<Grid item md={4} xs={12}>
|
|
72
|
+
<TextField size="small" margin="none" fullWidth type="text" aria-label="lastName" label="Last Name" name="last" value={person.name.last || ""} onChange={handleChange} onKeyDown={(e: React.KeyboardEvent<HTMLInputElement>) => e.key === "Enter" && handleSubmit} />
|
|
73
|
+
</Grid>
|
|
74
|
+
<Grid item md={4} xs={12}>
|
|
75
|
+
<Button type="submit" fullWidth variant="contained" disabled={isSubmitting} onClick={handleSubmit}>Add</Button>
|
|
76
|
+
</Grid>
|
|
77
|
+
</Grid>
|
|
78
|
+
</div>
|
|
79
|
+
)
|
|
80
|
+
}
|
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { Paper, Box, Typography, styled, Icon } from "@mui/material";
|
|
3
|
-
import { HelpIcon } from "./HelpIcon";
|
|
4
|
-
import { SmallButton } from "./SmallButton";
|
|
5
|
-
|
|
6
|
-
interface Props {
|
|
7
|
-
id?: string,
|
|
8
|
-
children: React.ReactNode,
|
|
9
|
-
headerIcon?: string,
|
|
10
|
-
headerText: string,
|
|
11
|
-
editFunction?: () => void,
|
|
12
|
-
editContent?: React.ReactNode,
|
|
13
|
-
"data-cy"?: string,
|
|
14
|
-
ariaLabel?: string,
|
|
15
|
-
footerContent?: React.ReactNode,
|
|
16
|
-
help?: string
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
/* "& p": { color: "#666" }, */
|
|
20
|
-
const CustomContextBox = styled(Box)({
|
|
21
|
-
marginTop: 10,
|
|
22
|
-
overflowX: "hidden",
|
|
23
|
-
"& label": { color: "#999" },
|
|
24
|
-
"& ul": { paddingLeft: 0 },
|
|
25
|
-
"& li": {
|
|
26
|
-
listStyleType: "none",
|
|
27
|
-
marginBottom: 10,
|
|
28
|
-
"& i": { marginRight: 5 }
|
|
29
|
-
},
|
|
30
|
-
"& td": {
|
|
31
|
-
"& i": { marginRight: 5 }
|
|
32
|
-
},
|
|
33
|
-
"& td:first-of-type": { paddingLeft: 0 },
|
|
34
|
-
"& td:last-of-type": { paddingRight: 0 },
|
|
35
|
-
"& th:first-of-type": { paddingLeft: 0 },
|
|
36
|
-
"& th:last-of-type": { paddingRight: 0 }
|
|
37
|
-
});
|
|
38
|
-
|
|
39
|
-
export const DisplayBox = React.forwardRef<HTMLDivElement, Props>((props, ref) => {
|
|
40
|
-
|
|
41
|
-
let editContent: React.ReactNode;
|
|
42
|
-
if (props.editFunction !== undefined) {
|
|
43
|
-
editContent = <SmallButton icon="edit" aria-label={props.ariaLabel || "editButton"} onClick={props.editFunction} />
|
|
44
|
-
}
|
|
45
|
-
else if (props.editContent !== undefined) editContent = props.editContent;
|
|
46
|
-
|
|
47
|
-
return (
|
|
48
|
-
<Paper sx={{ padding: 2, marginBottom: 4 }} id={props.id} data-cy={props["data-cy"] || ""}>
|
|
49
|
-
{props.help && <HelpIcon article={props.help} />}
|
|
50
|
-
<Box sx={{ display: "flex", justifyContent: "space-between", alignItems: "center" }}>
|
|
51
|
-
<Box sx={{ display: "flex", alignItems: "center" }}>
|
|
52
|
-
{props.headerIcon && <Icon sx={{ color: "#1976d2" }}>{props.headerIcon}</Icon>}
|
|
53
|
-
<Typography component="h2" sx={{ display: "inline-block", marginLeft: props.headerIcon ? 1 : 0 }} variant="h6" color="primary">
|
|
54
|
-
{props.headerText}
|
|
55
|
-
</Typography>
|
|
56
|
-
|
|
57
|
-
</Box>
|
|
58
|
-
<Box>
|
|
59
|
-
{editContent}
|
|
60
|
-
</Box>
|
|
61
|
-
</Box>
|
|
62
|
-
<CustomContextBox ref={ref} data-cy="content">{props.children}</CustomContextBox>
|
|
63
|
-
{props.footerContent && (<div style={{ marginLeft: -16, marginRight: -16, marginBottom: -15, marginTop: 15 }}>{props.footerContent}</div>)}
|
|
64
|
-
</Paper>
|
|
65
|
-
);
|
|
66
|
-
})
|
|
67
|
-
|
|
68
|
-
DisplayBox.displayName = "DisplayBox";
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Paper, Box, Typography, styled, Icon } from "@mui/material";
|
|
3
|
+
import { HelpIcon } from "./HelpIcon";
|
|
4
|
+
import { SmallButton } from "./SmallButton";
|
|
5
|
+
|
|
6
|
+
interface Props {
|
|
7
|
+
id?: string,
|
|
8
|
+
children: React.ReactNode,
|
|
9
|
+
headerIcon?: string,
|
|
10
|
+
headerText: string,
|
|
11
|
+
editFunction?: () => void,
|
|
12
|
+
editContent?: React.ReactNode,
|
|
13
|
+
"data-cy"?: string,
|
|
14
|
+
ariaLabel?: string,
|
|
15
|
+
footerContent?: React.ReactNode,
|
|
16
|
+
help?: string
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/* "& p": { color: "#666" }, */
|
|
20
|
+
const CustomContextBox = styled(Box)({
|
|
21
|
+
marginTop: 10,
|
|
22
|
+
overflowX: "hidden",
|
|
23
|
+
"& label": { color: "#999" },
|
|
24
|
+
"& ul": { paddingLeft: 0 },
|
|
25
|
+
"& li": {
|
|
26
|
+
listStyleType: "none",
|
|
27
|
+
marginBottom: 10,
|
|
28
|
+
"& i": { marginRight: 5 }
|
|
29
|
+
},
|
|
30
|
+
"& td": {
|
|
31
|
+
"& i": { marginRight: 5 }
|
|
32
|
+
},
|
|
33
|
+
"& td:first-of-type": { paddingLeft: 0 },
|
|
34
|
+
"& td:last-of-type": { paddingRight: 0 },
|
|
35
|
+
"& th:first-of-type": { paddingLeft: 0 },
|
|
36
|
+
"& th:last-of-type": { paddingRight: 0 }
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
export const DisplayBox = React.forwardRef<HTMLDivElement, Props>((props, ref) => {
|
|
40
|
+
|
|
41
|
+
let editContent: React.ReactNode;
|
|
42
|
+
if (props.editFunction !== undefined) {
|
|
43
|
+
editContent = <SmallButton icon="edit" aria-label={props.ariaLabel || "editButton"} onClick={props.editFunction} />
|
|
44
|
+
}
|
|
45
|
+
else if (props.editContent !== undefined) editContent = props.editContent;
|
|
46
|
+
|
|
47
|
+
return (
|
|
48
|
+
<Paper sx={{ padding: 2, marginBottom: 4 }} id={props.id} data-cy={props["data-cy"] || ""}>
|
|
49
|
+
{props.help && <HelpIcon article={props.help} />}
|
|
50
|
+
<Box sx={{ display: "flex", justifyContent: "space-between", alignItems: "center" }}>
|
|
51
|
+
<Box sx={{ display: "flex", alignItems: "center" }}>
|
|
52
|
+
{props.headerIcon && <Icon sx={{ color: "#1976d2" }}>{props.headerIcon}</Icon>}
|
|
53
|
+
<Typography component="h2" sx={{ display: "inline-block", marginLeft: props.headerIcon ? 1 : 0 }} variant="h6" color="primary">
|
|
54
|
+
{props.headerText}
|
|
55
|
+
</Typography>
|
|
56
|
+
|
|
57
|
+
</Box>
|
|
58
|
+
<Box>
|
|
59
|
+
{editContent}
|
|
60
|
+
</Box>
|
|
61
|
+
</Box>
|
|
62
|
+
<CustomContextBox ref={ref} data-cy="content">{props.children}</CustomContextBox>
|
|
63
|
+
{props.footerContent && (<div style={{ marginLeft: -16, marginRight: -16, marginBottom: -15, marginTop: 15 }}>{props.footerContent}</div>)}
|
|
64
|
+
</Paper>
|
|
65
|
+
);
|
|
66
|
+
})
|
|
67
|
+
|
|
68
|
+
DisplayBox.displayName = "DisplayBox";
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { Alert, Snackbar } from "@mui/material";
|
|
2
|
-
import React, { useEffect } from "react";
|
|
3
|
-
|
|
4
|
-
interface Props { errors: string[] }
|
|
5
|
-
|
|
6
|
-
export const ErrorMessages: React.FC<Props> = props => {
|
|
7
|
-
const [open, setOpen] = React.useState(false);
|
|
8
|
-
let [items, setItems] = React.useState([]);
|
|
9
|
-
|
|
10
|
-
useEffect(() => {
|
|
11
|
-
if (props.errors.length > 0) {
|
|
12
|
-
let _items = [];
|
|
13
|
-
for (let i = 0; i < props.errors.length; i++) {
|
|
14
|
-
_items.push(<div key={i}>{props.errors[i]}</div>);
|
|
15
|
-
}
|
|
16
|
-
setItems(_items);
|
|
17
|
-
setOpen(true);
|
|
18
|
-
}
|
|
19
|
-
}, [props.errors]);
|
|
20
|
-
|
|
21
|
-
let result = (<Snackbar open={open} anchorOrigin={{ horizontal: "center", vertical: "bottom" }} autoHideDuration={6000} onClose={() => setOpen(false)}>
|
|
22
|
-
<Alert variant="filled" severity="error">{items}</Alert>
|
|
23
|
-
</Snackbar>);
|
|
24
|
-
|
|
25
|
-
return result;
|
|
26
|
-
}
|
|
1
|
+
import { Alert, Snackbar } from "@mui/material";
|
|
2
|
+
import React, { useEffect } from "react";
|
|
3
|
+
|
|
4
|
+
interface Props { errors: string[] }
|
|
5
|
+
|
|
6
|
+
export const ErrorMessages: React.FC<Props> = props => {
|
|
7
|
+
const [open, setOpen] = React.useState(false);
|
|
8
|
+
let [items, setItems] = React.useState([]);
|
|
9
|
+
|
|
10
|
+
useEffect(() => {
|
|
11
|
+
if (props.errors.length > 0) {
|
|
12
|
+
let _items = [];
|
|
13
|
+
for (let i = 0; i < props.errors.length; i++) {
|
|
14
|
+
_items.push(<div key={i}>{props.errors[i]}</div>);
|
|
15
|
+
}
|
|
16
|
+
setItems(_items);
|
|
17
|
+
setOpen(true);
|
|
18
|
+
}
|
|
19
|
+
}, [props.errors]);
|
|
20
|
+
|
|
21
|
+
let result = (<Snackbar open={open} anchorOrigin={{ horizontal: "center", vertical: "bottom" }} autoHideDuration={6000} onClose={() => setOpen(false)}>
|
|
22
|
+
<Alert variant="filled" severity="error">{items}</Alert>
|
|
23
|
+
</Snackbar>);
|
|
24
|
+
|
|
25
|
+
return result;
|
|
26
|
+
}
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
import { Button, Icon } from "@mui/material";
|
|
2
|
-
import React from "react";
|
|
3
|
-
import { CSVLink } from "react-csv";
|
|
4
|
-
|
|
5
|
-
interface Props {
|
|
6
|
-
data: any[],
|
|
7
|
-
spaceAfter?: boolean,
|
|
8
|
-
spaceBefore?: boolean,
|
|
9
|
-
filename?: string
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export const ExportLink: React.FC<Props> = (props) => {
|
|
13
|
-
|
|
14
|
-
const people = props.data ? [...props.data] : [];
|
|
15
|
-
|
|
16
|
-
const getHeaders = () => {
|
|
17
|
-
let result = [];
|
|
18
|
-
if (people?.length > 0) {
|
|
19
|
-
let names = getAllPropertyNames();
|
|
20
|
-
for (let i = 0; i < names.length; i++) { result.push({ label: names[i], key: names[i] }); }
|
|
21
|
-
}
|
|
22
|
-
return result;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
const getAllPropertyNames = () => {
|
|
26
|
-
let result = [];
|
|
27
|
-
for (let i = 0; i < people.length; i++) {
|
|
28
|
-
let p = {...people[i]}
|
|
29
|
-
p.birthDate = p.birthDate ? new Date(p.birthDate).toISOString() : null;
|
|
30
|
-
p.anniversary = p.anniversary ? new Date(p.anniversary).toISOString() : null;
|
|
31
|
-
people[i] = p;
|
|
32
|
-
let propertyNames = getPropertyNames("", people[i]);
|
|
33
|
-
for (let j = 0; j < propertyNames.length; j++) if (result.indexOf(propertyNames[j]) === -1) result.push(propertyNames[j]);
|
|
34
|
-
}
|
|
35
|
-
return result.sort();
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
const getPropertyNames = (prefix: string, obj: any) => {
|
|
39
|
-
let result = [];
|
|
40
|
-
let names = Object.getOwnPropertyNames(obj)
|
|
41
|
-
for (let i = 0; i < names.length; i++) {
|
|
42
|
-
let t = typeof obj[names[i]];
|
|
43
|
-
switch (t) {
|
|
44
|
-
case "number":
|
|
45
|
-
case "string":
|
|
46
|
-
case "boolean":
|
|
47
|
-
result.push(prefix + names[i]);
|
|
48
|
-
break;
|
|
49
|
-
case "object":
|
|
50
|
-
if ((obj[names[i]] !== null)) {
|
|
51
|
-
let children: string[] = getPropertyNames(prefix + names[i] + ".", obj[names[i]]);
|
|
52
|
-
for (let j = 0; j < children.length; j++) result.push(children[j]);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
return result;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
if (!people || people?.length === 0) return null;
|
|
60
|
-
else {
|
|
61
|
-
let items = [];
|
|
62
|
-
if (props.spaceBefore) items.push(" ");
|
|
63
|
-
items.push(<CSVLink key={props.filename} data={people} headers={getHeaders()} filename={props.filename || "export.csv"}> <Button><Icon>file_download</Icon></Button></CSVLink>);
|
|
64
|
-
if (props.spaceAfter) items.push(" ");
|
|
65
|
-
return (<>{items}</>);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
1
|
+
import { Button, Icon } from "@mui/material";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { CSVLink } from "react-csv";
|
|
4
|
+
|
|
5
|
+
interface Props {
|
|
6
|
+
data: any[],
|
|
7
|
+
spaceAfter?: boolean,
|
|
8
|
+
spaceBefore?: boolean,
|
|
9
|
+
filename?: string
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export const ExportLink: React.FC<Props> = (props) => {
|
|
13
|
+
|
|
14
|
+
const people = props.data ? [...props.data] : [];
|
|
15
|
+
|
|
16
|
+
const getHeaders = () => {
|
|
17
|
+
let result = [];
|
|
18
|
+
if (people?.length > 0) {
|
|
19
|
+
let names = getAllPropertyNames();
|
|
20
|
+
for (let i = 0; i < names.length; i++) { result.push({ label: names[i], key: names[i] }); }
|
|
21
|
+
}
|
|
22
|
+
return result;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const getAllPropertyNames = () => {
|
|
26
|
+
let result = [];
|
|
27
|
+
for (let i = 0; i < people.length; i++) {
|
|
28
|
+
let p = {...people[i]}
|
|
29
|
+
p.birthDate = p.birthDate ? new Date(p.birthDate).toISOString() : null;
|
|
30
|
+
p.anniversary = p.anniversary ? new Date(p.anniversary).toISOString() : null;
|
|
31
|
+
people[i] = p;
|
|
32
|
+
let propertyNames = getPropertyNames("", people[i]);
|
|
33
|
+
for (let j = 0; j < propertyNames.length; j++) if (result.indexOf(propertyNames[j]) === -1) result.push(propertyNames[j]);
|
|
34
|
+
}
|
|
35
|
+
return result.sort();
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const getPropertyNames = (prefix: string, obj: any) => {
|
|
39
|
+
let result = [];
|
|
40
|
+
let names = Object.getOwnPropertyNames(obj)
|
|
41
|
+
for (let i = 0; i < names.length; i++) {
|
|
42
|
+
let t = typeof obj[names[i]];
|
|
43
|
+
switch (t) {
|
|
44
|
+
case "number":
|
|
45
|
+
case "string":
|
|
46
|
+
case "boolean":
|
|
47
|
+
result.push(prefix + names[i]);
|
|
48
|
+
break;
|
|
49
|
+
case "object":
|
|
50
|
+
if ((obj[names[i]] !== null)) {
|
|
51
|
+
let children: string[] = getPropertyNames(prefix + names[i] + ".", obj[names[i]]);
|
|
52
|
+
for (let j = 0; j < children.length; j++) result.push(children[j]);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
return result;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
if (!people || people?.length === 0) return null;
|
|
60
|
+
else {
|
|
61
|
+
let items = [];
|
|
62
|
+
if (props.spaceBefore) items.push(" ");
|
|
63
|
+
items.push(<CSVLink key={props.filename} data={people} headers={getHeaders()} filename={props.filename || "export.csv"}> <Button><Icon>file_download</Icon></Button></CSVLink>);
|
|
64
|
+
if (props.spaceAfter) items.push(" ");
|
|
65
|
+
return (<>{items}</>);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { Fab, Icon } from "@mui/material";
|
|
2
|
-
import React from "react";
|
|
3
|
-
import { SupportModal } from "./SupportModal";
|
|
4
|
-
|
|
5
|
-
interface Props { appName?: string }
|
|
6
|
-
|
|
7
|
-
export const FloatingSupport: React.FC<Props> = (props) => {
|
|
8
|
-
const [showSupport, setShowSupport] = React.useState(false);
|
|
9
|
-
|
|
10
|
-
return (<>
|
|
11
|
-
<Fab color="primary" style={{ position: "fixed", cursor: "pointer", bottom: "20px", right: (showSupport) ? 47 : 30 }} onClick={() => { setShowSupport(!showSupport) }} aria-label="Support">
|
|
12
|
-
<Icon style={{ fontSize: 40 }}>contact_support</Icon>
|
|
13
|
-
</Fab>
|
|
14
|
-
{showSupport && <SupportModal onClose={() => setShowSupport(false)} appName={props.appName} />}
|
|
15
|
-
</>);
|
|
16
|
-
};
|
|
1
|
+
import { Fab, Icon } from "@mui/material";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { SupportModal } from "./SupportModal";
|
|
4
|
+
|
|
5
|
+
interface Props { appName?: string }
|
|
6
|
+
|
|
7
|
+
export const FloatingSupport: React.FC<Props> = (props) => {
|
|
8
|
+
const [showSupport, setShowSupport] = React.useState(false);
|
|
9
|
+
|
|
10
|
+
return (<>
|
|
11
|
+
<Fab color="primary" style={{ position: "fixed", cursor: "pointer", bottom: "20px", right: (showSupport) ? 47 : 30 }} onClick={() => { setShowSupport(!showSupport) }} aria-label="Support">
|
|
12
|
+
<Icon style={{ fontSize: 40 }}>contact_support</Icon>
|
|
13
|
+
</Fab>
|
|
14
|
+
{showSupport && <SupportModal onClose={() => setShowSupport(false)} appName={props.appName} />}
|
|
15
|
+
</>);
|
|
16
|
+
};
|