pull/1778/head
Brice-W 4 years ago
parent 74147d8c3d
commit 9a420f85ce

@ -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 (
<div ref={ref} id={props.id} onContextMenu={props.onContextMenu} className={props.className} onChange={onChange}>
{props.children}
</div>
)*/
const { onChange } = props;
useFocus(onChange);

@ -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<ConversationAttributes> {
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<ConversationAttributes> {
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<ConversationAttributes> {
}
public async markReadBouncy(newestUnreadDate: number, providedOptions: any = {}) {
const lastReadTimestamp = this.get('lastReadTimestamp');
const lastReadTimestamp = this.lastReadTimestamp;
if (newestUnreadDate < lastReadTimestamp) {
return;
}

@ -89,7 +89,6 @@ export class MockConversation {
triggerNotificationsFor: 'all',
isTrustedForAttachmentDownload: false,
isPinned: false,
lastReadTimestamp: 0,
};
}

Loading…
Cancel
Save