diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-03 22:18:14 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-03 22:18:14 -0700 |
commit | af3ce820326e632d2cbb4f1880024046c8aa00cb (patch) | |
tree | 9ff70c1ce76e111714f0e8fd747e1339abb17f6d /extension/react-app/src/components/StepContainer.tsx | |
parent | 227c0635cf324ff212200fe38835b8015a3635bd (diff) | |
download | sncontinue-af3ce820326e632d2cbb4f1880024046c8aa00cb.tar.gz sncontinue-af3ce820326e632d2cbb4f1880024046c8aa00cb.tar.bz2 sncontinue-af3ce820326e632d2cbb4f1880024046c8aa00cb.zip |
slash commands and better designed user input box
Diffstat (limited to 'extension/react-app/src/components/StepContainer.tsx')
-rw-r--r-- | extension/react-app/src/components/StepContainer.tsx | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/extension/react-app/src/components/StepContainer.tsx b/extension/react-app/src/components/StepContainer.tsx index cb83f20a..ab0d307f 100644 --- a/extension/react-app/src/components/StepContainer.tsx +++ b/extension/react-app/src/components/StepContainer.tsx @@ -22,7 +22,6 @@ interface StepContainerProps { historyNode: HistoryNode; onReverse: () => void; inFuture: boolean; - onRefinement: (input: string) => void; onUserInput: (input: string) => void; onRetry: () => void; onDelete: () => void; @@ -33,6 +32,8 @@ interface StepContainerProps { isLast: boolean; } +// #region styled components + const MainDiv = styled.div<{ stepDepth: number; inFuture: boolean }>` opacity: ${(props) => (props.inFuture ? 0.3 : 1)}; animation: ${appear} 0.3s ease-in-out; @@ -63,9 +64,12 @@ const HeaderDiv = styled.div<{ error: boolean; loading: boolean }>` padding-right: 8px; `; -const ContentDiv = styled.div` +const ContentDiv = styled.div<{ isUserInput: boolean }>` padding: 8px; padding-left: 16px; + background-color: ${(props) => + props.isUserInput ? secondaryDark : vscBackground}; + font-size: 13px; `; const MarkdownPre = styled.pre` @@ -119,10 +123,13 @@ const GradientBorder = styled.div<{ background-size: 200% 200%; `; +// #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) { @@ -136,13 +143,6 @@ function StepContainer(props: StepContainerProps) { } }, [isHovered]); - const onTextInput = useCallback(() => { - if (naturalLanguageInputRef.current) { - props.onRefinement(naturalLanguageInputRef.current.value); - naturalLanguageInputRef.current.value = ""; - } - }, [naturalLanguageInputRef]); - return ( <MainDiv stepDepth={(props.historyNode.depth as any) || 0} @@ -181,11 +181,12 @@ function StepContainer(props: StepContainerProps) { error={props.historyNode.observation?.error ? true : false} > <h4 className="m-2"> - {props.open ? ( - <ChevronDown size="1.4em" /> - ) : ( - <ChevronRight size="1.4em" /> - )} + {!isUserInput && + (props.open ? ( + <ChevronDown size="1.4em" /> + ) : ( + <ChevronRight size="1.4em" /> + ))} {props.historyNode.observation?.title || (props.historyNode.step.name as any)} </h4> @@ -225,7 +226,7 @@ function StepContainer(props: StepContainerProps) { </> </HeaderDiv> </GradientBorder> - <ContentDiv hidden={!props.open}> + <ContentDiv hidden={!props.open} isUserInput={isUserInput}> {props.open && false && ( <> <pre className="overflow-x-scroll"> |