UNPKG

generator-bingo-dig-h5

Version:

Bingo-dig-h5 generator by BINGO.DIG

36 lines (27 loc) 873 B
var Events = require('../utils/events'); var Dom = require('../utils/dom'); module.exports = { //When the component mounts, listen to click events and check if we need to //Call the componentClickAway function. componentDidMount: function() { if (!this.manuallyBindClickAway) this._bindClickAway(); }, componentWillUnmount: function() { this._unbindClickAway(); }, _checkClickAway: function(e) { var el = this.getDOMNode(); // Check if the target is inside the current component if (this.isMounted() && e.target != el && !Dom.isDescendant(el, e.target)) { if (this.componentClickAway) this.componentClickAway(); } }, _bindClickAway: function() { Events.on(document, 'click', this._checkClickAway); }, _unbindClickAway: function() { Events.off(document, 'click', this._checkClickAway); } };