import { useCallback, useEffect, useRef, useState } from "react"; import styled, { keyframes } from "styled-components"; import { appear, defaultBorderRadius, secondaryDark, vscBackground, vscBackgroundTransparent, } from "."; import { ChevronDown, ChevronRight, XMark, ArrowPath, } from "@styled-icons/heroicons-outline"; import { HistoryNode } from "../../../schema/HistoryNode"; import ReactMarkdown from "react-markdown"; import HeaderButtonWithText from "./HeaderButtonWithText"; import CodeBlock from "./CodeBlock"; interface StepContainerProps { historyNode: HistoryNode; onReverse: () => void; inFuture: boolean; onRefinement: (input: string) => void; onUserInput: (input: string) => void; onRetry: () => void; onDelete: () => void; open: boolean; onToggleAll: () => void; onToggle: () => void; isFirst: boolean; isLast: boolean; } const MainDiv = styled.div<{ stepDepth: number; inFuture: boolean }>` opacity: ${(props) => (props.inFuture ? 0.3 : 1)}; animation: ${appear} 0.3s ease-in-out; /* padding-left: ${(props) => props.stepDepth * 20}px; */ overflow: hidden; margin-left: 0px; margin-right: 0px; `; const StepContainerDiv = styled.div<{ open: boolean }>` /* background-color: ${(props) => props.open ? vscBackground : secondaryDark}; */ /* border-radius: ${defaultBorderRadius}; */ /* padding: 8px; */ `; const HeaderDiv = styled.div<{ error: boolean; loading: boolean }>` background-color: ${(props) => props.error ? "#522" : props.loading ? vscBackgroundTransparent : vscBackground}; display: grid; grid-template-columns: 1fr auto auto; grid-gap: 8px; align-items: center; padding-right: 8px; `; const ContentDiv = styled.div` padding: 8px; padding-left: 16px; `; const MarkdownPre = styled.pre` background-color: ${secondaryDark}; padding: 10px; border-radius: ${defaultBorderRadius}; border: 0.5px solid white; `; const StyledCode = styled.code` word-wrap: break-word; color: lightgray; `; const gradient = keyframes` 0% { background-position: 0px 0; } 100% { background-position: 100em 0; } `; const GradientBorder = styled.div<{ borderWidth?: number; borderRadius?: string; borderColor?: string; isFirst: boolean; isLast: boolean; loading: boolean; }>` border-radius: ${(props) => props.borderRadius || "0"}; padding-top: ${(props) => `${(props.borderWidth || 1) / (props.isFirst ? 1 : 2)}px`}; padding-bottom: ${(props) => `${(props.borderWidth || 1) / (props.isLast ? 1 : 2)}px`}; background: ${(props) => props.borderColor ? props.borderColor : `repeating-linear-gradient( 101.79deg, #12887a 0%, #87245c 16%, #e12637 33%, #ffb215 55%, #e12637 67%, #87245c 85%, #12887a 99% )`}; animation: ${(props) => (props.loading ? gradient : "")} 6s linear infinite; background-size: 200% 200%; `; function StepContainer(props: StepContainerProps) { const [isHovered, setIsHovered] = useState(false); const naturalLanguageInputRef = useRef(null); const userInputRef = useRef(null); useEffect(() => { if (userInputRef?.current) { userInputRef.current.focus(); } }, [userInputRef]); useEffect(() => { if (isHovered) { naturalLanguageInputRef.current?.focus(); } }, [isHovered]); const onTextInput = useCallback(() => { if (naturalLanguageInputRef.current) { props.onRefinement(naturalLanguageInputRef.current.value); naturalLanguageInputRef.current.value = ""; } }, [naturalLanguageInputRef]); return ( { setIsHovered(true); }} onMouseLeave={() => { setIsHovered(false); }} hidden={props.historyNode.step.hide as any} > { if (e.metaKey) { props.onToggleAll(); } else { props.onToggle(); } }} >

{props.open ? ( ) : ( )} {props.historyNode.observation?.title || (props.historyNode.step.name as any)}

{/* { e.stopPropagation(); props.onReverse(); }} > */} <> { e.stopPropagation(); props.onDelete(); }} text="Delete" > {props.historyNode.observation?.error ? ( { e.stopPropagation(); props.onRetry(); }} > ) : ( <> )}
); } export default StepContainer;