this.handleContextMenu(e)} />
)
if (this.props.mini_zones){
// Select zone handles selection events only
// We use onClick to capture touch as well as mouse events in one tidy parcel
track_actions.push(
{this.props.selected ? : null}
)
if (this.props.can_sort){
track_actions.push(
)
}
}
return (
this.handleMouseEnter(e)}
onMouseLeave={e => this.handleMouseLeave(e)}
onMouseDown={e => this.handleMouseDown(e)}
onMouseUp={e => this.handleMouseUp(e)}
onMouseMove={e => this.handleMouseMove(e)}
onDoubleClick={e => this.handleDoubleClick(e)}
onContextMenu={e => this.handleContextMenu(e)}
onTouchStart={e => this.handleTouchStart(e)}
onTouchEnd={e => this.handleTouchEnd(e)}>
{track_actions}
{track_columns}
);
}
}