발송 취소된 쪽지에 대한 상세보기 에러 처리.
This commit is contained in:
parent
e263bf1bd9
commit
cf2bb3987d
|
@ -23,6 +23,8 @@ export enum MessageStatusCode {
|
||||||
Fail_File_Size = '41',
|
Fail_File_Size = '41',
|
||||||
/** 파일 업로드 시, 업로드할 수 없는 파일 형식일 경우 발생 */
|
/** 파일 업로드 시, 업로드할 수 없는 파일 형식일 경우 발생 */
|
||||||
Fail_File_Ext = '42',
|
Fail_File_Ext = '42',
|
||||||
|
/** 발송 취소된 메시지 */
|
||||||
|
Fail_Cancelled_Msg = '51',
|
||||||
/** Exception 에러 발생 */
|
/** Exception 에러 발생 */
|
||||||
Fail = '99'
|
Fail = '99'
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,12 @@ import { NGXLogger } from 'ngx-logger';
|
||||||
|
|
||||||
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
||||||
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
||||||
import { DialogService } from '@ucap-webmessenger/ui';
|
import {
|
||||||
|
DialogService,
|
||||||
|
AlertDialogComponent,
|
||||||
|
AlertDialogResult,
|
||||||
|
AlertDialogData
|
||||||
|
} from '@ucap-webmessenger/ui';
|
||||||
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
||||||
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
||||||
import {
|
import {
|
||||||
|
@ -46,6 +51,7 @@ import {
|
||||||
|
|
||||||
import * as AppStore from '@app/store';
|
import * as AppStore from '@app/store';
|
||||||
import * as MessageStore from '@app/store/messenger/message';
|
import * as MessageStore from '@app/store/messenger/message';
|
||||||
|
import { TranslateService } from '@ngx-translate/core';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-layout-chat-left-sidenav-message',
|
selector: 'app-layout-chat-left-sidenav-message',
|
||||||
|
@ -94,6 +100,7 @@ export class MessageBoxComponent
|
||||||
private formBuilder: FormBuilder,
|
private formBuilder: FormBuilder,
|
||||||
private sessionStorageService: SessionStorageService,
|
private sessionStorageService: SessionStorageService,
|
||||||
private dialogService: DialogService,
|
private dialogService: DialogService,
|
||||||
|
private translateService: TranslateService,
|
||||||
private messageApiService: MessageApiService,
|
private messageApiService: MessageApiService,
|
||||||
private logger: NGXLogger
|
private logger: NGXLogger
|
||||||
) {
|
) {
|
||||||
|
@ -177,6 +184,23 @@ export class MessageBoxComponent
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (
|
||||||
|
!!info &&
|
||||||
|
info.responseCode === MessageStatusCode.Fail_Cancelled_Msg
|
||||||
|
) {
|
||||||
|
this.dialogService.open<
|
||||||
|
AlertDialogComponent,
|
||||||
|
AlertDialogData,
|
||||||
|
AlertDialogResult
|
||||||
|
>(AlertDialogComponent, {
|
||||||
|
width: '360px',
|
||||||
|
data: {
|
||||||
|
title: this.translateService.instant('message.errors.label'),
|
||||||
|
message: this.translateService.instant(
|
||||||
|
'message.errors.cancelledMessage'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -75,13 +75,11 @@ export class Effects {
|
||||||
};
|
};
|
||||||
return this.messageApiService.detailMessage(request).pipe(
|
return this.messageApiService.detailMessage(request).pipe(
|
||||||
map(res => {
|
map(res => {
|
||||||
if (res.responseCode === MessageStatusCode.Success) {
|
|
||||||
this.store.dispatch(
|
this.store.dispatch(
|
||||||
detailMessageSuccess({
|
detailMessageSuccess({
|
||||||
res
|
res
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
|
||||||
}),
|
}),
|
||||||
catchError(error => of(detailMessageFailure({ error })))
|
catchError(error => of(detailMessageFailure({ error })))
|
||||||
);
|
);
|
||||||
|
|
|
@ -281,7 +281,8 @@
|
||||||
"label": "Message error",
|
"label": "Message error",
|
||||||
"failToSending": "The message failed to send.",
|
"failToSending": "The message failed to send.",
|
||||||
"failToModify": "The message failed to modify.",
|
"failToModify": "The message failed to modify.",
|
||||||
"minTimeReservation": "It can be set only 30 minutes after the current time."
|
"minTimeReservation": "It can be set only 30 minutes after the current time.",
|
||||||
|
"cancelledMessage": "This message has been cancelled."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"notice": {
|
"notice": {
|
||||||
|
|
|
@ -281,7 +281,8 @@
|
||||||
"label": "쪽지 에러",
|
"label": "쪽지 에러",
|
||||||
"failToSending": "쪽지를 전송에 실패 하였습니다.",
|
"failToSending": "쪽지를 전송에 실패 하였습니다.",
|
||||||
"failToModify": "쪽지 수정에 실패 하였습니다.",
|
"failToModify": "쪽지 수정에 실패 하였습니다.",
|
||||||
"minTimeReservation": "현재 시각으로부터 30분 이후로만 설정 가능합니다."
|
"minTimeReservation": "현재 시각으로부터 30분 이후로만 설정 가능합니다.",
|
||||||
|
"cancelledMessage": "발송 취소된 쪽지 입니다."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"notice": {
|
"notice": {
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<span class="name">
|
<span class="name">
|
||||||
<b>
|
<b>
|
||||||
{{ message.userName
|
{{ message.userName
|
||||||
}}<span *ngIf="message.userCount > 0">
|
}}<span *ngIf="message.userCount > 1">
|
||||||
{{
|
{{
|
||||||
'message.andOthers'
|
'message.andOthers'
|
||||||
| translate: { count: message.userCount - 1 }
|
| translate: { count: message.userCount - 1 }
|
||||||
|
|
Loading…
Reference in New Issue
Block a user