Skip to content

Commit 7dc2e05

Browse files
authored
fix: reverse emit function list when beforeClose hook (#264)
* fix: reverse emit function list when beforeClose hook * test: reversed lifecycle test case
1 parent d9528e0 commit 7dc2e05

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

src/application.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ export class ArtusApplication implements Application {
8080

8181
async close(exit = false) {
8282
try {
83-
await this.lifecycleManager.emitHook('beforeClose');
83+
// reverse emitHook to avoid plugin closed before app hook
84+
await this.lifecycleManager.emitHook('beforeClose', null, true);
8485
} catch (e) {
8586
throw new Error(e);
8687
}

src/lifecycle/index.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export class LifecycleManager {
7070
}
7171
}
7272

73-
async emitHook<T = unknown>(hookName: string, payload?: T) {
73+
async emitHook<T = unknown>(hookName: string, payload?: T, reverse = false) {
7474
if (!this.enable) {
7575
return;
7676
}
@@ -83,6 +83,9 @@ export class LifecycleManager {
8383
}
8484
// lifecycle hook should only trigger one time
8585
this.hookFnMap.delete(hookName);
86+
if (reverse) {
87+
fnList.reverse();
88+
}
8689
for (const hookFn of fnList) {
8790
await hookFn({
8891
app: this.app,

test/lifecycle.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ describe('test/lifecycle.test.ts', () => {
4646
'pluginA_didReady',
4747
'pluginB_didReady',
4848
'app_didReady',
49-
'pluginA_beforeClose',
50-
'pluginB_beforeClose',
5149
'app_beforeClose',
50+
'pluginB_beforeClose',
51+
'pluginA_beforeClose',
5252
]);
5353
});
5454

@@ -84,9 +84,9 @@ describe('test/lifecycle.test.ts', () => {
8484
'pluginA_didReady',
8585
'pluginB_didReady',
8686
'app_didReady',
87-
'pluginA_beforeClose',
88-
'pluginB_beforeClose',
8987
'app_beforeClose',
88+
'pluginB_beforeClose',
89+
'pluginA_beforeClose',
9090
]);
9191
});
9292

0 commit comments

Comments
 (0)