mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-17 05:18:52 +08:00
cd80bd7804
* Implement user cursor and selection tracking * Separate jump-to-user and follow
57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
/**
|
|
* A basic pub-sub implementation for client-side communication.
|
|
*/
|
|
export default class PubSub {
|
|
constructor() {
|
|
this.subscribersByTopic = {};
|
|
}
|
|
|
|
/**
|
|
* Links the given function to the given topic.
|
|
*
|
|
* Subsequent calls to `broadcast` with this topic
|
|
* will result in this function being called.
|
|
*
|
|
* Returns a function that unsubscribes
|
|
* as a shorthand for `unsubscribe`.
|
|
*/
|
|
subscribe(topic, callback) {
|
|
if (!Array.isArray(this.subscribersByTopic[topic])) {
|
|
this.subscribersByTopic[topic] = [];
|
|
}
|
|
|
|
this.subscribersByTopic[topic].push(callback);
|
|
|
|
return () => {
|
|
this.unsubscribe(topic, callback);
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Unlinks the given function from the given topic.
|
|
*
|
|
* Note that you must pass the same function reference
|
|
* as you passed to `subscribe`.
|
|
*/
|
|
unsubscribe(topic, callback) {
|
|
const idx = this.subscribersByTopic[topic].indexOf(callback);
|
|
|
|
if (idx !== -1) {
|
|
this.subscribersByTopic[topic].splice(idx, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Calls all functions linked to the given topic
|
|
* and passes `payload` as the argument.
|
|
*/
|
|
broadcast(topic, payload) {
|
|
if (Array.isArray(this.subscribersByTopic[topic])) {
|
|
this.subscribersByTopic[topic].forEach((callback) => {
|
|
callback(payload);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
export const globalPubSub = new PubSub();
|