formatting

This commit is contained in:
Tamius Han 2021-10-19 22:49:28 +02:00
parent 3846d1a926
commit 2df0b1a0fb

View File

@ -42,7 +42,7 @@ export default class UWContent {
'unmark-player': [() => this.pageInfo.unmarkPlayer()], 'unmark-player': [() => this.pageInfo.unmarkPlayer()],
'autoar-set-manual-tick': [(message) => this.pageInfo.setManualTick(message.arg)], 'autoar-set-manual-tick': [(message) => this.pageInfo.setManualTick(message.arg)],
'autoar-tick': [() => this.pageInfo.tick()], 'autoar-tick': [() => this.pageInfo.tick()],
'set-ar-persistence': [(message) => this.pageInfo.setArPersistence(message.arg)], 'set-ar-persistence': [(message) => this.pageInfo.setArPersistence(message.arg)],
} }
constructor(){ constructor(){
@ -62,11 +62,11 @@ export default class UWContent {
if (Debug.debug) { if (Debug.debug) {
console.log("[uw::main] loading configuration ..."); console.log("[uw::main] loading configuration ...");
} }
// logger init is the first thing that needs to run // logger init is the first thing that needs to run
try { try {
if (!this.logger) { if (!this.logger) {
this.logger = new Logger(); this.logger = new Logger();
await this.logger.init(baseLoggingOptions); await this.logger.init(baseLoggingOptions);
@ -85,6 +85,7 @@ export default class UWContent {
// second — let's add some globals // second — let's add some globals
if (! (window as any).ultrawidify) { if (! (window as any).ultrawidify) {
(window as any).ultrawidify = new UWGlobals(); (window as any).ultrawidify = new UWGlobals();
((window as any).ultrawidify as UWGlobals).importSubscriptionsFromCommsHandlers(this.commsHandlers);
} }
// init() is re-run any time settings change // init() is re-run any time settings change
@ -98,7 +99,7 @@ export default class UWContent {
}); });
await this.settings.init(); await this.settings.init();
} }
this.comms = new CommsClient('content-main-port', this.logger, this.commsHandlers); this.comms = new CommsClient('content-main-port', this.logger, this.commsHandlers);
// če smo razširitev onemogočili v nastavitvah, ne naredimo ničesar // če smo razširitev onemogočili v nastavitvah, ne naredimo ničesar
@ -116,7 +117,7 @@ export default class UWContent {
return; return;
} }
} }
try { try {
if (this.pageInfo) { if (this.pageInfo) {
this.logger.log('info', 'debug', '[uw.js::setup] An instance of pageInfo already exists and will be destroyed.'); this.logger.log('info', 'debug', '[uw.js::setup] An instance of pageInfo already exists and will be destroyed.');
@ -124,7 +125,7 @@ export default class UWContent {
} }
this.pageInfo = new PageInfo(this.comms, this.settings, this.logger, extensionMode, isSiteDisabled); this.pageInfo = new PageInfo(this.comms, this.settings, this.logger, extensionMode, isSiteDisabled);
this.logger.log('info', 'debug', "[uw.js::setup] pageInfo initialized."); this.logger.log('info', 'debug', "[uw.js::setup] pageInfo initialized.");
this.logger.log('info', 'debug', "[uw.js::setup] will try to initate ActionHandler."); this.logger.log('info', 'debug', "[uw.js::setup] will try to initate ActionHandler.");
// start action handler only if extension is enabled for this site // start action handler only if extension is enabled for this site
@ -134,7 +135,7 @@ export default class UWContent {
} }
this.actionHandler = new ActionHandler(this.pageInfo); this.actionHandler = new ActionHandler(this.pageInfo);
this.actionHandler.init(); this.actionHandler.init();
this.logger.log('info', 'debug', "[uw.js::setup] ActionHandler initiated."); this.logger.log('info', 'debug', "[uw.js::setup] ActionHandler initiated.");
} }