Skip to content

hide specific tooltip #193

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,26 @@ Check the example [React-tooltip Test](http://wwayne.com/react-tooltip)
3. When using react component as tooltip, you can have many `<ReactTooltip />` in a page but they should have different **id**

## Static Methods
**ReactTooltip.hide()**: Hide the tooltip manually
###ReactTooltip.hide(target)

**ReactTooltip.rebuild()**: Rebinding tooltip to the corresponding elements
> Hide the tooltip manually, the target is optional, if no target passed in, all exitent tooltip will be hiden

**ReactTooltip.show(target)**: Show specific tooltip manually, for example:
```js
import {findDOMNode} from 'react-dom'
import ReactTooltip from 'react-tooltip'

<p ref='foo' data-tip='tooltip'></p>
<button onClick={() => { ReactTooltip.hide(findDOMNode(this.refs.foo)) }}></button>
<ReactTooltip />
```

###ReactTooltip.rebuild()

> Rebinding all tooltips

###ReactTooltip.show(target)

> Show specific tooltip manually, for example:

```js
import {findDOMNode} from 'react-dom'
Expand Down
10 changes: 8 additions & 2 deletions example/src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

import React from 'react'
import {render} from 'react-dom'
import {render, findDOMNode} from 'react-dom'
import ReactTooltip from '../../src'

const Test = React.createClass({
Expand Down Expand Up @@ -153,8 +153,14 @@ const Test = React.createClass({
<ReactTooltip id='custom-event' globalEventOff='click' />
</div>
<div className="side">
<a data-for='custom-off-event' data-tip='custom show and hide' data-event='click' data-event-off='dblclick'>( •̀д•́)</a>
<a data-for='custom-off-event' ref='target' data-tip='custom show and hide' data-event='click' data-event-off='dblclick'>( •̀д•́)</a>
<ReactTooltip id='custom-off-event'/>
{/*
<div>
<button onClick={() => { ReactTooltip.show(findDOMNode(this.refs.target)) }}>Show toolip</button>
<button onClick={() => { ReactTooltip.hide(findDOMNode(this.refs.target)) }}>Hide toolip</button>
</div>
*/}
</div>
</div>
<br />
Expand Down
11 changes: 9 additions & 2 deletions src/decorators/staticMethods.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export default function (target) {
* Hide all tooltip
* @trigger ReactTooltip.hide()
*/
target.hide = () => {
dispatchGlobalEvent(CONSTANT.GLOBAL.HIDE)
target.hide = (target) => {
dispatchGlobalEvent(CONSTANT.GLOBAL.HIDE, {target})
}

/**
Expand Down Expand Up @@ -58,4 +58,11 @@ export default function (target) {
this.showTooltip(e, true)
}
}

target.prototype.globalHide = function (event) {
if (this.mount) {
const hasTarget = event && event.detail && event.detail.target && true || false
this.hideTooltip({ currentTarget: hasTarget && event.detail.target }, hasTarget)
}
}
}
6 changes: 3 additions & 3 deletions src/decorators/windowListener.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import CONSTANT from '../constant'
export default function (target) {
target.prototype.bindWindowEvents = function () {
// ReactTooltip.hide
window.removeEventListener(CONSTANT.GLOBAL.HIDE, this.hideTooltip)
window.addEventListener(CONSTANT.GLOBAL.HIDE, this.hideTooltip, false)
window.removeEventListener(CONSTANT.GLOBAL.HIDE, this.globalHide)
window.addEventListener(CONSTANT.GLOBAL.HIDE, this.globalHide, false)

// ReactTooltip.rebuild
window.removeEventListener(CONSTANT.GLOBAL.REBUILD, this.globalRebuild)
Expand All @@ -23,7 +23,7 @@ export default function (target) {
}

target.prototype.unbindWindowEvents = function () {
window.removeEventListener(CONSTANT.GLOBAL.HIDE, this.hideTooltip)
window.removeEventListener(CONSTANT.GLOBAL.HIDE, this.globalHide)
window.removeEventListener(CONSTANT.GLOBAL.REBUILD, this.globalRebuild)
window.removeEventListener(CONSTANT.GLOBAL.SHOW, this.globalShow)
window.removeEventListener('resize', this.onWindowResize)
Expand Down
13 changes: 9 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ class ReactTooltip extends Component {
'hideTooltip',
'globalRebuild',
'globalShow',
'globalHide',
'onWindowResize'
])

Expand Down Expand Up @@ -313,12 +314,16 @@ class ReactTooltip extends Component {
/**
* When mouse leave, hide tooltip
*/
hideTooltip () {
hideTooltip (e, hasTarget) {
if (!this.mount) return
if (hasTarget) {
// Don't trigger other elements belongs to other ReactTooltip
const targetArray = this.getTargetArray(this.props.id)
const isMyElement = targetArray.some(ele => ele === e.currentTarget)
if (!isMyElement || !this.state.show) return
}
const {delayHide} = this.state
const {afterHide} = this.props

if (!this.mount) return

const resetState = () => {
const isVisible = this.state.show
this.setState({
Expand Down