summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/TimelineItem.tsx
blob: 78568890d9555aff6f08570c19efd83e70df2407 (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
import React from "react";
import { lightGray, secondaryDark, vscBackground } from ".";
import styled from "styled-components";
import { ChatBubbleOvalLeftIcon, PlusIcon } from "@heroicons/react/24/outline";

const CollapseButton = styled.div`
  background-color: ${vscBackground};
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
  margin-left: 5px;
  cursor: pointer;
`;

const CollapsedDiv = styled.div`
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  min-height: 16px;
`;

interface TimelineItemProps {
  historyNode: any;
  open: boolean;
  onToggle: () => void;
  children: any;
  iconElement?: any;
}

function TimelineItem(props: TimelineItemProps) {
  return props.open ? (
    props.children
  ) : (
    <CollapsedDiv>
      <CollapseButton
        onClick={() => {
          props.onToggle();
        }}
      >
        {props.iconElement || (
          <ChatBubbleOvalLeftIcon width="16px" height="16px" />
        )}
      </CollapseButton>
      <span style={{ color: lightGray }}>
        {props.historyNode.observation?.error
          ? props.historyNode.observation?.title
          : props.historyNode.step.name}
      </span>
    </CollapsedDiv>
  );
}

export default TimelineItem;