blob: e7264c5de389bcc3c0d5768d2436642be998c3d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
import { useEffect, useRef, useState } from "react";
import styled from "styled-components";
import { defaultBorderRadius, secondaryDark, vscBackground } from ".";
import { ArrowPathIcon, XMarkIcon } from "@heroicons/react/24/outline";
import { HistoryNode } from "../../../schema/HistoryNode";
import HeaderButtonWithText from "./HeaderButtonWithText";
import StyledMarkdownPreview from "./StyledMarkdownPreview";
import { getFontSize } from "../util";
interface StepContainerProps {
historyNode: HistoryNode;
onReverse: () => void;
inFuture: boolean;
onUserInput: (input: string) => void;
onRetry: () => void;
onDelete: () => void;
open: boolean;
isFirst: boolean;
isLast: boolean;
index: number;
noUserInputParent: boolean;
}
// #region styled components
const MainDiv = styled.div<{
stepDepth: number;
inFuture: boolean;
}>``;
const ButtonsDiv = styled.div`
display: flex;
gap: 2px;
align-items: center;
background-color: ${vscBackground};
box-shadow: 1px 1px 10px ${vscBackground};
border-radius: ${defaultBorderRadius};
position: absolute;
right: 0;
top: 0;
height: 0;
`;
const ContentDiv = styled.div<{ isUserInput: boolean; fontSize?: number }>`
padding: 2px;
padding-right: 0px;
background-color: ${(props) =>
props.isUserInput ? secondaryDark : vscBackground};
font-size: ${(props) => props.fontSize || getFontSize()}px;
border-radius: ${defaultBorderRadius};
overflow: hidden;
`;
// #endregion
function StepContainer(props: StepContainerProps) {
const [isHovered, setIsHovered] = useState(false);
const naturalLanguageInputRef = useRef<HTMLTextAreaElement>(null);
const userInputRef = useRef<HTMLInputElement>(null);
const isUserInput = props.historyNode.step.name === "UserInputStep";
useEffect(() => {
if (userInputRef?.current) {
userInputRef.current.focus();
}
}, [userInputRef]);
useEffect(() => {
if (isHovered) {
naturalLanguageInputRef.current?.focus();
}
}, [isHovered]);
return (
<MainDiv
stepDepth={(props.historyNode.depth as any) || 0}
inFuture={props.inFuture}
onMouseEnter={() => {
setIsHovered(true);
}}
onMouseLeave={() => {
setIsHovered(false);
}}
hidden={props.historyNode.step.hide as any}
>
<div>
{isHovered &&
(props.historyNode.observation?.error || props.noUserInputParent) && (
<ButtonsDiv>
{props.historyNode.observation?.error &&
((
<HeaderButtonWithText
text="Retry"
onClick={(e) => {
e.stopPropagation();
props.onRetry();
}}
>
<ArrowPathIcon
width="1.4em"
height="1.4em"
onClick={props.onRetry}
/>
</HeaderButtonWithText>
) as any)}
{props.noUserInputParent && (
<HeaderButtonWithText
text="Delete"
onClick={(e) => {
e.stopPropagation();
props.onDelete();
}}
>
<XMarkIcon
width="1.4em"
height="1.4em"
onClick={props.onRetry}
/>
</HeaderButtonWithText>
)}
</ButtonsDiv>
)}
<ContentDiv
hidden={!props.open}
isUserInput={isUserInput}
fontSize={getFontSize()}
>
<StyledMarkdownPreview
fontSize={getFontSize()}
source={props.historyNode.step.description || ""}
wrapperElement={{
"data-color-mode": "dark",
}}
/>
</ContentDiv>
</div>
</MainDiv>
);
}
export default StepContainer;
|