File size: 1,640 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import Markdown from "react-markdown";
import SyntaxHighlighter from "react-syntax-highlighter";
import { atomOneDark } from "react-syntax-highlighter/dist/esm/styles/hljs";
import { useTranslation } from "react-i18next";
import { I18nKey } from "#/i18n/declaration";
import { JupyterLine } from "#/utils/parse-cell-content";

interface JupyterCellOutputProps {
  lines: JupyterLine[];
}

export function JupyterCellOutput({ lines }: JupyterCellOutputProps) {
  const { t } = useTranslation();
  return (
    <div className="rounded-lg bg-gray-800 dark:bg-gray-900 p-2 text-xs">

      <div className="mb-1 text-gray-400">

        {t(I18nKey.JUPYTER$OUTPUT_LABEL)}

      </div>

      <pre

        className="scrollbar-custom scrollbar-thumb-gray-500 hover:scrollbar-thumb-gray-400 dark:scrollbar-thumb-white/10 dark:hover:scrollbar-thumb-white/20 overflow-auto px-5 max-h-[60vh] bg-gray-800"

        style={{ padding: 0, marginBottom: 0, fontSize: "0.75rem" }}

      >

        {/* display the lines as plaintext or image */}

        {lines.map((line, index) => {

          if (line.type === "image") {

            return (

              <div key={index}>

                <Markdown urlTransform={(value: string) => value}>

                  {line.content}

                </Markdown>

              </div>

            );

          }

          return (

            <div key={index}>

              <SyntaxHighlighter language="plaintext" style={atomOneDark}>

                {line.content}

              </SyntaxHighlighter>

            </div>

          );

        })}

      </pre>

    </div>
  );
}