Skip to content

Commit ab65295

Browse files
remove unused code.
1 parent 79ca7d4 commit ab65295

File tree

2 files changed

+51
-60
lines changed

2 files changed

+51
-60
lines changed

live-stream/src/js/components/conversation.js

+25-29
Original file line numberDiff line numberDiff line change
@@ -1687,39 +1687,35 @@ class Conversation {
16871687

16881688
_isDateDiffShown(currentMsgId, lastMsgId, isNewMessage) {
16891689
const messageIndex = this.messages.findIndex(message => message.id == currentMsgId);
1690-
if (messageIndex == -1) {
1691-
return false;
1692-
}
1693-
const currentMsgDate = moment(new Date(this.messages[messageIndex].createdAt)).format('DD/MM/YYYY');
1694-
1695-
// Check if this new message
1696-
// 1. Yes: this is new entered message.
1697-
// 2. No: Means this is came from API.
1698-
if (isNewMessage) {
1699-
// This in only one message.
1700-
if (!lastMsgId) {
1701-
return true;
1702-
}
1703-
const lastMsgIndex = this.messages.findIndex(message => message.id == lastMsgId);
1704-
if (lastMsgIndex == -1) {
1705-
return true;
1706-
}
1707-
const lastMsgDate = moment(new Date(this.messages[lastMsgIndex].createdAt)).format('DD/MM/YYYY');
1708-
if (currentMsgDate != lastMsgDate) {
1709-
return true;
1690+
if (messageIndex == -1) {
1691+
return false;
1692+
}
1693+
const currentMsgDate = moment(new Date(this.messages[messageIndex].createdAt)).format('DD/MM/YYYY');
1694+
if (isNewMessage) {
1695+
// This in only one message.
1696+
if (!lastMsgId) {
1697+
return true;
1698+
}
1699+
const lastMsgIndex = this.messages.findIndex(message => message.id == lastMsgId);
1700+
if (lastMsgIndex == -1) {
1701+
return true;
1702+
}
1703+
const lastMsgDate = moment(new Date(this.messages[lastMsgIndex].createdAt)).format('DD/MM/YYYY');
1704+
if (currentMsgDate != lastMsgDate) {
1705+
return true;
17101706
}
17111707
return false;
1712-
}
1708+
}
17131709

1714-
if (!this.messages[messageIndex + 1]) {
1715-
return true;
1716-
}
1710+
if (!this.messages[messageIndex + 1]) {
1711+
return true;
1712+
}
17171713

1718-
const nextMsgDate = moment(new Date(this.messages[messageIndex + 1].createdAt)).format('DD/MM/YYYY');
1719-
if (currentMsgDate != nextMsgDate) {
1720-
return true;
1721-
}
1722-
return false;
1714+
const nextMsgDate = moment(new Date(this.messages[messageIndex + 1].createdAt)).format('DD/MM/YYYY');
1715+
if (currentMsgDate != nextMsgDate) {
1716+
return true;
1717+
}
1718+
return false;
17231719
}
17241720

17251721
_createMessageBubble(message, messagesBox, isNewMessage = false, isPendingMessage = false) {

live-stream/src/js/components/threads.js

+26-31
Original file line numberDiff line numberDiff line change
@@ -1131,41 +1131,36 @@ class Threads {
11311131
}
11321132

11331133
_isDateDiffShown(currentMsgId, lastMsgId, isNewMessage) {
1134-
const messageIndex = this.threadsMessages.findIndex(message => message.id == currentMsgId);
1135-
if (messageIndex == -1) {
1136-
return false;
1137-
}
1138-
const currentMsgDate = moment(new Date(this.threadsMessages[messageIndex].createdAt)).format('DD/MM/YYYY');
1139-
1140-
// Check if this new message
1141-
// 1. Yes: this is new entered message.
1142-
// 2. No: Means this is came from API.
1143-
if (isNewMessage) {
1144-
// This in only one message.
1145-
if (!lastMsgId) {
1146-
return true;
1147-
}
1148-
const lastMsgIndex = this.threadsMessages.findIndex(message => message.id == lastMsgId);
1149-
if (lastMsgIndex == -1) {
1150-
return true;
1151-
}
1152-
const lastMsgDate = moment(new Date(this.threadsMessages[lastMsgIndex].createdAt)).format('DD/MM/YYYY');
1153-
if (currentMsgDate != lastMsgDate) {
1154-
return true;
1134+
const messageIndex = this.threadsMessages.findIndex(message => message.id == currentMsgId);
1135+
if (messageIndex == -1) {
1136+
return false;
1137+
}
1138+
const currentMsgDate = moment(new Date(this.threadsMessages[messageIndex].createdAt)).format('DD/MM/YYYY');
1139+
if (isNewMessage) {
1140+
// This in only one message.
1141+
if (!lastMsgId) {
1142+
return true;
1143+
}
1144+
const lastMsgIndex = this.threadsMessages.findIndex(message => message.id == lastMsgId);
1145+
if (lastMsgIndex == -1) {
1146+
return true;
1147+
}
1148+
const lastMsgDate = moment(new Date(this.threadsMessages[lastMsgIndex].createdAt)).format('DD/MM/YYYY');
1149+
if (currentMsgDate != lastMsgDate) {
1150+
return true;
11551151
}
11561152
return false;
1157-
}
1153+
}
11581154

1159-
if (!this.threadsMessages[messageIndex + 1]) {
1160-
return true;
1161-
}
1155+
if (!this.threadsMessages[messageIndex + 1]) {
1156+
return true;
1157+
}
11621158

1163-
const nextMsgDate = moment(new Date(this.threadsMessages[messageIndex + 1].createdAt)).format('DD/MM/YYYY');
1164-
1165-
if (currentMsgDate != nextMsgDate) {
1166-
return true;
1167-
}
1168-
return false;
1159+
const nextMsgDate = moment(new Date(this.threadsMessages[messageIndex + 1].createdAt)).format('DD/MM/YYYY');
1160+
if (currentMsgDate != nextMsgDate) {
1161+
return true;
1162+
}
1163+
return false;
11691164
}
11701165

11711166
_createMessageBubble(message, messagesBox, showDateDiff = true, isNewMessage = false, isPendingMessage = false) {

0 commit comments

Comments
 (0)