@autobe/ui 0.30.0-dev.20260315 → 0.30.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.
Files changed (86) hide show
  1. package/LICENSE +661 -661
  2. package/lib/components/AutoBeChatMain.js +5 -5
  3. package/lib/components/AutoBeConfigModal.js +9 -9
  4. package/package.json +2 -2
  5. package/src/components/AutoBeAssistantMessageMovie.tsx +22 -22
  6. package/src/components/AutoBeChatMain.tsx +376 -376
  7. package/src/components/AutoBeChatSidebar.tsx +414 -414
  8. package/src/components/AutoBeConfigButton.tsx +83 -83
  9. package/src/components/AutoBeConfigModal.tsx +443 -443
  10. package/src/components/AutoBeStatusButton.tsx +75 -75
  11. package/src/components/AutoBeStatusModal.tsx +486 -486
  12. package/src/components/AutoBeUserMessageMovie.tsx +27 -27
  13. package/src/components/common/ActionButton.tsx +205 -205
  14. package/src/components/common/ActionButtonGroup.tsx +80 -80
  15. package/src/components/common/AutoBeConfigInput.tsx +185 -185
  16. package/src/components/common/ChatBubble.tsx +119 -119
  17. package/src/components/common/Collapsible.tsx +95 -95
  18. package/src/components/common/CompactSessionIndicator.tsx +73 -73
  19. package/src/components/common/CompactSessionList.tsx +82 -82
  20. package/src/components/common/index.ts +8 -8
  21. package/src/components/common/openai/OpenAIContent.tsx +53 -53
  22. package/src/components/common/openai/OpenAIUserAudioContent.tsx +70 -70
  23. package/src/components/common/openai/OpenAIUserFileContent.tsx +76 -76
  24. package/src/components/common/openai/OpenAIUserImageContent.tsx +34 -34
  25. package/src/components/common/openai/OpenAIUserTextContent.tsx +15 -15
  26. package/src/components/common/openai/index.ts +5 -5
  27. package/src/components/events/AutoBeCompleteEventMovie.tsx +402 -402
  28. package/src/components/events/AutoBeCorrectEventMovie.tsx +354 -354
  29. package/src/components/events/AutoBeEventGroupMovie.tsx +18 -18
  30. package/src/components/events/AutoBeEventMovie.tsx +158 -158
  31. package/src/components/events/AutoBeProgressEventMovie.tsx +217 -217
  32. package/src/components/events/AutoBeScenarioEventMovie.tsx +135 -135
  33. package/src/components/events/AutoBeStartEventMovie.tsx +82 -82
  34. package/src/components/events/AutoBeValidateEventMovie.tsx +249 -249
  35. package/src/components/events/README.md +300 -300
  36. package/src/components/events/common/CollapsibleEventGroup.tsx +211 -211
  37. package/src/components/events/common/EventCard.tsx +61 -61
  38. package/src/components/events/common/EventContent.tsx +31 -31
  39. package/src/components/events/common/EventHeader.tsx +85 -85
  40. package/src/components/events/common/EventIcon.tsx +82 -82
  41. package/src/components/events/common/ProgressBar.tsx +64 -64
  42. package/src/components/events/common/index.ts +13 -13
  43. package/src/components/events/groups/CorrectEventGroup.tsx +183 -183
  44. package/src/components/events/groups/ValidateEventGroup.tsx +143 -143
  45. package/src/components/events/groups/index.ts +8 -8
  46. package/src/components/events/index.ts +16 -16
  47. package/src/components/events/utils/eventGrouper.tsx +116 -116
  48. package/src/components/events/utils/index.ts +1 -1
  49. package/src/components/index.ts +13 -13
  50. package/src/components/upload/AutoBeChatUploadBox.tsx +425 -425
  51. package/src/components/upload/AutoBeChatUploadSendButton.tsx +66 -66
  52. package/src/components/upload/AutoBeFileUploadBox.tsx +123 -123
  53. package/src/components/upload/AutoBeUploadConfig.ts +5 -5
  54. package/src/components/upload/AutoBeVoiceRecoderButton.tsx +100 -100
  55. package/src/components/upload/index.ts +5 -5
  56. package/src/constant/color.ts +28 -28
  57. package/src/context/AutoBeAgentContext.tsx +245 -245
  58. package/src/context/AutoBeAgentSessionList.tsx +58 -58
  59. package/src/context/SearchParamsContext.tsx +49 -49
  60. package/src/hooks/index.ts +3 -3
  61. package/src/hooks/useEscapeKey.ts +24 -24
  62. package/src/hooks/useIsomorphicLayoutEffect.ts +8 -8
  63. package/src/hooks/useMediaQuery.ts +73 -73
  64. package/src/hooks/useSessionStorage.ts +10 -10
  65. package/src/icons/Receipt.tsx +74 -74
  66. package/src/index.ts +9 -9
  67. package/src/strategy/AutoBeAgentSessionStorageStrategy.ts +127 -127
  68. package/src/structure/AutoBeListener.ts +373 -373
  69. package/src/structure/AutoBeListenerState.ts +53 -53
  70. package/src/structure/IAutoBeAgentSessionStorageStrategy.ts +87 -87
  71. package/src/structure/IAutoBeEventGroup.ts +6 -6
  72. package/src/structure/index.ts +4 -4
  73. package/src/types/config.ts +44 -44
  74. package/src/types/index.ts +1 -1
  75. package/src/utils/AutoBeFileUploader.ts +279 -279
  76. package/src/utils/AutoBeVoiceRecorder.ts +95 -95
  77. package/src/utils/__tests__/crypto.test.ts +286 -286
  78. package/src/utils/__tests__/storage.test.ts +229 -229
  79. package/src/utils/crypto.ts +95 -95
  80. package/src/utils/index.ts +6 -6
  81. package/src/utils/number.ts +17 -17
  82. package/src/utils/storage.ts +96 -96
  83. package/src/utils/time.ts +14 -14
  84. package/tsconfig.json +9 -9
  85. package/vitest.config.ts +15 -15
  86. package/README.md +0 -261
@@ -1,85 +1,85 @@
1
- import { ReactNode } from "react";
2
-
3
- import { formatTime } from "../../../utils/time";
4
- import { EventIcon, EventIconType } from "./EventIcon";
5
-
6
- export interface IEventHeaderProps {
7
- title: string;
8
- subtitle?: ReactNode;
9
- timestamp: string;
10
- iconType: EventIconType;
11
- step?: number;
12
- }
13
-
14
- /**
15
- * Common event header component Provides consistent header layout with icon,
16
- * title, and timestamp
17
- */
18
- export const EventHeader = (props: IEventHeaderProps) => {
19
- return (
20
- <div
21
- style={{
22
- display: "flex",
23
- alignItems: "center",
24
- justifyContent: "space-between",
25
- marginBottom: "1rem",
26
- }}
27
- >
28
- <div
29
- style={{
30
- display: "flex",
31
- alignItems: "center",
32
- gap: "0.75rem",
33
- }}
34
- >
35
- <EventIcon type={props.iconType} />
36
-
37
- <div>
38
- <h3
39
- style={{
40
- fontSize: "1.125rem",
41
- fontWeight: "600",
42
- color: "#1e293b",
43
- margin: 0,
44
- marginBottom: "0.25rem",
45
- }}
46
- >
47
- {props.title}
48
- </h3>
49
- {props.subtitle && (
50
- <div
51
- style={{
52
- fontSize: "0.75rem",
53
- color: "#64748b",
54
- }}
55
- >
56
- {props.subtitle}
57
- </div>
58
- )}
59
- {props.step !== undefined && (
60
- <div
61
- style={{
62
- fontSize: "0.75rem",
63
- color: "#64748b",
64
- }}
65
- >
66
- Step #{props.step}
67
- </div>
68
- )}
69
- </div>
70
- </div>
71
-
72
- <div
73
- style={{
74
- fontSize: "0.75rem",
75
- color: "#64748b",
76
- textAlign: "right",
77
- }}
78
- >
79
- {formatTime(props.timestamp)}
80
- </div>
81
- </div>
82
- );
83
- };
84
-
85
- export default EventHeader;
1
+ import { ReactNode } from "react";
2
+
3
+ import { formatTime } from "../../../utils/time";
4
+ import { EventIcon, EventIconType } from "./EventIcon";
5
+
6
+ export interface IEventHeaderProps {
7
+ title: string;
8
+ subtitle?: ReactNode;
9
+ timestamp: string;
10
+ iconType: EventIconType;
11
+ step?: number;
12
+ }
13
+
14
+ /**
15
+ * Common event header component Provides consistent header layout with icon,
16
+ * title, and timestamp
17
+ */
18
+ export const EventHeader = (props: IEventHeaderProps) => {
19
+ return (
20
+ <div
21
+ style={{
22
+ display: "flex",
23
+ alignItems: "center",
24
+ justifyContent: "space-between",
25
+ marginBottom: "1rem",
26
+ }}
27
+ >
28
+ <div
29
+ style={{
30
+ display: "flex",
31
+ alignItems: "center",
32
+ gap: "0.75rem",
33
+ }}
34
+ >
35
+ <EventIcon type={props.iconType} />
36
+
37
+ <div>
38
+ <h3
39
+ style={{
40
+ fontSize: "1.125rem",
41
+ fontWeight: "600",
42
+ color: "#1e293b",
43
+ margin: 0,
44
+ marginBottom: "0.25rem",
45
+ }}
46
+ >
47
+ {props.title}
48
+ </h3>
49
+ {props.subtitle && (
50
+ <div
51
+ style={{
52
+ fontSize: "0.75rem",
53
+ color: "#64748b",
54
+ }}
55
+ >
56
+ {props.subtitle}
57
+ </div>
58
+ )}
59
+ {props.step !== undefined && (
60
+ <div
61
+ style={{
62
+ fontSize: "0.75rem",
63
+ color: "#64748b",
64
+ }}
65
+ >
66
+ Step #{props.step}
67
+ </div>
68
+ )}
69
+ </div>
70
+ </div>
71
+
72
+ <div
73
+ style={{
74
+ fontSize: "0.75rem",
75
+ color: "#64748b",
76
+ textAlign: "right",
77
+ }}
78
+ >
79
+ {formatTime(props.timestamp)}
80
+ </div>
81
+ </div>
82
+ );
83
+ };
84
+
85
+ export default EventHeader;
@@ -1,82 +1,82 @@
1
- export type EventIconType =
2
- | "success"
3
- | "progress"
4
- | "warning"
5
- | "error"
6
- | "info"
7
- | "start";
8
-
9
- export interface IEventIconProps {
10
- type: EventIconType;
11
- size?: number;
12
- }
13
-
14
- const ICON_CONFIGS = {
15
- success: {
16
- backgroundColor: "#4caf50",
17
- icon: (
18
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" />
19
- ),
20
- },
21
- progress: {
22
- backgroundColor: "#4caf50",
23
- icon: (
24
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" />
25
- ),
26
- },
27
- warning: {
28
- backgroundColor: "#f59e0b",
29
- icon: <path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" />,
30
- },
31
- error: {
32
- backgroundColor: "#ef4444",
33
- icon: (
34
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.5 6L12 10.5 8.5 8 7 9.5 10.5 12 7 15.5 8.5 17 12 13.5 15.5 17 17 15.5 13.5 12 17 8.5 15.5 7z" />
35
- ),
36
- },
37
- info: {
38
- backgroundColor: "#3b82f6",
39
- icon: (
40
- <path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
41
- ),
42
- },
43
- start: {
44
- backgroundColor: "#10b981",
45
- icon: <path d="M8 5v14l11-7z" />,
46
- },
47
- } as const;
48
-
49
- /**
50
- * Common event icon component Provides consistent icon styling across all event
51
- * components
52
- */
53
- export const EventIcon = (props: IEventIconProps) => {
54
- const { type, size = 16 } = props;
55
- const config = ICON_CONFIGS[type];
56
-
57
- return (
58
- <div
59
- style={{
60
- width: "2rem",
61
- height: "2rem",
62
- backgroundColor: config.backgroundColor,
63
- borderRadius: "50%",
64
- display: "flex",
65
- alignItems: "center",
66
- justifyContent: "center",
67
- }}
68
- >
69
- <svg
70
- width={size}
71
- height={size}
72
- viewBox="0 0 24 24"
73
- fill="currentColor"
74
- style={{ color: "#ffffff" }}
75
- >
76
- {config.icon}
77
- </svg>
78
- </div>
79
- );
80
- };
81
-
82
- export default EventIcon;
1
+ export type EventIconType =
2
+ | "success"
3
+ | "progress"
4
+ | "warning"
5
+ | "error"
6
+ | "info"
7
+ | "start";
8
+
9
+ export interface IEventIconProps {
10
+ type: EventIconType;
11
+ size?: number;
12
+ }
13
+
14
+ const ICON_CONFIGS = {
15
+ success: {
16
+ backgroundColor: "#4caf50",
17
+ icon: (
18
+ <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" />
19
+ ),
20
+ },
21
+ progress: {
22
+ backgroundColor: "#4caf50",
23
+ icon: (
24
+ <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" />
25
+ ),
26
+ },
27
+ warning: {
28
+ backgroundColor: "#f59e0b",
29
+ icon: <path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" />,
30
+ },
31
+ error: {
32
+ backgroundColor: "#ef4444",
33
+ icon: (
34
+ <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.5 6L12 10.5 8.5 8 7 9.5 10.5 12 7 15.5 8.5 17 12 13.5 15.5 17 17 15.5 13.5 12 17 8.5 15.5 7z" />
35
+ ),
36
+ },
37
+ info: {
38
+ backgroundColor: "#3b82f6",
39
+ icon: (
40
+ <path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
41
+ ),
42
+ },
43
+ start: {
44
+ backgroundColor: "#10b981",
45
+ icon: <path d="M8 5v14l11-7z" />,
46
+ },
47
+ } as const;
48
+
49
+ /**
50
+ * Common event icon component Provides consistent icon styling across all event
51
+ * components
52
+ */
53
+ export const EventIcon = (props: IEventIconProps) => {
54
+ const { type, size = 16 } = props;
55
+ const config = ICON_CONFIGS[type];
56
+
57
+ return (
58
+ <div
59
+ style={{
60
+ width: "2rem",
61
+ height: "2rem",
62
+ backgroundColor: config.backgroundColor,
63
+ borderRadius: "50%",
64
+ display: "flex",
65
+ alignItems: "center",
66
+ justifyContent: "center",
67
+ }}
68
+ >
69
+ <svg
70
+ width={size}
71
+ height={size}
72
+ viewBox="0 0 24 24"
73
+ fill="currentColor"
74
+ style={{ color: "#ffffff" }}
75
+ >
76
+ {config.icon}
77
+ </svg>
78
+ </div>
79
+ );
80
+ };
81
+
82
+ export default EventIcon;
@@ -1,64 +1,64 @@
1
- export interface IProgressBarProps {
2
- current: number;
3
- total: number;
4
- color?: string;
5
- backgroundColor?: string;
6
- height?: string;
7
- showLabel?: boolean;
8
- }
9
-
10
- /**
11
- * Common progress bar component Provides consistent progress visualization
12
- * across event components
13
- */
14
- export const ProgressBar = (props: IProgressBarProps) => {
15
- const {
16
- current,
17
- total,
18
- color = "#4caf50",
19
- backgroundColor = "#e2e8f0",
20
- height = "10px",
21
- showLabel = true,
22
- } = props;
23
-
24
- const calibratedCurrent = current > total ? total : current;
25
- const percentage = Math.round((calibratedCurrent / total) * 100);
26
-
27
- return (
28
- <>
29
- <div
30
- style={{
31
- width: "100%",
32
- height,
33
- backgroundColor,
34
- borderRadius: "10px",
35
- overflow: "hidden",
36
- marginBottom: showLabel ? "0.5rem" : "0",
37
- }}
38
- >
39
- <div
40
- style={{
41
- width: `${percentage}%`,
42
- height: "100%",
43
- backgroundColor: color,
44
- borderRadius: "10px",
45
- transition: "width 0.3s ease",
46
- }}
47
- />
48
- </div>
49
- {showLabel && (
50
- <div
51
- style={{
52
- fontSize: "0.75rem",
53
- color: "#64748b",
54
- textAlign: "center",
55
- }}
56
- >
57
- {calibratedCurrent} / {total} completed
58
- </div>
59
- )}
60
- </>
61
- );
62
- };
63
-
64
- export default ProgressBar;
1
+ export interface IProgressBarProps {
2
+ current: number;
3
+ total: number;
4
+ color?: string;
5
+ backgroundColor?: string;
6
+ height?: string;
7
+ showLabel?: boolean;
8
+ }
9
+
10
+ /**
11
+ * Common progress bar component Provides consistent progress visualization
12
+ * across event components
13
+ */
14
+ export const ProgressBar = (props: IProgressBarProps) => {
15
+ const {
16
+ current,
17
+ total,
18
+ color = "#4caf50",
19
+ backgroundColor = "#e2e8f0",
20
+ height = "10px",
21
+ showLabel = true,
22
+ } = props;
23
+
24
+ const calibratedCurrent = current > total ? total : current;
25
+ const percentage = Math.round((calibratedCurrent / total) * 100);
26
+
27
+ return (
28
+ <>
29
+ <div
30
+ style={{
31
+ width: "100%",
32
+ height,
33
+ backgroundColor,
34
+ borderRadius: "10px",
35
+ overflow: "hidden",
36
+ marginBottom: showLabel ? "0.5rem" : "0",
37
+ }}
38
+ >
39
+ <div
40
+ style={{
41
+ width: `${percentage}%`,
42
+ height: "100%",
43
+ backgroundColor: color,
44
+ borderRadius: "10px",
45
+ transition: "width 0.3s ease",
46
+ }}
47
+ />
48
+ </div>
49
+ {showLabel && (
50
+ <div
51
+ style={{
52
+ fontSize: "0.75rem",
53
+ color: "#64748b",
54
+ textAlign: "center",
55
+ }}
56
+ >
57
+ {calibratedCurrent} / {total} completed
58
+ </div>
59
+ )}
60
+ </>
61
+ );
62
+ };
63
+
64
+ export default ProgressBar;
@@ -1,13 +1,13 @@
1
- export { EventCard, type IEventCardProps } from "./EventCard";
2
- export {
3
- EventIcon,
4
- type EventIconType,
5
- type IEventIconProps,
6
- } from "./EventIcon";
7
- export { EventHeader, type IEventHeaderProps } from "./EventHeader";
8
- export { EventContent, type IEventContentProps } from "./EventContent";
9
- export { ProgressBar, type IProgressBarProps } from "./ProgressBar";
10
- export {
11
- CollapsibleEventGroup,
12
- type ICollapsibleEventGroupProps,
13
- } from "./CollapsibleEventGroup";
1
+ export { EventCard, type IEventCardProps } from "./EventCard";
2
+ export {
3
+ EventIcon,
4
+ type EventIconType,
5
+ type IEventIconProps,
6
+ } from "./EventIcon";
7
+ export { EventHeader, type IEventHeaderProps } from "./EventHeader";
8
+ export { EventContent, type IEventContentProps } from "./EventContent";
9
+ export { ProgressBar, type IProgressBarProps } from "./ProgressBar";
10
+ export {
11
+ CollapsibleEventGroup,
12
+ type ICollapsibleEventGroupProps,
13
+ } from "./CollapsibleEventGroup";