import * as React from "react"; import { stepPut } from "./actions"; import { SequenceBodyItem as Step } from "farmbot"; import { DataXferIntent, StepDraggerProps } from "./interfaces"; /** Magic number to indicate that the draggerId was not provided or can't be * known. */ export const NULL_DRAGGER_ID = 0xCAFEF00D; /** This is an event handler that: * Puts the step into the Redux store (and the drag event's dataTransfer) * so that it can be pulled up when the "drop" event happens. * * Example usage: * * * */ export const stepDragEventHandler = (dispatch: Function, step: Step, intent: DataXferIntent, draggerId: number) => { return (ev: React.DragEvent) => { dispatch(stepPut(step, ev, intent, draggerId)); }; }; export function StepDragger({ dispatch, step, children, intent, draggerId }: StepDraggerProps) { return
{children}
; }