diff options
Diffstat (limited to 'frontend/views/graph/components/graph.editor.js')
| -rw-r--r-- | frontend/views/graph/components/graph.editor.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/views/graph/components/graph.editor.js b/frontend/views/graph/components/graph.editor.js index 99c5665..a5c7c45 100644 --- a/frontend/views/graph/components/graph.editor.js +++ b/frontend/views/graph/components/graph.editor.js @@ -38,6 +38,8 @@ class GraphEditor extends Component { this.handleMouseMove = this.handleMouseMove.bind(this) this.handleMouseUp = this.handleMouseUp.bind(this) this.handleWindowResize = this.handleWindowResize.bind(this) + this.handleMouseEnter = this.handleMouseEnter.bind(this) + this.handleMouseLeave = this.handleMouseLeave.bind(this) this.graphRef = React.createRef() this.measurements = {} } @@ -158,6 +160,11 @@ class GraphEditor extends Component { actions.page.update(updatedPage) } + handleMouseEnter(e, page) { + } + handleMouseLeave(e, page) { + } + render(){ // console.log(this.props.graph.show.res) const { page: currentPage, box, measurements } = this.state @@ -180,6 +187,8 @@ class GraphEditor extends Component { bounds={this.state.bounds} box={currentPage && page.id === currentPage.id && box} onMouseDown={e => this.handleMouseDown(e, page)} + onMouseEnter={e => this.handleMouseEnter(e, page)} + onMouseLeave={e => this.handleMouseLeave(e, page)} onMeasure={measurement => this.addMeasurement(measurement)} /> ))} |
