Files
Remote-Terminal-for-MeshCore/frontend/src/components/BotCodeEditor.tsx
Jack Kingsman 01a5dc8d93 A11y bug bash
2026-03-05 10:24:22 -08:00

33 lines
841 B
TypeScript

import CodeMirror from '@uiw/react-codemirror';
import { python } from '@codemirror/lang-python';
import { oneDark } from '@codemirror/theme-one-dark';
interface BotCodeEditorProps {
value: string;
onChange: (value: string) => void;
id?: string;
height?: string;
}
export function BotCodeEditor({ value, onChange, id, height = '256px' }: BotCodeEditorProps) {
return (
<div className="w-full overflow-hidden rounded-md border border-input">
<CodeMirror
value={value}
onChange={onChange}
extensions={[python()]}
theme={oneDark}
height={height}
basicSetup={{
lineNumbers: true,
foldGutter: false,
highlightActiveLine: true,
}}
className="text-sm"
id={id}
aria-label="Bot code editor"
/>
</div>
);
}