@autobe/ui 0.30.4-dev.20260324 → 0.30.5

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 (53) 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 +394 -394
  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/openai/OpenAIContent.tsx +53 -53
  21. package/src/components/common/openai/OpenAIUserAudioContent.tsx +70 -70
  22. package/src/components/common/openai/OpenAIUserFileContent.tsx +76 -76
  23. package/src/components/common/openai/OpenAIUserImageContent.tsx +34 -34
  24. package/src/components/common/openai/OpenAIUserTextContent.tsx +15 -15
  25. package/src/components/events/AutoBeCompleteEventMovie.tsx +402 -402
  26. package/src/components/events/AutoBeCorrectEventMovie.tsx +354 -354
  27. package/src/components/events/AutoBeEventGroupMovie.tsx +18 -18
  28. package/src/components/events/AutoBeEventMovie.tsx +154 -154
  29. package/src/components/events/AutoBeProgressEventMovie.tsx +207 -207
  30. package/src/components/events/AutoBeScenarioEventMovie.tsx +135 -135
  31. package/src/components/events/AutoBeStartEventMovie.tsx +82 -82
  32. package/src/components/events/AutoBeValidateEventMovie.tsx +249 -249
  33. package/src/components/events/README.md +300 -300
  34. package/src/components/events/common/CollapsibleEventGroup.tsx +211 -211
  35. package/src/components/events/common/EventCard.tsx +61 -61
  36. package/src/components/events/common/EventContent.tsx +31 -31
  37. package/src/components/events/common/EventHeader.tsx +85 -85
  38. package/src/components/events/common/EventIcon.tsx +82 -82
  39. package/src/components/events/common/ProgressBar.tsx +64 -64
  40. package/src/components/events/groups/CorrectEventGroup.tsx +183 -183
  41. package/src/components/events/groups/ValidateEventGroup.tsx +143 -143
  42. package/src/components/events/utils/eventGrouper.tsx +116 -116
  43. package/src/components/upload/AutoBeChatUploadBox.tsx +433 -433
  44. package/src/components/upload/AutoBeChatUploadSendButton.tsx +66 -66
  45. package/src/components/upload/AutoBeFileUploadBox.tsx +123 -123
  46. package/src/components/upload/AutoBeVoiceRecoderButton.tsx +100 -100
  47. package/src/context/AutoBeAgentContext.tsx +301 -301
  48. package/src/context/AutoBeAgentSessionList.tsx +58 -58
  49. package/src/context/SearchParamsContext.tsx +49 -49
  50. package/src/icons/Receipt.tsx +74 -74
  51. package/src/structure/AutoBeListener.ts +368 -368
  52. package/tsconfig.json +9 -9
  53. 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;