import React from "react"; import { useSelector } from "react-redux"; import { RootState } from "#/store"; import { useScrollToBottom } from "#/hooks/use-scroll-to-bottom"; import { JupyterCell } from "./jupyter-cell"; import { ScrollToBottomButton } from "#/components/shared/buttons/scroll-to-bottom-button"; interface JupyterEditorProps { maxWidth: number; } export function JupyterEditor({ maxWidth }: JupyterEditorProps) { const cells = useSelector((state: RootState) => state.jupyter?.cells ?? []); const jupyterRef = React.useRef(null); const { hitBottom, scrollDomToBottom, onChatBodyScroll } = useScrollToBottom(jupyterRef); return (
onChatBodyScroll(e.currentTarget)} > {cells.map((cell, index) => ( ))}
{!hitBottom && (
)}
); }