Test to fix duplicate message issue

This commit is contained in:
Rohan Sircar 2020-06-19 17:18:31 +05:30
parent 6378f4b225
commit dda589c2e8
2 changed files with 15 additions and 8 deletions

View File

@ -62,6 +62,12 @@ export class UserModel implements Subject<ActiveUserViewModel> {
this.notify(); this.notify();
} }
updateLastActive(username: String, lastActive: Date): void {
this._activeUsersList
.filter(u => u.userName == username)
.forEach(u => u.lastActive = lastActive)
}
/** /**
* getActiveUsers * getActiveUsers
*/ */
@ -106,5 +112,5 @@ export class UserModel implements Subject<ActiveUserViewModel> {
}); });
} }
private helperMethod() {} private helperMethod() { }
} }

View File

@ -181,6 +181,7 @@ export class ChatView implements Observer<ChatMessageViewModel> {
}; };
this.update({ data: new Array(context), op: "new" }); this.update({ data: new Array(context), op: "new" });
this._userModel.updateLastActive(contactName, msgTime)
this._userModel.notify(); this._userModel.notify();
let messageCipher: MessageCipherDTO = this._encryptionService.encrypt( let messageCipher: MessageCipherDTO = this._encryptionService.encrypt(