@factorearth/component-library 5.2.2 → 5.2.3-alpha.0
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/README.md +11 -11
- package/dist/Atoms/Accordion/Accordion.js +18 -18
- package/dist/Atoms/Badge/Badge.js +18 -18
- package/dist/Atoms/Box/Box.js +15 -15
- package/dist/Atoms/Buttons/Button.js +23 -23
- package/dist/Atoms/ContentDropdown/ContentDropdown.js +24 -24
- package/dist/Atoms/DateField/DateField.js +94 -94
- package/dist/Atoms/FieldWrapper/FieldWrapper.js +35 -35
- package/dist/Atoms/MoreHorizonButton/MoreHorizonButton.js +52 -52
- package/dist/Atoms/NoteField/NoteField.js +38 -38
- package/dist/Atoms/NumberField/NumberField.js +63 -63
- package/dist/Atoms/OptionsDropdown/OptionsDropdown.js +38 -38
- package/dist/Atoms/Pagination/Pagination.js +25 -25
- package/dist/Atoms/PhoneNumberField/PhoneNumberField.js +4 -4
- package/dist/Atoms/ProgressBar/ProgressBar.js +16 -16
- package/dist/Atoms/SortDropdown/SortDropdown.js +39 -39
- package/dist/Atoms/Spinner/Spinner.d.ts +7 -0
- package/dist/Atoms/Spinner/Spinner.js +10 -0
- package/dist/Atoms/Spinner/Spinner.js.map +1 -0
- package/dist/Atoms/Tab/Tab.js +18 -18
- package/dist/Atoms/TextField/TextField.js +24 -24
- package/dist/Atoms/Toggle/Toggle.js +11 -11
- package/dist/Atoms/Typography/Typography.js +7 -7
- package/dist/Molecules/Form/Form.js +8 -8
- package/dist/Molecules/NavMenu/NavMenu.d.ts +0 -1
- package/dist/Molecules/NavMenu/NavMenu.js +104 -117
- package/dist/Molecules/NavMenu/NavMenu.js.map +1 -1
- package/dist/Molecules/TableHeader/TableHeader.js +14 -14
- package/dist/Molecules/TableRow/TableRow.js +27 -27
- package/dist/Molecules/Thumbnail/Thumbnail.d.ts +4 -4
- package/dist/Molecules/Thumbnail/Thumbnail.js +126 -50
- package/dist/Molecules/Thumbnail/Thumbnail.js.map +1 -1
- package/dist/Organisms/Card/Card.js +33 -33
- package/dist/Organisms/EditUserPerms/EditUserPerms.js +67 -67
- package/dist/Organisms/ErrorSplash/ErrorSplash.js +44 -44
- package/dist/Organisms/Modal/Modal.js +71 -71
- package/dist/Organisms/TabManager/TabManager.js +13 -13
- package/dist/Organisms/Table/Table.js +14 -14
- package/dist/Organisms/Tutorial/Tutorial.js +51 -51
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/dist/Organisms/Splash/Splash.d.ts +0 -10
- package/dist/Organisms/Splash/Splash.js +0 -82
- package/dist/Organisms/Splash/Splash.js.map +0 -1
|
@@ -2,59 +2,64 @@ import React, { useState, useRef, useEffect, } from "react";
|
|
|
2
2
|
import styled from "@emotion/styled";
|
|
3
3
|
import { FiTrash2, FiEye, FiEyeOff, FiSettings } from "react-icons/fi";
|
|
4
4
|
import { Button } from "../../Atoms/Buttons/Button";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
5
|
+
import { ConfirmationModal } from "../../Organisms/Modal/Modal";
|
|
6
|
+
import { Spinner } from "../../Atoms/Spinner/Spinner";
|
|
7
|
+
const Container = styled.div `
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
align-items: end;
|
|
11
|
+
justify-content: start;
|
|
12
|
+
gap: 16px;
|
|
13
|
+
flex-shrink: 0;
|
|
14
|
+
${({ showImage }) => showImage && `height: 278px; width: 200px`}
|
|
13
15
|
`;
|
|
14
|
-
const InputArea = styled.div `
|
|
15
|
-
width: 150px;
|
|
16
|
-
height: 132px;
|
|
17
|
-
display: flex;
|
|
18
|
-
justify-content: center;
|
|
19
|
-
align-items: center;
|
|
20
|
-
background-color: ${({ colors }) => colors.background.tertiary};
|
|
21
|
-
border-style: solid;
|
|
22
|
-
border-width: 1px;
|
|
23
|
-
border-color: ${({ colors }) => colors.border.primary};
|
|
24
|
-
position: relative;
|
|
25
|
-
cursor: pointer;
|
|
26
|
-
overflow: hidden;
|
|
27
|
-
border-radius: 4px;
|
|
28
|
-
padding: 24px;
|
|
16
|
+
const InputArea = styled.div `
|
|
17
|
+
width: 150px;
|
|
18
|
+
height: 132px;
|
|
19
|
+
display: flex;
|
|
20
|
+
justify-content: center;
|
|
21
|
+
align-items: center;
|
|
22
|
+
background-color: ${({ colors }) => colors.background.tertiary};
|
|
23
|
+
border-style: solid;
|
|
24
|
+
border-width: 1px;
|
|
25
|
+
border-color: ${({ colors }) => colors.border.primary};
|
|
26
|
+
position: relative;
|
|
27
|
+
cursor: pointer;
|
|
28
|
+
overflow: hidden;
|
|
29
|
+
border-radius: 4px;
|
|
30
|
+
padding: 24px;
|
|
29
31
|
`;
|
|
30
|
-
const SettingsArea = styled.div `
|
|
31
|
-
width: 168px;
|
|
32
|
-
height: 148px;
|
|
33
|
-
display: flex;
|
|
34
|
-
justify-content: center;
|
|
35
|
-
align-items: center;
|
|
36
|
-
background-color: ${({ colors }) => colors.background.secondary};
|
|
37
|
-
border-style: solid;
|
|
38
|
-
border-width: 1px;
|
|
39
|
-
border-color: ${({ colors }) => colors.border.primary};
|
|
40
|
-
cursor: pointer;
|
|
41
|
-
overflow: hidden;
|
|
42
|
-
border-radius: 4px;
|
|
43
|
-
gap: 16px;
|
|
44
|
-
padding: 16px;
|
|
32
|
+
const SettingsArea = styled.div `
|
|
33
|
+
width: 168px;
|
|
34
|
+
height: 148px;
|
|
35
|
+
display: flex;
|
|
36
|
+
justify-content: center;
|
|
37
|
+
align-items: center;
|
|
38
|
+
background-color: ${({ colors }) => colors.background.secondary};
|
|
39
|
+
border-style: solid;
|
|
40
|
+
border-width: 1px;
|
|
41
|
+
border-color: ${({ colors }) => colors.border.primary};
|
|
42
|
+
cursor: pointer;
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
border-radius: 4px;
|
|
45
|
+
gap: 16px;
|
|
46
|
+
padding: 16px;
|
|
45
47
|
`;
|
|
46
|
-
const PreviewImage = styled.img `
|
|
47
|
-
width: 100%;
|
|
48
|
-
height: 100%;
|
|
49
|
-
object-fit: cover;
|
|
50
|
-
position: absolute;
|
|
51
|
-
top: 0;
|
|
52
|
-
left: 0;
|
|
53
|
-
z-index: 1;
|
|
48
|
+
const PreviewImage = styled.img `
|
|
49
|
+
width: 100%;
|
|
50
|
+
height: 100%;
|
|
51
|
+
object-fit: cover;
|
|
52
|
+
position: absolute;
|
|
53
|
+
top: 0;
|
|
54
|
+
left: 0;
|
|
55
|
+
z-index: 1;
|
|
54
56
|
`;
|
|
55
|
-
export const Thumbnail = ({ colorPalette, handleSubmit, settingsChildren, showImage, setShowImage, fieldInstance, s3Key, signedUrl,
|
|
57
|
+
export const Thumbnail = ({ colorPalette, handleSubmit, settingsChildren, showImage, setShowImage, fieldInstance, s3Key, signedUrl, loading, handleRemove, handleChange, }) => {
|
|
56
58
|
const [selectedImage, setSelectedImage] = useState(null);
|
|
57
59
|
const [showSettings, setShowSettings] = useState(false);
|
|
60
|
+
const [prevImage, setPrevImage] = useState(null);
|
|
61
|
+
const [openSubmitModal, setOpenSubmitModal] = useState(false);
|
|
62
|
+
const [deletingImage, setDeletingImage] = useState(false);
|
|
58
63
|
const acceptedFileTypes = [
|
|
59
64
|
"image/jpeg",
|
|
60
65
|
"image/png",
|
|
@@ -68,60 +73,131 @@ export const Thumbnail = ({ colorPalette, handleSubmit, settingsChildren, showIm
|
|
|
68
73
|
if (file) {
|
|
69
74
|
const imageUrl = URL.createObjectURL(file);
|
|
70
75
|
setSelectedImage(imageUrl);
|
|
76
|
+
setDeletingImage(false);
|
|
77
|
+
setPrevImage(null);
|
|
71
78
|
}
|
|
72
79
|
}
|
|
73
80
|
else if (signedUrl && typeof signedUrl === "string") {
|
|
74
81
|
setSelectedImage(signedUrl);
|
|
82
|
+
setDeletingImage(false);
|
|
83
|
+
setPrevImage(null);
|
|
75
84
|
}
|
|
76
85
|
else {
|
|
77
86
|
setSelectedImage(null);
|
|
78
87
|
}
|
|
79
88
|
}, [signedUrl, s3Key]);
|
|
89
|
+
/**
|
|
90
|
+
* Handles the image upload from the input element.
|
|
91
|
+
* @param event from the input element
|
|
92
|
+
*/
|
|
80
93
|
const handleImageUpload = (event) => {
|
|
81
94
|
const file = event.target.files?.[0];
|
|
82
95
|
if (file) {
|
|
83
96
|
const imageUrl = URL.createObjectURL(file);
|
|
84
97
|
setSelectedImage(imageUrl);
|
|
98
|
+
setDeletingImage(false);
|
|
99
|
+
setOpenSubmitModal(true);
|
|
85
100
|
handleChange(event);
|
|
86
101
|
}
|
|
87
102
|
};
|
|
103
|
+
/**
|
|
104
|
+
* Handles the image upload from the drag and drop event.
|
|
105
|
+
* @param event from the drag event
|
|
106
|
+
*/
|
|
88
107
|
const handleDrop = (event) => {
|
|
89
108
|
event.preventDefault();
|
|
90
109
|
const file = event.dataTransfer.files[0];
|
|
91
110
|
if (file) {
|
|
92
111
|
const imageUrl = URL.createObjectURL(file);
|
|
93
112
|
setSelectedImage(imageUrl);
|
|
113
|
+
setOpenSubmitModal(true);
|
|
114
|
+
setDeletingImage(false);
|
|
94
115
|
const dropEvent = { target: { files: event.dataTransfer.files, name: "key", type: "file" } };
|
|
95
116
|
if (inputRef.current)
|
|
96
117
|
inputRef.current.files = event.dataTransfer.files;
|
|
97
118
|
handleChange(dropEvent);
|
|
98
119
|
}
|
|
99
120
|
};
|
|
121
|
+
/**
|
|
122
|
+
* HAndles the image upload from the drag and drop event.
|
|
123
|
+
* @param event from the drag event
|
|
124
|
+
*/
|
|
100
125
|
const handleDragOver = (event) => {
|
|
101
126
|
event.preventDefault();
|
|
127
|
+
const file = event.dataTransfer.files[0];
|
|
128
|
+
if (file) {
|
|
129
|
+
const imageUrl = URL.createObjectURL(file);
|
|
130
|
+
setSelectedImage(imageUrl);
|
|
131
|
+
setOpenSubmitModal(true);
|
|
132
|
+
setDeletingImage(false);
|
|
133
|
+
const dropEvent = { target: { files: event.dataTransfer.files, name: "key", type: "file" } };
|
|
134
|
+
if (inputRef.current)
|
|
135
|
+
inputRef.current.files = event.dataTransfer.files;
|
|
136
|
+
handleChange(dropEvent);
|
|
137
|
+
}
|
|
102
138
|
};
|
|
103
|
-
|
|
139
|
+
/**
|
|
140
|
+
* Handles the click event of the browse button.
|
|
141
|
+
*/
|
|
142
|
+
const handleBrowseClick = () => {
|
|
104
143
|
if (inputRef && inputRef.current)
|
|
105
144
|
inputRef.current.click();
|
|
106
145
|
};
|
|
146
|
+
/**
|
|
147
|
+
* Handles toggling the image preview.
|
|
148
|
+
*/
|
|
107
149
|
const handleToggleImage = () => {
|
|
108
150
|
setShowImage(!showImage);
|
|
109
151
|
setShowSettings(false);
|
|
110
152
|
};
|
|
153
|
+
/**
|
|
154
|
+
* Handles toggling the settings.
|
|
155
|
+
*/
|
|
111
156
|
const handleToggleSettings = () => {
|
|
112
157
|
setShowSettings(!showSettings);
|
|
113
158
|
};
|
|
159
|
+
/**
|
|
160
|
+
* Handles clearing the input and removing the image.
|
|
161
|
+
*/
|
|
162
|
+
const clearInput = () => {
|
|
163
|
+
if (inputRef.current) {
|
|
164
|
+
setPrevImage(selectedImage);
|
|
165
|
+
setSelectedImage(null);
|
|
166
|
+
inputRef.current.value = "";
|
|
167
|
+
}
|
|
168
|
+
if (handleRemove) {
|
|
169
|
+
setDeletingImage(true);
|
|
170
|
+
setOpenSubmitModal(true);
|
|
171
|
+
handleRemove();
|
|
172
|
+
}
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* Handles the cancel click event from the modal.
|
|
176
|
+
*/
|
|
177
|
+
const undoDelete = () => {
|
|
178
|
+
setSelectedImage(prevImage);
|
|
179
|
+
setOpenSubmitModal(false);
|
|
180
|
+
setDeletingImage(false);
|
|
181
|
+
setPrevImage(null);
|
|
182
|
+
};
|
|
183
|
+
/**
|
|
184
|
+
* Handles the submit click event from the modal.
|
|
185
|
+
*/
|
|
186
|
+
const handleSubmitClick = async () => {
|
|
187
|
+
await handleSubmit();
|
|
188
|
+
setOpenSubmitModal(false);
|
|
189
|
+
};
|
|
114
190
|
return (React.createElement(Container, { colors: colorPalette, showImage: showImage, showSettings: showSettings, key: `thumbnail_${fieldInstance.id}` },
|
|
115
191
|
React.createElement("div", { style: { display: "flex" } },
|
|
116
192
|
React.createElement(Button, { colorPalette: colorPalette, icon: !showImage ? React.createElement(FiEye, null) : React.createElement(FiEyeOff, null), variant: "outlined", onClick: handleToggleImage, "aria-label": !showImage ? "show-image" : "hide-image" }),
|
|
117
193
|
showImage && selectedImage && (React.createElement(React.Fragment, null,
|
|
118
194
|
React.createElement(Button, { colorPalette: colorPalette, icon: React.createElement(FiSettings, null), variant: "outlined", style: { borderColor: "transparent" }, onClick: handleToggleSettings }),
|
|
119
|
-
|
|
195
|
+
React.createElement(Button, { colorPalette: colorPalette, icon: React.createElement(FiTrash2, null), variant: "destructive", onClick: clearInput })))),
|
|
120
196
|
showImage && !showSettings && (React.createElement(InputArea, { onDrop: handleDrop, onDragOver: handleDragOver, colors: colorPalette },
|
|
121
197
|
selectedImage && (React.createElement(PreviewImage, { alt: s3Key || "Uploaded Image", src: selectedImage })),
|
|
122
198
|
React.createElement(Button, { colorPalette: colorPalette, label: "Browse", variant: "filled", onClick: handleBrowseClick },
|
|
123
199
|
React.createElement("input", { type: "file", name: "key", accept: acceptedFileTypes.join(","), onChange: handleImageUpload, ref: inputRef, id: `upload-image-${fieldInstance.id}`, multiple: false, style: { display: "none" } })))),
|
|
124
200
|
showSettings && showImage && (React.createElement(SettingsArea, { colors: colorPalette }, settingsChildren)),
|
|
125
|
-
|
|
201
|
+
React.createElement(ConfirmationModal, { colorPalette: colorPalette, setOpen: undoDelete, details: React.createElement("div", { style: { display: "flex", alignItems: "center", justifyContent: "center", width: "100%" } }, loading ? (React.createElement(Spinner, { colorPalette: colorPalette })) : (React.createElement("img", { alt: s3Key || "Uploaded Image", src: selectedImage ?? (prevImage ?? ""), style: { width: "150px", height: "132px" } }))), confirmTitle: `Are you sure you want to ${deletingImage ? "delete this image" : "upload this image"}?`, handleSubmit: handleSubmitClick, open: openSubmitModal })));
|
|
126
202
|
};
|
|
127
203
|
//# sourceMappingURL=Thumbnail.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Thumbnail.js","sourceRoot":"","sources":["../../../lib/Molecules/Thumbnail/Thumbnail.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EACb,QAAQ,EAER,MAAM,EAGN,SAAS,GACT,MAAM,OAAO,CAAC;AACf,OAAO,MAAM,MAAM,iBAAiB,CAAC;AAErC,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACvE,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"Thumbnail.js","sourceRoot":"","sources":["../../../lib/Molecules/Thumbnail/Thumbnail.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
import React, { forwardRef } from "react";
|
|
2
2
|
import styled from "@emotion/styled";
|
|
3
|
-
const CardContainer = styled.div `
|
|
4
|
-
padding: 24px;
|
|
5
|
-
border-width: 0.5px;
|
|
6
|
-
border-style: solid;
|
|
7
|
-
border-color: ${({ colorPalette }) => colorPalette.border.primary};
|
|
8
|
-
border-right: none;
|
|
9
|
-
border-left: none;
|
|
3
|
+
const CardContainer = styled.div `
|
|
4
|
+
padding: 24px;
|
|
5
|
+
border-width: 0.5px;
|
|
6
|
+
border-style: solid;
|
|
7
|
+
border-color: ${({ colorPalette }) => colorPalette.border.primary};
|
|
8
|
+
border-right: none;
|
|
9
|
+
border-left: none;
|
|
10
10
|
`;
|
|
11
|
-
const FieldsXThumbnailSection = styled.section `
|
|
12
|
-
display: flex;
|
|
13
|
-
justify-content: space-between;
|
|
14
|
-
flex-direction: row-reverse;
|
|
15
|
-
@media (max-width: 600px) {
|
|
16
|
-
flex-direction: column;
|
|
17
|
-
align-items: flex-end;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
:has(div > div > button[aria-label="show-image"]) {
|
|
21
|
-
flex-direction: column;
|
|
22
|
-
}
|
|
11
|
+
const FieldsXThumbnailSection = styled.section `
|
|
12
|
+
display: flex;
|
|
13
|
+
justify-content: space-between;
|
|
14
|
+
flex-direction: row-reverse;
|
|
15
|
+
@media (max-width: 600px) {
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
align-items: flex-end;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
:has(div > div > button[aria-label="show-image"]) {
|
|
21
|
+
flex-direction: column;
|
|
22
|
+
}
|
|
23
23
|
`;
|
|
24
|
-
const ThumbnailSectionFields = styled.section `
|
|
25
|
-
padding: 16px 24px 0px 0px;
|
|
26
|
-
display: flex;
|
|
27
|
-
flex-direction: column;
|
|
28
|
-
justify-content: center;
|
|
29
|
-
width: 100%;
|
|
30
|
-
@media (max-width: 600px) {
|
|
31
|
-
padding: 16px 0px 0px 24px;
|
|
32
|
-
}
|
|
24
|
+
const ThumbnailSectionFields = styled.section `
|
|
25
|
+
padding: 16px 24px 0px 0px;
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
justify-content: center;
|
|
29
|
+
width: 100%;
|
|
30
|
+
@media (max-width: 600px) {
|
|
31
|
+
padding: 16px 0px 0px 24px;
|
|
32
|
+
}
|
|
33
33
|
`;
|
|
34
|
-
const ButtonContainer = styled.div `
|
|
35
|
-
display: flex;
|
|
36
|
-
justify-content: flex-end;
|
|
37
|
-
gap: 24px;
|
|
38
|
-
padding-top: 24px;
|
|
34
|
+
const ButtonContainer = styled.div `
|
|
35
|
+
display: flex;
|
|
36
|
+
justify-content: flex-end;
|
|
37
|
+
gap: 24px;
|
|
38
|
+
padding-top: 24px;
|
|
39
39
|
`;
|
|
40
40
|
export const Card = forwardRef((props, ref) => {
|
|
41
41
|
const { colorPalette, thumbnail, thumbnailSectionFields, remainingFields, buttons, } = props;
|
|
@@ -6,82 +6,82 @@ import Badge from "../../Atoms/Badge/Badge";
|
|
|
6
6
|
import { DropdownSelect } from "../../Atoms/DropdownField/DropdownField";
|
|
7
7
|
import { FieldWrapper } from "../../Atoms/FieldWrapper/FieldWrapper";
|
|
8
8
|
import { TextFieldWrapper } from "../../Atoms/TextField/TextField";
|
|
9
|
-
const Container = styled.div `
|
|
10
|
-
display: flex;
|
|
11
|
-
padding: 16px 24px;
|
|
12
|
-
flex-direction: column;
|
|
13
|
-
align-items: flex-start;
|
|
14
|
-
gap: 8px;
|
|
15
|
-
align-self: stretch;
|
|
16
|
-
border-radius: var(--Border-Radius-border-radius-md, 8px);
|
|
17
|
-
border: 0.5px solid var(--colors-border-secondary, #DCDEE0);
|
|
18
|
-
background: ${({ colorPalette }) => colorPalette.background.primary};
|
|
9
|
+
const Container = styled.div `
|
|
10
|
+
display: flex;
|
|
11
|
+
padding: 16px 24px;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
align-items: flex-start;
|
|
14
|
+
gap: 8px;
|
|
15
|
+
align-self: stretch;
|
|
16
|
+
border-radius: var(--Border-Radius-border-radius-md, 8px);
|
|
17
|
+
border: 0.5px solid var(--colors-border-secondary, #DCDEE0);
|
|
18
|
+
background: ${({ colorPalette }) => colorPalette.background.primary};
|
|
19
19
|
`;
|
|
20
|
-
const Created = styled.div `
|
|
21
|
-
display: flex;
|
|
22
|
-
padding: 0px 8px;
|
|
23
|
-
gap: 8px;
|
|
24
|
-
width: 100%;
|
|
20
|
+
const Created = styled.div `
|
|
21
|
+
display: flex;
|
|
22
|
+
padding: 0px 8px;
|
|
23
|
+
gap: 8px;
|
|
24
|
+
width: 100%;
|
|
25
25
|
`;
|
|
26
|
-
const BadgeContainer = styled.div `
|
|
27
|
-
padding-top: 2px;
|
|
26
|
+
const BadgeContainer = styled.div `
|
|
27
|
+
padding-top: 2px;
|
|
28
28
|
`;
|
|
29
|
-
const CreatedText = styled.p `
|
|
30
|
-
margin: 0px;
|
|
31
|
-
padding-top: 8px;
|
|
32
|
-
color: ${({ colorPalette }) => colorPalette.text.primary}
|
|
29
|
+
const CreatedText = styled.p `
|
|
30
|
+
margin: 0px;
|
|
31
|
+
padding-top: 8px;
|
|
32
|
+
color: ${({ colorPalette }) => colorPalette.text.primary}
|
|
33
33
|
`;
|
|
34
|
-
const DropdownContainer = styled.div `
|
|
35
|
-
width: 100%;
|
|
36
|
-
display: flex;
|
|
37
|
-
padding: 0px 8px 8px 8px;
|
|
38
|
-
flex-direction: column;
|
|
34
|
+
const DropdownContainer = styled.div `
|
|
35
|
+
width: 100%;
|
|
36
|
+
display: flex;
|
|
37
|
+
padding: 0px 8px 8px 8px;
|
|
38
|
+
flex-direction: column;
|
|
39
39
|
`;
|
|
40
|
-
const RoleDescriptionContainer = styled.div `
|
|
41
|
-
display: flex;
|
|
42
|
-
flex-direction: column
|
|
40
|
+
const RoleDescriptionContainer = styled.div `
|
|
41
|
+
display: flex;
|
|
42
|
+
flex-direction: column
|
|
43
43
|
`;
|
|
44
|
-
const RoleDescriptionParagraph = styled.p `
|
|
45
|
-
font-size: 14px;
|
|
46
|
-
font-style: italic;
|
|
47
|
-
font-weight: 400;
|
|
48
|
-
line-height: 20px;
|
|
49
|
-
margin: 0px;
|
|
50
|
-
color: ${({ colorPalette }) => colorPalette.text.primary}
|
|
44
|
+
const RoleDescriptionParagraph = styled.p `
|
|
45
|
+
font-size: 14px;
|
|
46
|
+
font-style: italic;
|
|
47
|
+
font-weight: 400;
|
|
48
|
+
line-height: 20px;
|
|
49
|
+
margin: 0px;
|
|
50
|
+
color: ${({ colorPalette }) => colorPalette.text.primary}
|
|
51
51
|
`;
|
|
52
|
-
const RoleNameParagraph = styled.h2 `
|
|
53
|
-
font-size: 14px;
|
|
54
|
-
font-style: italic;
|
|
55
|
-
font-weight: 700;
|
|
56
|
-
line-height: 20px;
|
|
57
|
-
margin: 0px;
|
|
58
|
-
color: ${({ colorPalette }) => colorPalette.text.primary}
|
|
52
|
+
const RoleNameParagraph = styled.h2 `
|
|
53
|
+
font-size: 14px;
|
|
54
|
+
font-style: italic;
|
|
55
|
+
font-weight: 700;
|
|
56
|
+
line-height: 20px;
|
|
57
|
+
margin: 0px;
|
|
58
|
+
color: ${({ colorPalette }) => colorPalette.text.primary}
|
|
59
59
|
`;
|
|
60
|
-
const EmailWrapper = styled.div `
|
|
61
|
-
width: 100%;
|
|
62
|
-
min-width: 60px;
|
|
63
|
-
min-height: 30px;
|
|
64
|
-
height: 38px;
|
|
65
|
-
border-radius: 4px;
|
|
66
|
-
border-width: 1px;
|
|
67
|
-
border-style: solid;
|
|
68
|
-
border-color: ${({ colorPalette }) => colorPalette.background.disabledInput};
|
|
69
|
-
background-color: ${({ colorPalette }) => colorPalette.background.disabledInput};
|
|
60
|
+
const EmailWrapper = styled.div `
|
|
61
|
+
width: 100%;
|
|
62
|
+
min-width: 60px;
|
|
63
|
+
min-height: 30px;
|
|
64
|
+
height: 38px;
|
|
65
|
+
border-radius: 4px;
|
|
66
|
+
border-width: 1px;
|
|
67
|
+
border-style: solid;
|
|
68
|
+
border-color: ${({ colorPalette }) => colorPalette.background.disabledInput};
|
|
69
|
+
background-color: ${({ colorPalette }) => colorPalette.background.disabledInput};
|
|
70
70
|
`;
|
|
71
|
-
const PseudoInput = styled.div `
|
|
72
|
-
display: flex;
|
|
73
|
-
align-items: center;
|
|
74
|
-
justify-content: space-between;
|
|
75
|
-
gap: 16px;
|
|
76
|
-
font-weight: 600;
|
|
77
|
-
font-size: 16px;
|
|
78
|
-
display: flex;
|
|
79
|
-
padding: 3px 12px 3px 16px;
|
|
80
|
-
cursor: default;
|
|
81
|
-
color: ${({ colorPalette }) => colorPalette.text.primary};
|
|
82
|
-
::placeholder {
|
|
83
|
-
font-weight: 500;
|
|
84
|
-
}
|
|
71
|
+
const PseudoInput = styled.div `
|
|
72
|
+
display: flex;
|
|
73
|
+
align-items: center;
|
|
74
|
+
justify-content: space-between;
|
|
75
|
+
gap: 16px;
|
|
76
|
+
font-weight: 600;
|
|
77
|
+
font-size: 16px;
|
|
78
|
+
display: flex;
|
|
79
|
+
padding: 3px 12px 3px 16px;
|
|
80
|
+
cursor: default;
|
|
81
|
+
color: ${({ colorPalette }) => colorPalette.text.primary};
|
|
82
|
+
::placeholder {
|
|
83
|
+
font-weight: 500;
|
|
84
|
+
}
|
|
85
85
|
`;
|
|
86
86
|
export function EditUserPerms(props) {
|
|
87
87
|
const { user, handleChange, roles, theme } = props;
|
|
@@ -3,44 +3,44 @@ import styled from "@emotion/styled";
|
|
|
3
3
|
import { FiRefreshCw } from "react-icons/fi";
|
|
4
4
|
import { Button } from "../../Atoms/Buttons/Button";
|
|
5
5
|
import { Typography } from "../../Atoms/Typography/Typography";
|
|
6
|
-
const ErrorSplashContainer = styled.div `
|
|
7
|
-
background-color: ${({ colorPalette }) => colorPalette.background.primary};
|
|
8
|
-
display: flex;
|
|
9
|
-
flex-direction: column;
|
|
10
|
-
align-self: stretch;
|
|
11
|
-
flex-grow: 1;
|
|
6
|
+
const ErrorSplashContainer = styled.div `
|
|
7
|
+
background-color: ${({ colorPalette }) => colorPalette.background.primary};
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
align-self: stretch;
|
|
11
|
+
flex-grow: 1;
|
|
12
12
|
`;
|
|
13
|
-
const HeaderDiv = styled.div `
|
|
14
|
-
padding: 24px;
|
|
15
|
-
flex-direction: column;
|
|
16
|
-
align-items: center;
|
|
17
|
-
gap: 16px;
|
|
18
|
-
align-self: stretch;
|
|
19
|
-
color: ${({ colorPalette }) => colorPalette.text.primary};
|
|
20
|
-
border-width: 0 0 1px 0;
|
|
21
|
-
border-style: solid;
|
|
22
|
-
text-align: center;
|
|
23
|
-
border-color: ${({ colorPalette }) => colorPalette.background.secondary};
|
|
13
|
+
const HeaderDiv = styled.div `
|
|
14
|
+
padding: 24px;
|
|
15
|
+
flex-direction: column;
|
|
16
|
+
align-items: center;
|
|
17
|
+
gap: 16px;
|
|
18
|
+
align-self: stretch;
|
|
19
|
+
color: ${({ colorPalette }) => colorPalette.text.primary};
|
|
20
|
+
border-width: 0 0 1px 0;
|
|
21
|
+
border-style: solid;
|
|
22
|
+
text-align: center;
|
|
23
|
+
border-color: ${({ colorPalette }) => colorPalette.background.secondary};
|
|
24
24
|
`;
|
|
25
|
-
const DescriptionDiv = styled.div `
|
|
26
|
-
margin-top: 24px;
|
|
27
|
-
text-align: center;
|
|
25
|
+
const DescriptionDiv = styled.div `
|
|
26
|
+
margin-top: 24px;
|
|
27
|
+
text-align: center;
|
|
28
28
|
`;
|
|
29
|
-
const BackgroundDiv = styled.div `
|
|
30
|
-
display: flex;
|
|
31
|
-
height: 245px;
|
|
32
|
-
justify-content: center;
|
|
33
|
-
align-items: center;
|
|
34
|
-
align-content: center;
|
|
35
|
-
gap: 16px;
|
|
36
|
-
flex-shrink: 0;
|
|
37
|
-
align-self: stretch;
|
|
38
|
-
flex-wrap: wrap;
|
|
39
|
-
flex-grow: 1;
|
|
40
|
-
background-image: ${({ backgroundImage }) => `url(${backgroundImage})`};
|
|
41
|
-
backgroundSize: cover;
|
|
42
|
-
backgroundRepeat: no-repeat;
|
|
43
|
-
overflowY: auto;
|
|
29
|
+
const BackgroundDiv = styled.div `
|
|
30
|
+
display: flex;
|
|
31
|
+
height: 245px;
|
|
32
|
+
justify-content: center;
|
|
33
|
+
align-items: center;
|
|
34
|
+
align-content: center;
|
|
35
|
+
gap: 16px;
|
|
36
|
+
flex-shrink: 0;
|
|
37
|
+
align-self: stretch;
|
|
38
|
+
flex-wrap: wrap;
|
|
39
|
+
flex-grow: 1;
|
|
40
|
+
background-image: ${({ backgroundImage }) => `url(${backgroundImage})`};
|
|
41
|
+
backgroundSize: cover;
|
|
42
|
+
backgroundRepeat: no-repeat;
|
|
43
|
+
overflowY: auto;
|
|
44
44
|
`;
|
|
45
45
|
// This will replace the ContactContainer when we have the ambassador program set up
|
|
46
46
|
// const AmbassadorContactDiv = styled.div<{ colorPalette: Colors }>`
|
|
@@ -53,15 +53,15 @@ const BackgroundDiv = styled.div `
|
|
|
53
53
|
// gap: 16px;
|
|
54
54
|
// align-self: stretch;
|
|
55
55
|
// `;
|
|
56
|
-
const ContactContainer = styled.div `
|
|
57
|
-
background-color: ${({ colors }) => colors.background.tertiary};
|
|
58
|
-
color: ${({ colors }) => colors.text.primary};
|
|
59
|
-
display: flex;
|
|
60
|
-
padding: 24px 16px;
|
|
61
|
-
flex-direction: column;
|
|
62
|
-
align-items: center;
|
|
63
|
-
gap: 16px;
|
|
64
|
-
align-self: stretch;
|
|
56
|
+
const ContactContainer = styled.div `
|
|
57
|
+
background-color: ${({ colors }) => colors.background.tertiary};
|
|
58
|
+
color: ${({ colors }) => colors.text.primary};
|
|
59
|
+
display: flex;
|
|
60
|
+
padding: 24px 16px;
|
|
61
|
+
flex-direction: column;
|
|
62
|
+
align-items: center;
|
|
63
|
+
gap: 16px;
|
|
64
|
+
align-self: stretch;
|
|
65
65
|
`;
|
|
66
66
|
export const ErrorSplash = (props) => {
|
|
67
67
|
const { colorPalette, title, description, image, backgroundImage, errorMessage, refreshOnClick, ...tableHtmlProps } = props;
|