1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2025-01-24 02:20:39 +00:00

57 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-08-17 00:30:59 +02:00
/*
2021-02-04 23:04:35 +01:00
* Copyright (c) 2010-2021 Tim Düsterhus.
2018-08-17 00:30:59 +02:00
*
* Use of this software is governed by the Business Source License
* included in the LICENSE file.
*
2023-02-22 17:45:50 +01:00
* Change Date: 2027-02-22
2018-08-17 00:30:59 +02:00
*
* On the date above, in accordance with the Business Source
* License, use of this software will be governed by version 2
* or later of the General Public License.
*/
2020-11-01 17:41:19 +01:00
define([], function () {
'use strict'
2018-08-17 00:30:59 +02:00
const listeners = new WeakMap()
const EventEmitter = function (target) {
Object.assign(target, {
2020-11-01 17:41:19 +01:00
on(type, listener, options = {}) {
2018-08-17 00:30:59 +02:00
if (!listeners.has(this)) {
listeners.set(this, new Map())
}
if (!listeners.get(this).has(type)) {
listeners.get(this).set(type, new Set())
}
if (!options.once) options.once = false
listeners.get(this).get(type).add({ listener, options })
},
off(type, listener) {
listeners.get(this).get(type).delete(listener)
},
2020-11-01 17:41:19 +01:00
emit(type, detail = {}) {
2018-08-17 00:30:59 +02:00
if (!listeners.has(this)) return
if (!listeners.get(this).has(type)) return
const set = listeners.get(this).get(type)
2020-11-01 17:41:19 +01:00
set.forEach(
function ({ listener, options }) {
if (options.once) {
set.delete(listener)
}
2018-08-17 00:30:59 +02:00
2020-11-01 17:41:19 +01:00
listener({ target: this, detail })
}.bind(this)
)
},
2018-08-17 00:30:59 +02:00
})
}
return EventEmitter
2020-11-01 17:41:19 +01:00
})