diff --git a/ts/components/conversation/ReadableMessage.tsx b/ts/components/conversation/ReadableMessage.tsx
index 2dc6ed992..d56fa2c4e 100644
--- a/ts/components/conversation/ReadableMessage.tsx
+++ b/ts/components/conversation/ReadableMessage.tsx
@@ -11,22 +11,6 @@ type ReadableMessageProps = {
};
export const ReadableMessage = (props: ReadableMessageProps) => {
- /*const { ref, inView, entry } = useInView({
- threshold: 1,
- delay: 200,
- triggerOnce: true,
- trackVisibility: true,
- });
-
- const { onChange } = props;
- useFocus(() => onChange(inView));
-
- return (
-
- {props.children}
-
- )*/
-
const { onChange } = props;
useFocus(onChange);
diff --git a/ts/models/conversation.ts b/ts/models/conversation.ts
index b9867bd86..7b879d0a4 100644
--- a/ts/models/conversation.ts
+++ b/ts/models/conversation.ts
@@ -92,7 +92,6 @@ export interface ConversationAttributes {
triggerNotificationsFor: ConversationNotificationSettingType;
isTrustedForAttachmentDownload: boolean;
isPinned: boolean;
- lastReadTimestamp: number;
}
export interface ConversationAttributesOptionals {
@@ -161,7 +160,6 @@ export const fillConvoAttributesWithDefaults = (
triggerNotificationsFor: 'all', // if the settings is not set in the db, this is the default
isTrustedForAttachmentDownload: false, // we don't trust a contact until we say so
isPinned: false,
- lastReadTimestamp: 0,
});
};
@@ -175,6 +173,7 @@ export class ConversationModel extends Backbone.Model {
private typingRefreshTimer?: NodeJS.Timeout | null;
private typingPauseTimer?: NodeJS.Timeout | null;
private typingTimer?: NodeJS.Timeout | null;
+ private lastReadTimestamp: number;
private pending: any;
@@ -190,20 +189,19 @@ export class ConversationModel extends Backbone.Model {
this.updateLastMessage = _.throttle(this.bouncyUpdateLastMessage.bind(this), 1000);
this.throttledNotify = _.debounce(this.notify, 500, { maxWait: 1000 });
//start right away the function is called, and wait 1sec before calling it again
- const markReadBouncy = _.debounce(this.markReadBouncy, 1000, { leading: true });
+ const markReadDebounced = _.debounce(this.markReadBouncy, 1000, { leading: true });
this.markRead = (newestUnreadDate: number) => {
- const lastReadTimestamp = this.get('lastReadTimestamp');
+ const lastReadTimestamp = this.lastReadTimestamp;
if (newestUnreadDate > lastReadTimestamp) {
- this.set({
- lastReadTimestamp: newestUnreadDate,
- });
+ this.lastReadTimestamp = newestUnreadDate;
}
- void markReadBouncy(newestUnreadDate);
+ void markReadDebounced(newestUnreadDate);
};
// Listening for out-of-band data updates
this.typingRefreshTimer = null;
this.typingPauseTimer = null;
+ this.lastReadTimestamp = 0;
window.inboxStore?.dispatch(conversationActions.conversationChanged(this.id, this.getProps()));
}
@@ -925,7 +923,7 @@ export class ConversationModel extends Backbone.Model {
}
public async markReadBouncy(newestUnreadDate: number, providedOptions: any = {}) {
- const lastReadTimestamp = this.get('lastReadTimestamp');
+ const lastReadTimestamp = this.lastReadTimestamp;
if (newestUnreadDate < lastReadTimestamp) {
return;
}
diff --git a/ts/test/test-utils/utils/message.ts b/ts/test/test-utils/utils/message.ts
index 809a0a96e..4d0cdf6f2 100644
--- a/ts/test/test-utils/utils/message.ts
+++ b/ts/test/test-utils/utils/message.ts
@@ -89,7 +89,6 @@ export class MockConversation {
triggerNotificationsFor: 'all',
isTrustedForAttachmentDownload: false,
isPinned: false,
- lastReadTimestamp: 0,
};
}