전화걸기 확인 버튼 제거

This commit is contained in:
leejinho 2020-03-30 11:42:21 +09:00
parent ea8d71f52f
commit 020f905e93
2 changed files with 65 additions and 65 deletions

View File

@ -269,21 +269,21 @@ export class ProfileDialogComponent implements OnInit, OnDestroy {
calleeNumber = calleeNumber.replace(/\D/g, ''); calleeNumber = calleeNumber.replace(/\D/g, '');
if (!!calleeNumber && calleeNumber.length > 0) { if (!!calleeNumber && calleeNumber.length > 0) {
const result = await this.dialogService.open< // const result = await this.dialogService.open<
ConfirmDialogComponent, // ConfirmDialogComponent,
ConfirmDialogData, // ConfirmDialogData,
ConfirmDialogResult // ConfirmDialogResult
>(ConfirmDialogComponent, { // >(ConfirmDialogComponent, {
panelClass: 'miniSize-dialog', // panelClass: 'miniSize-dialog',
data: { // data: {
title: this.translateService.instant('call.callTo'), // title: this.translateService.instant('call.callTo'),
html: this.translateService.instant('call.callWithNumber', { // html: this.translateService.instant('call.callWithNumber', {
phoneNumber: calleeNumber // phoneNumber: calleeNumber
}) // })
} // }
}); // });
if (!!result && !!result.choice && result.choice) { // if (!!result && !!result.choice && result.choice) {
this.callService this.callService
.sendCall({ .sendCall({
userSeq: this.loginRes.userSeq, userSeq: this.loginRes.userSeq,
@ -304,7 +304,7 @@ export class ProfileDialogComponent implements OnInit, OnDestroy {
catchError(error => of(this.logger.debug(error))) catchError(error => of(this.logger.debug(error)))
) )
.subscribe(); .subscribe();
} // }
} else { } else {
this.dialogService.open< this.dialogService.open<
AlertDialogComponent, AlertDialogComponent,

View File

@ -387,21 +387,21 @@ export class MainPageComponent implements OnInit, OnDestroy {
calleeNumber = calleeNumber.replace(/\D/g, ''); calleeNumber = calleeNumber.replace(/\D/g, '');
if (!!calleeNumber && calleeNumber.length > 0) { if (!!calleeNumber && calleeNumber.length > 0) {
const result = await this.dialogService.open< // const result = await this.dialogService.open<
ConfirmDialogComponent, // ConfirmDialogComponent,
ConfirmDialogData, // ConfirmDialogData,
ConfirmDialogResult // ConfirmDialogResult
>(ConfirmDialogComponent, { // >(ConfirmDialogComponent, {
panelClass: 'miniSize-dialog', // panelClass: 'miniSize-dialog',
data: { // data: {
title: this.translateService.instant('call.callTo'), // title: this.translateService.instant('call.callTo'),
html: this.translateService.instant('call.callWithNumber', { // html: this.translateService.instant('call.callWithNumber', {
phoneNumber: calleeNumber // phoneNumber: calleeNumber
}) // })
} // }
}); // });
if (!!result && !!result.choice && result.choice) { // if (!!result && !!result.choice && result.choice) {
this.callService this.callService
.sendCall({ .sendCall({
userSeq: this.loginRes.userSeq, userSeq: this.loginRes.userSeq,
@ -417,7 +417,7 @@ export class MainPageComponent implements OnInit, OnDestroy {
catchError(error => of(this.logger.debug(error))) catchError(error => of(this.logger.debug(error)))
) )
.subscribe(); .subscribe();
} // }
} else { } else {
this.dialogService.open< this.dialogService.open<
AlertDialogComponent, AlertDialogComponent,