[19 현재 대화방은 전달 기능 불가능] 현재 대화방도 전달 가능하도록 수정.
[30 대화 참여자 목록 프로필 정렬 오류] 프레즌스 정보가 없어도 공간 확보. 대화방 파일 expired 처리 수정.
This commit is contained in:
parent
729a95e1eb
commit
1be22492f2
|
@ -451,12 +451,13 @@ export class CreateChatDialogComponent implements OnInit, OnDestroy {
|
||||||
}
|
}
|
||||||
|
|
||||||
getCheckableRoom(roomInfo: RoomInfo) {
|
getCheckableRoom(roomInfo: RoomInfo) {
|
||||||
if (!!this.data.ignoreRoom && this.data.ignoreRoom.length > 0) {
|
// // 현재 방도 체크 전달 할수 있도록 수정. (끌어올리기 개념.)
|
||||||
return !(
|
// if (!!this.data.ignoreRoom && this.data.ignoreRoom.length > 0) {
|
||||||
this.data.ignoreRoom.filter(room => room.roomSeq === roomInfo.roomSeq)
|
// return !(
|
||||||
.length > 0
|
// this.data.ignoreRoom.filter(room => room.roomSeq === roomInfo.roomSeq)
|
||||||
);
|
// .length > 0
|
||||||
}
|
// );
|
||||||
|
// }
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
getCheckedRoom(roomInfo: RoomInfo) {
|
getCheckedRoom(roomInfo: RoomInfo) {
|
||||||
|
|
|
@ -42,7 +42,7 @@ export class FileComponent implements OnInit {
|
||||||
getExpiredFile() {
|
getExpiredFile() {
|
||||||
if (
|
if (
|
||||||
!!this.eventInfoStatus &&
|
!!this.eventInfoStatus &&
|
||||||
this.eventInfoStatus.validFileBaseSeq < this.message.seq
|
this.eventInfoStatus.validFileBaseSeq <= this.message.seq
|
||||||
) {
|
) {
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1,12 +1,7 @@
|
||||||
<!--체크박스 보여줄때는 <div class="list-item checkbox" matRipple> 클래스에 checkbox만 추가-->
|
<!--체크박스 보여줄때는 <div class="list-item checkbox" matRipple> 클래스에 checkbox만 추가-->
|
||||||
<div class="list-item" *ngIf="userInfo" matRipple>
|
<div class="list-item" *ngIf="userInfo" matRipple>
|
||||||
<!--pcOn , pcOut pcOff , pcOther-->
|
<!--pcOn , pcOut pcOff , pcOther-->
|
||||||
<span
|
<span class="presence" [ngClass]="getPresence(PresenceType.PC)"> </span>
|
||||||
class="presence"
|
|
||||||
[ngClass]="getPresence(PresenceType.PC)"
|
|
||||||
*ngIf="presence && presence.pcStatus"
|
|
||||||
>{{ presence.pcStatus }}
|
|
||||||
</span>
|
|
||||||
<dl class="item-default">
|
<dl class="item-default">
|
||||||
<dt>
|
<dt>
|
||||||
<img
|
<img
|
||||||
|
|
Loading…
Reference in New Issue
Block a user