Posted by l1am0 1 day ago
https://developer.mozilla.org/en-US/docs/Web/API/Broadcast_C...
subscribe(topic, callback) {
if (this.listeners[topic] == undefined) {
// Not yet any listener for this topic
this.listeners[topic] = [];
window.addEventListener('storage', (e) => {
const dataKey = topic + "_data";
if (e.key === dataKey) {
const data = JSON.parse(e.newValue)[0];
this.listeners[topic].forEach((v, k) => {
v(data);
});
}
}, false);
}
this.listeners[topic].push(callback)
}
This installs a handler for every single topic, and every time a message is published, the handlers for all topics are called, even though at most one is interested in the change. A more efficient implementation would install a single handler, e.g. (untested): window.addEventListener('storage', (e) => {
if (e.key.endsWith('_data')) {
const topic = e.key.substring(0, e.key.length - 5);
const data = JSON.parse(e.newValue)[0];
this.listeners[topic]?.forEach(v => v(data));
}
}, false);
Negotiating the communication between tabs was by far the hardest part. In the end I ended up using local storage for signaling to establish a dedicated messsageport channel.
It was such a fight to make something that re-established the connection when either page reloaded.
There are still some connection issues that I haven't been able to resolve. It seems some browsers on some systems reject messages between tabs if they were loaded hours apart.
It might be worth benchmarking a pure local storage fallback, but I'm guessing it would suffer with high traffic.
A generalised implementation that allowed switching multiple paint programs and multiple ComfyUi pages would be ideal. A PubSub might be the way to go.
There's also the issue of other parts of the app also using local storage. Need to not step on toes.
source: https://developer.mozilla.org/en-US/docs/Web/API/Web_Locks_A...
Show HN: JavaScript PubSub in 163 Bytes (31.03.2025)
How does the browser handle access control to the local storage, especially offline when they aren't loaded from the same site?
[Yes, I really don't know. Yes, I'm asking. Not everyone is a web dev.]
> As TabSub uses local store this only works on the same domain, as the browser separates the local storage by domains as security measure.
(More precisely, the separation is based on origin, which is roughly the combination of protocol, hostname, and port.)
The conclusion is this only works between tabs that have the same website open.
You can try on the demopage when you
1. play the songs each (for them to buffer a little audio snippet)
2. open the page in a second tab
3. Disconnect from the internt
Still works :D
(like me for your question, as I never tried TabSub with internet disconnected. Was delighted to see it works nevertheless)