@factorearth/component-library 3.9.0 → 3.10.0-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.
@@ -1,15 +1,18 @@
1
1
  import React from "react";
2
2
  import * as Dialog from "@radix-ui/react-dialog";
3
3
  import { Colors } from "../../Theme/types";
4
+ export type ToastVariant = "primary" | "success" | "destructive" | "warning" | "info";
4
5
  export declare const StyledDialog: import("@emotion/styled").StyledComponent<Dialog.DialogOverlayProps & React.RefAttributes<HTMLDivElement> & {
5
6
  theme?: import("@emotion/react").Theme;
6
7
  } & {
7
8
  colorPalette: Colors;
9
+ toast?: ToastVariant;
8
10
  }, {}, {}>;
9
11
  export declare const StyledContent: import("@emotion/styled").StyledComponent<Dialog.DialogContentProps & React.RefAttributes<HTMLDivElement> & {
10
12
  theme?: import("@emotion/react").Theme;
11
13
  } & {
12
14
  colorPalette: Colors;
15
+ toast?: ToastVariant;
13
16
  }, {}, {}>;
14
17
  export declare const DialogContainer: import("@emotion/styled").StyledComponent<{
15
18
  theme?: import("@emotion/react").Theme;
@@ -44,15 +47,18 @@ interface ModalProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDi
44
47
  children: React.ReactNode;
45
48
  colorPalette: Colors;
46
49
  setOpen: (open: boolean) => void;
50
+ toast?: ToastVariant;
51
+ timeout?: number;
47
52
  }
48
53
  export declare const Modal: (props: ModalProps) => React.JSX.Element;
49
- interface ConfirmationModalProps {
54
+ interface ConfirmationModalProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
50
55
  colorPalette: Colors;
51
56
  setOpen: React.Dispatch<React.SetStateAction<boolean>>;
52
57
  confirmTitle: string;
53
58
  confirmText: string;
54
59
  handleSubmit: any;
55
60
  open: boolean;
61
+ toast?: ToastVariant;
56
62
  }
57
63
  export declare const ConfirmationModal: (props: ConfirmationModalProps) => React.JSX.Element;
58
64
  export {};
@@ -3,8 +3,9 @@ import * as Dialog from "@radix-ui/react-dialog";
3
3
  import styled from "@emotion/styled";
4
4
  import { Button } from "../../Atoms/Buttons/Button";
5
5
  import { FiX } from "react-icons/fi";
6
+ import { useEffect } from "react";
6
7
  export const StyledDialog = styled(Dialog.Overlay) `
7
- background-color: ${({ colorPalette }) => colorPalette.background.secondary};
8
+ ${({ colorPalette, toast }) => !toast && `background-color: ${colorPalette.background.secondary}`};
8
9
  opacity: 0.8;
9
10
  position: absolute;
10
11
  inset: 0;
@@ -12,12 +13,13 @@ export const StyledDialog = styled(Dialog.Overlay) `
12
13
  z-index: 1000;
13
14
  `;
14
15
  export const StyledContent = styled(Dialog.Content) `
15
- background-color: ${({ colorPalette }) => colorPalette.background.primary};
16
+ ${({ colorPalette, toast }) => !toast
17
+ ? `background-color: ${colorPalette.background.primary}; color: ${colorPalette.text.primary};`
18
+ : `background-color: ${colorPalette.toastBackground[toast]}; color: ${colorPalette.toastText[toast]};`};
16
19
  box-shadow: ${({ colorPalette }) => `${colorPalette.background.secondary} 0px 5px 15px`};
17
- color: ${({ colorPalette }) => colorPalette.text.primary};
18
- border-radius: 4px;
19
- position: fixed;
20
- top: 50%;
20
+ ${({ toast }) => !toast && `border-radius: 4px;`};
21
+ position: absolute;
22
+ top: ${({ toast }) => (toast ? "64px" : "50%")};
21
23
  left: 50%;
22
24
  transform: translate(-50%, -50%);
23
25
  max-height: 85vh;
@@ -26,6 +28,7 @@ export const StyledContent = styled(Dialog.Content) `
26
28
  display: flex;
27
29
  flex-direction: column;
28
30
  min-width: 300px;
31
+ ${({ toast }) => toast && `width: 100%;`};
29
32
  gap: 16px;
30
33
  :focus {
31
34
  outline: none;
@@ -42,6 +45,7 @@ export const DialogContainer = styled.div `
42
45
  export const ModalTitleContainer = styled.div `
43
46
  display: flex;
44
47
  justify-content: space-between;
48
+ align-items: center;
45
49
  width: 100%;
46
50
  `;
47
51
  export const ModalTitle = styled.div `
@@ -81,23 +85,39 @@ export const ModalInputBox = styled.div `
81
85
  gap: 8px;
82
86
  `;
83
87
  export const Modal = (props) => {
84
- const { open, children, colorPalette, setOpen, ...htmlProps } = props;
88
+ const { open, children, colorPalette, setOpen, toast, timeout, ...htmlProps } = props;
89
+ useEffect(() => {
90
+ let timer;
91
+ if (open && toast) {
92
+ timer = setTimeout(() => {
93
+ setOpen(false);
94
+ }, timeout || 5000);
95
+ }
96
+ return () => {
97
+ if (timer) {
98
+ clearTimeout(timer);
99
+ }
100
+ };
101
+ }, [open]);
85
102
  return (React.createElement(Dialog.Root, { open: open, modal: true },
86
103
  React.createElement(Dialog.Portal, null,
87
104
  React.createElement(Dialog.Title, null),
88
- React.createElement(StyledDialog, { colorPalette: colorPalette }),
89
- React.createElement(StyledContent, { ...htmlProps, colorPalette: colorPalette, onInteractOutside: () => setOpen(false), onPointerDownOutside: () => setOpen(false) }, children))));
105
+ React.createElement(StyledDialog, { colorPalette: colorPalette, toast: toast }),
106
+ React.createElement(StyledContent, { ...htmlProps, colorPalette: colorPalette, onInteractOutside: () => {
107
+ if (toast)
108
+ setOpen(true);
109
+ }, onPointerDownOutside: () => setOpen(false), toast: toast }, children))));
90
110
  };
91
111
  export const ConfirmationModal = (props) => {
92
- const { colorPalette, setOpen, confirmTitle, confirmText, handleSubmit, open, } = props;
93
- return (React.createElement(Modal, { colorPalette: colorPalette, open: open, setOpen: setOpen },
94
- React.createElement(DialogContainer, null,
112
+ const { colorPalette, setOpen, confirmTitle, confirmText, handleSubmit, open, toast, ...htmlProps } = props;
113
+ return (React.createElement(Modal, { colorPalette: colorPalette, open: open, setOpen: setOpen, ...htmlProps, toast: toast },
114
+ React.createElement(DialogContainer, { ...(toast ? { style: { padding: "24px" } } : {}) },
95
115
  React.createElement(ModalTitleContainer, null,
96
116
  React.createElement(ModalTitle, null, confirmTitle),
97
117
  React.createElement(FiX, { onClick: () => setOpen(false), size: 24 })),
98
118
  React.createElement(ModelSubHeading, null, confirmText),
99
- React.createElement(ModalFooter, null,
119
+ !toast && (React.createElement(ModalFooter, null,
100
120
  React.createElement(Button, { colorPalette: colorPalette, variant: "filled", label: "Ok", onClick: handleSubmit }),
101
- React.createElement(Button, { colorPalette: colorPalette, variant: "destructive", label: "Cancel", onClick: () => setOpen(false) })))));
121
+ React.createElement(Button, { colorPalette: colorPalette, variant: "destructive", label: "Cancel", onClick: () => setOpen(false) }))))));
102
122
  };
103
123
  //# sourceMappingURL=Modal.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Modal.js","sourceRoot":"","sources":["../../../lib/Organisms/Modal/Modal.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Modal.js","sourceRoot":"","sources":["../../../lib/Organisms/Modal/Modal.tsx"],"names":[],"mappings":"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"}
@@ -122,6 +122,20 @@ export const lightTheme = {
122
122
  selected: white["100"],
123
123
  notSelected: grey["800"],
124
124
  },
125
+ toastText: {
126
+ success: green["300"],
127
+ destructive: red["400"],
128
+ info: blue["500"],
129
+ warning: orange["300"],
130
+ primary: grey["1100"],
131
+ },
132
+ toastBackground: {
133
+ success: green["100"],
134
+ destructive: red["100"],
135
+ info: blue["100"],
136
+ warning: orange["100"],
137
+ primary: grey["200"],
138
+ },
125
139
  theme: "light",
126
140
  };
127
141
  export const darkTheme = {
@@ -202,6 +216,20 @@ export const darkTheme = {
202
216
  selected: grey["1200"],
203
217
  notSelected: grey["400"],
204
218
  },
219
+ toastText: {
220
+ success: green["300"],
221
+ destructive: red["400"],
222
+ info: blue["500"],
223
+ warning: orange["300"],
224
+ primary: grey["1100"],
225
+ },
226
+ toastBackground: {
227
+ success: green["100"],
228
+ destructive: red["100"],
229
+ info: blue["100"],
230
+ warning: orange["100"],
231
+ primary: grey["200"],
232
+ },
205
233
  theme: "dark",
206
234
  };
207
235
  const ThemeContext = createContext({
@@ -1 +1 @@
1
- {"version":3,"file":"ThemeProvider.js","sourceRoot":"","sources":["../../lib/Theme/ThemeProvider.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ThemeProvider.js","sourceRoot":"","sources":["../../lib/Theme/ThemeProvider.tsx"],"names":[],"mappings":"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"}
@@ -164,16 +164,102 @@
164
164
  "value": "20",
165
165
  "type": "borderRadius"
166
166
  },
167
- "Jumbo": {
168
- "value": {
169
- "fontWeight": "Bold",
170
- "fontSize": "61",
171
- "letterSpacing": "0",
172
- "paragraphSpacing": "0",
173
- "fontFamily": "{System .SF Compact}",
174
- "lineHeight": "{133}"
175
- },
176
- "type": "typography"
167
+ "Typography": {
168
+ "Jumbo": {
169
+ "value": {
170
+ "role": "heading",
171
+ "ariaLevel": "1",
172
+ "fontWeight": "700",
173
+ "fontSize": "61px",
174
+ "letterSpacing": "0",
175
+ "lineHeight": "133px"
176
+ },
177
+ "type": "typography"
178
+ },
179
+ "Heading 1": {
180
+ "value": {
181
+ "role": "heading",
182
+ "ariaLevel": "1",
183
+ "fontSize": "47px",
184
+ "lineHeight": "133%",
185
+ "letterSpacing": "0",
186
+ "fontWeight": "700"
187
+ },
188
+ "type": "typography"
189
+ },
190
+ "Heading 2": {
191
+ "value": {
192
+ "role": "heading",
193
+ "ariaLevel": "2",
194
+ "fontSize": "36px",
195
+ "lineHeight": "133%",
196
+ "letterSpacing": "0",
197
+ "fontWeight": "700"
198
+ },
199
+ "type": "typography"
200
+ },
201
+ "Heading 3": {
202
+ "value": {
203
+ "role": "heading",
204
+ "ariaLevel": "3",
205
+ "fontWeight": "700",
206
+ "fontSize": "27px",
207
+ "lineHeight": "133%",
208
+ "letterSpacing": "0"
209
+ },
210
+ "type": "typography"
211
+ },
212
+ "Heading 4": {
213
+ "value": {
214
+ "role": "heading",
215
+ "ariaLevel": "4",
216
+ "fontSize": "21px",
217
+ "lineHeight": "133%",
218
+ "letterSpacing": "0",
219
+ "fontWeight": "700"
220
+ },
221
+ "type": "typography"
222
+ },
223
+ "Paragraphy Body": {
224
+ "value": {
225
+ "role": "paragraph",
226
+ "fontSize": "16px",
227
+ "lineHeight": "133%",
228
+ "letterSpacing": "0",
229
+ "fontWeight": "400"
230
+ },
231
+ "type": "typography"
232
+ },
233
+ "Small": {
234
+ "value": {
235
+ "role": "paragraph",
236
+ "fontSize": "14px",
237
+ "lineHeight": "133%",
238
+ "letterSpacing": "0",
239
+ "fontWeight": "400"
240
+ },
241
+ "type": "typography"
242
+ },
243
+ "Label": {
244
+ "value": {
245
+ "role": "paragraph",
246
+ "fontSize": "12px",
247
+ "lineHeight": "133%",
248
+ "letterSpacing": "0",
249
+ "fontWeight": "700"
250
+ },
251
+ "type": "typography"
252
+ },
253
+ "Legal": {
254
+ "value": {
255
+ "role": "paragraph",
256
+ "fontSize": "9px",
257
+ "lineHeight": "133%",
258
+ "fontWeight": "400",
259
+ "letterSpacing": "0"
260
+ },
261
+ "type": "typography"
262
+ }
177
263
  },
178
264
  "System ": {
179
265
  "SF Compact": {
@@ -184,94 +270,6 @@
184
270
  "Thin": {
185
271
  "value": ".5",
186
272
  "type": "borderWidth"
187
- },
188
- "Heading 1": {
189
- "value": {
190
- "fontFamily": "{System .SF Compact}",
191
- "fontWeight": "Bold",
192
- "fontSize": "47",
193
- "lineHeight": "{133}",
194
- "letterSpacing": "0",
195
- "paragraphSpacing": "0"
196
- },
197
- "type": "typography"
198
- },
199
- "Heading 2": {
200
- "value": {
201
- "fontFamily": "{System .SF Compact}",
202
- "fontWeight": "Bold",
203
- "fontSize": "36",
204
- "lineHeight": "{133}",
205
- "letterSpacing": "0",
206
- "paragraphSpacing": "0"
207
- },
208
- "type": "typography"
209
- },
210
- "Heading 3": {
211
- "value": {
212
- "fontFamily": "{System .SF Compact}",
213
- "fontWeight": "Bold",
214
- "fontSize": "27",
215
- "lineHeight": "{133}",
216
- "letterSpacing": "0",
217
- "paragraphSpacing": "0"
218
- },
219
- "type": "typography"
220
- },
221
- "Heading 4": {
222
- "value": {
223
- "fontFamily": "{System .SF Compact}",
224
- "fontWeight": "Bold",
225
- "fontSize": "21",
226
- "lineHeight": "{133}",
227
- "letterSpacing": "0",
228
- "paragraphSpacing": "0"
229
- },
230
- "type": "typography"
231
- },
232
- "Paragraphy Body": {
233
- "value": {
234
- "fontFamily": "{System .SF Compact}",
235
- "fontWeight": "Regular",
236
- "fontSize": "16",
237
- "lineHeight": "{133}",
238
- "letterSpacing": "0",
239
- "paragraphSpacing": "0"
240
- },
241
- "type": "typography"
242
- },
243
- "Small": {
244
- "value": {
245
- "fontFamily": "{System .SF Compact}",
246
- "fontWeight": "Regular",
247
- "fontSize": "14",
248
- "lineHeight": "{133}",
249
- "letterSpacing": "0",
250
- "paragraphSpacing": "0"
251
- },
252
- "type": "typography"
253
- },
254
- "Label": {
255
- "value": {
256
- "fontFamily": "{System .SF Compact}",
257
- "fontWeight": "Bold",
258
- "fontSize": "12",
259
- "lineHeight": "{133}",
260
- "letterSpacing": "0",
261
- "paragraphSpacing": "0"
262
- },
263
- "type": "typography"
264
- },
265
- "Legal": {
266
- "value": {
267
- "fontFamily": "{System .SF Compact}",
268
- "fontWeight": "Regular",
269
- "fontSize": "9",
270
- "lineHeight": "{133}",
271
- "paragraphSpacing": "0",
272
- "paragraphIndent": "0"
273
- },
274
- "type": "typography"
275
273
  }
276
274
  },
277
275
  "$themes": [],
@@ -127,6 +127,20 @@ export interface Colors {
127
127
  icon: string;
128
128
  disabled: string;
129
129
  };
130
+ toastText: {
131
+ success: string;
132
+ destructive: string;
133
+ info: string;
134
+ primary: string;
135
+ warning: string;
136
+ };
137
+ toastBackground: {
138
+ success: string;
139
+ destructive: string;
140
+ info: string;
141
+ primary: string;
142
+ warning: string;
143
+ };
130
144
  theme: "light" | "dark";
131
145
  }
132
146
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factorearth/component-library",
3
- "version": "3.9.0",
3
+ "version": "3.10.0-alpha.0",
4
4
  "description": " A storybook component library for FactorEarth",
5
5
  "author": "madtrx <marlin.makori@gmail.com>",
6
6
  "homepage": "https://github.com/FactorEarth/RecordMiddleware#readme",
@@ -46,7 +46,7 @@
46
46
  "access": "public",
47
47
  "registry": "https://registry.npmjs.org/"
48
48
  },
49
- "gitHead": "7783350e94972eb05907add21999c3f30452b582",
49
+ "gitHead": "655f9a999fbaebcf5113fbc7cc5d92fb51775c37",
50
50
  "dependencies": {
51
51
  "@emotion/react": "^11.13.0",
52
52
  "@emotion/styled": "^11.13.0",