import React, { useState, useEffect } from 'react'; interface Step { step_number: number; instruction: string; } interface AddBulkStepsProps { steps: Step[]; onChange?: (steps: Step[]) => void; } const AddBulkSteps: React.FC = ({ steps, onChange }) => { const [textValue, setTextValue] = useState(''); useEffect(() => { const textRepresentation = steps.map(step => `${step.instruction}` ).join('\n'); setTextValue(textRepresentation); }, [steps]); const handleInputChange = (e: React.ChangeEvent) => { setTextValue(e.target.value); }; const parseAndUpdate = (value: string) => { const lines = value.split('\n').filter(line => line.trim() !== ''); const parsedSteps: Step[] = lines.map((line, idx) => { return { step_number: idx + 1, instruction: line } }) if (onChange) onChange(parsedSteps); }; const handleKeyDown = (e: React.KeyboardEvent) => { if (e.key === 'Enter') { parseAndUpdate(textValue); } }; const handleBlur = () => { parseAndUpdate(textValue); }; return (

Steps: