-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added decorator EventVersion * Added new version * Bug fixed * 2.3.0
- Loading branch information
Jacob Dharandas Méndez
authored
Jun 7, 2021
1 parent
fce2a2a
commit 07db186
Showing
3 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { IBaseEvent } from '../interfaces'; | ||
|
||
export const EventVersion = (version: number) => < | ||
T extends { new (...args: any[]): IBaseEvent } | ||
>( | ||
BaseEvent: T, | ||
) => { | ||
const newClass = class extends BaseEvent implements IBaseEvent { | ||
constructor(...args: any[]) { | ||
super(...args); | ||
this.metadata.version = version; | ||
} | ||
}; | ||
Object.defineProperty(newClass, 'name', { | ||
value: BaseEvent.name, | ||
}); | ||
return newClass; | ||
}; |