Fixed logout/re-login leading to multiple event listeners
This commit is contained in:
parent
a020e71ad4
commit
fe9180b789
|
@ -45,6 +45,7 @@
|
||||||
import Logs from './Logs.vue';
|
import Logs from './Logs.vue';
|
||||||
import {init as profileApiInit} from './profile_api';
|
import {init as profileApiInit} from './profile_api';
|
||||||
import { AdManager } from './ads/ad-manager';
|
import { AdManager } from './ads/ad-manager';
|
||||||
|
import { EventBus } from './preview/event-bus';
|
||||||
|
|
||||||
type BBCodeNode = Node & {bbcodeTag?: string, bbcodeParam?: string};
|
type BBCodeNode = Node & {bbcodeTag?: string, bbcodeParam?: string};
|
||||||
|
|
||||||
|
@ -139,9 +140,11 @@
|
||||||
|
|
||||||
AdManager.onConnectionClosed();
|
AdManager.onConnectionClosed();
|
||||||
core.adCoordinator.clear();
|
core.adCoordinator.clear();
|
||||||
|
EventBus.clear();
|
||||||
|
|
||||||
// tslint:disable-next-line:no-floating-promises
|
// tslint:disable-next-line:no-floating-promises
|
||||||
core.siteSession.onConnectionClosed();
|
core.siteSession.onConnectionClosed();
|
||||||
|
core.cache.stop();
|
||||||
|
|
||||||
document.title = l('title');
|
document.title = l('title');
|
||||||
});
|
});
|
||||||
|
@ -178,6 +181,7 @@
|
||||||
|
|
||||||
// tslint:disable-next-line:no-floating-promises
|
// tslint:disable-next-line:no-floating-promises
|
||||||
core.siteSession.onConnectionEstablished();
|
core.siteSession.onConnectionEstablished();
|
||||||
|
core.cache.start((core.state as any).generalSettings, true);
|
||||||
});
|
});
|
||||||
core.watch(() => core.conversations.hasNew, (hasNew) => {
|
core.watch(() => core.conversations.hasNew, (hasNew) => {
|
||||||
document.title = (hasNew ? '💬 ' : '') + l(core.connection.isOpen ? 'title.connected' : 'title', core.connection.character);
|
document.title = (hasNew ? '💬 ' : '') + l(core.connection.isOpen ? 'title.connected' : 'title', core.connection.character);
|
||||||
|
|
|
@ -77,6 +77,11 @@ class EventBusManager {
|
||||||
$emit(eventName: string, eventData: EventBusEvent): void {
|
$emit(eventName: string, eventData: EventBusEvent): void {
|
||||||
_.each(this.eventCallbacks[eventName] || [], (cb) => (cb(eventData)));
|
_.each(this.eventCallbacks[eventName] || [], (cb) => (cb(eventData)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
clear(): void {
|
||||||
|
this.eventCallbacks = {};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const EventBus = new EventBusManager();
|
export const EventBus = new EventBusManager();
|
||||||
|
|
|
@ -64,7 +64,7 @@ export class ImageDomMutator {
|
||||||
mutator = this.hostMutators['default'];
|
mutator = this.hostMutators['default'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mutator.eventName !== eventName)
|
if ((!mutator) || (mutator.eventName !== eventName))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// console.log(`Mutator match: ${mutator.match}`, (mutator === this.hostMutators['default']), url);
|
// console.log(`Mutator match: ${mutator.match}`, (mutator === this.hostMutators['default']), url);
|
||||||
|
|
Loading…
Reference in New Issue