We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e46dc31 commit 33fdb20Copy full SHA for 33fdb20
src/user/saga/index.ts
@@ -0,0 +1 @@
1
+export * from './user.saga';
src/user/saga/user.saga.ts
@@ -0,0 +1,18 @@
+import { Injectable } from '@nestjs/common';
2
+import { ICommand, ofType, Saga } from '@nestjs/cqrs';
3
+import { map, Observable } from 'rxjs';
4
+import { CreateUserEvent } from '../event';
5
+import { CreateRegisterCouponCommand } from '../command';
6
+
7
+@Injectable()
8
+export class UserSaga {
9
+ /** @Saga() 가 있으면 애플리케이션의 이벤트 스트림을 구독하고 `ofType`으로 처리할 이벤트를 선택 */
10
+ @Saga()
11
+ public userCreated(event$: Observable<any>): Observable<ICommand> {
12
+ const fakeCouponId = 'fake-coupon-id';
13
+ return event$.pipe(
14
+ ofType(CreateUserEvent),
15
+ map((event) => new CreateRegisterCouponCommand(fakeCouponId, event.id)),
16
+ );
17
+ }
18
+}
0 commit comments