새 그룹 추가
그룹 생성 액션 취소 idx: 0 팝업 닫힘 idx: 1 그룹 이름 화면 이동 완료 idx: 0 결과값 (그룹이름) idx: 1 결과값 (그룹이름, 선택유저리스트) 그룹지정 완료 출력 idx: 0 그룹 이름 입력 화면 idx: 1 멤버 추가 화면 그룹 수정 액션 취소 idx: 0 팝업 닫힘 idx: 1 그룹 이름 화면 이동 완료 idx: 0 결과값 (그룹이름) idx: 1 결과값 (그룹이름, 선택유저리스트) 그룹지정 완료 출력 idx: 0 그룹 이름 입력 화면 idx: 1 멤버 추가 화면 그룹 멤버 관리 액션 삭제 취소 완료 그룹복사 취소 완료 그룹이동 취소 완료 멤버 추가 취소 완료 출력 선택 그룹 익스 새로운 대화방 액션 취소 대화방 멤버 추가 대화방 유형 선택 출력 대화방 유형 선택 대화방 이름 입력 키: 순서 o const dialogRef = this.dialog.open< ConfirmDialogComponent, ConfirmDialogData, ConfirmDialogResult >(ConfirmDialogComponent, { data: { title: this.i18nService.t('room.dialog.titleExitFromRoom'), html: this.i18nService.t('room.dialog.confirmExitFromRoom') } }); dialogRef .afterClosed() .pipe( take(1), map((result) => { console.log('처리됨', result); }), catchError((err) => { console.log('error'); return of(err); }) ) .subscribe();