Skip to content

Commit 33fdb20

Browse files
committed
[feat] 유저 saga 클래스 추가
1 parent e46dc31 commit 33fdb20

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

src/user/saga/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './user.saga';

src/user/saga/user.saga.ts

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
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

Comments
 (0)