Skip to content

Commit 28e770a

Browse files
committedJul 5, 2022
Fixed on asterisk
1 parent 4e455af commit 28e770a

File tree

3 files changed

+38
-16
lines changed

3 files changed

+38
-16
lines changed
 

‎src/components/types.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ export type ParserResult = {
44
aliases: string[];
55
url: string;
66
articles: Article[];
7-
};
7+
};
8+
9+
export type CallbackVoid = (...args: any[]) => void;

‎src/modules/events.ts

+23-8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import Grid from "./grid/index";
77
import Config from "../components/config";
88
import {ConfigOptions} from "../middleware/ConfigOptions";
99
import Source from "../components/source";
10+
import {CallbackVoid} from "../components/types";
1011

1112
export default class Events {
1213

@@ -108,29 +109,43 @@ export default class Events {
108109
Logger(LoggerTypes.INFO, `${chalk.red('Parsers')} - failed to scrape the articles.`);
109110
console.log(e);
110111
});
112+
113+
this.getAntennae().on("middleware.error", (mid: string, e: any) => {
114+
Logger(LoggerTypes.INFO, `${chalk.red('Middleware')} - an error was caught at ${mid}.`);
115+
console.log(e);
116+
});
111117
}
112118

113119
}
114120
}
115121

116122
class Antennae {
117-
private _callbacks: any = {};
123+
private _callbacks: { [event: string]: CallbackVoid[] } = {};
124+
private _allCallbacks: CallbackVoid[] = [];
125+
126+
public on(eventName: string, callback: CallbackVoid): void {
127+
if (eventName.length === 0) throw Error("You cannot create an event for nothing!");
128+
129+
if(eventName === "*") {
130+
this._allCallbacks.push(callback);
131+
return;
132+
}
118133

119-
public on(eventName: string, callback: (...args: any[]) => void): void {
120-
if (eventName.length === 0) throw Error("You cannot create an event for nothing!")
134+
if (!this._callbacks[eventName])
135+
this._callbacks[eventName] = [];
121136

122-
if (!this._callbacks[eventName]) this._callbacks[eventName] = [];
123-
this._callbacks[eventName].push(callback)
137+
this._callbacks[eventName].push(callback);
124138
}
125139

126140
public emit(eventName: string, ...args: any[]): void {
127141
if (!this._callbacks[eventName]) return;
128142

129143
Grid.getInstance().emit(eventName, ...args);
130144

131-
this._callbacks[eventName].forEach((callback: any) => callback(...args));
145+
// Call all callbacks
146+
this._allCallbacks.forEach(callback => callback(eventName, ...args));
132147

133-
if (this._callbacks['*'])
134-
this._callbacks["*"].forEach((callback: any) => callback(...args));
148+
// Call specified callback
149+
this._callbacks[eventName].forEach(callback => callback(...args));
135150
}
136151
}

‎src/modules/grid/index.ts

+12-7
Original file line numberDiff line numberDiff line change
@@ -247,14 +247,19 @@ export default class Grid {
247247
Events.emit("middleware.before", articles);
248248

249249
let getExtPair = Extensions.getInstance().startCount();
250-
let pair: any;
251-
while ((pair = getExtPair()) != null) {
252-
if (pair.event === 'article.format') {
253-
for (const i in articles)
254-
articles[i] = await pair.callback(articles[i]);
255-
} else if (pair.event === 'articles') {
256-
articles = await pair.callback(articles);
250+
let pair: any = {};
251+
try {
252+
while ((pair = getExtPair()) != null) {
253+
if (pair.event === 'article.format') {
254+
for (const i in articles)
255+
articles[i] = await pair.callback(articles[i]);
256+
} else if (pair.event === 'articles') {
257+
articles = await pair.callback(articles);
258+
}
257259
}
260+
} catch (e) {
261+
Events.emit("middleware.error", pair.event, e);
262+
return;
258263
}
259264

260265
Events.emit("middleware.after", articles);

0 commit comments

Comments
 (0)
Please sign in to comment.