ahooks
Version:
react hooks library
60 lines (59 loc) • 1.66 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.EventEmitter = void 0;
exports["default"] = useEventEmitter;
var _tslib = require("tslib");
var _react = require("react");
var EventEmitter = /** @class */function () {
function EventEmitter() {
var _this = this;
this.subscriptions = new Set();
this.emit = function (val) {
var e_1, _a;
try {
for (var _b = (0, _tslib.__values)(_this.subscriptions), _c = _b.next(); !_c.done; _c = _b.next()) {
var subscription = _c.value;
subscription(val);
}
} catch (e_1_1) {
e_1 = {
error: e_1_1
};
} finally {
try {
if (_c && !_c.done && (_a = _b["return"])) _a.call(_b);
} finally {
if (e_1) throw e_1.error;
}
}
};
this.useSubscription = function (callback) {
// eslint-disable-next-line react-hooks/rules-of-hooks
var callbackRef = (0, _react.useRef)();
callbackRef.current = callback;
// eslint-disable-next-line react-hooks/rules-of-hooks
(0, _react.useEffect)(function () {
function subscription(val) {
if (callbackRef.current) {
callbackRef.current(val);
}
}
_this.subscriptions.add(subscription);
return function () {
_this.subscriptions["delete"](subscription);
};
}, []);
};
}
return EventEmitter;
}();
exports.EventEmitter = EventEmitter;
function useEventEmitter() {
var ref = (0, _react.useRef)();
if (!ref.current) {
ref.current = new EventEmitter();
}
return ref.current;
}
;