diff --git a/ts/components/conversation/Message.tsx b/ts/components/conversation/Message.tsx index c3010a3d9..c33845f76 100644 --- a/ts/components/conversation/Message.tsx +++ b/ts/components/conversation/Message.tsx @@ -739,10 +739,10 @@ class MessageInner extends React.PureComponent { return ( {this.renderAvatar()}
void; - onContextMenu: (e: any) => void -} + children: React.ReactNode; + id: string; + className: string; + onChange: (inView: boolean) => void; + onContextMenu: (e: any) => void; +}; export const ReadableMessage = (props: ReadableMessageProps) => { + const { onChange } = props; + useFocus(onChange); - const { onChange } = props; - useFocus(onChange); - - return ( - - {props.children} - ); -} + return ( + + {props.children} + + ); +}; diff --git a/ts/hooks/useFocus.ts b/ts/hooks/useFocus.ts index e3d3d510c..8f62de92e 100644 --- a/ts/hooks/useFocus.ts +++ b/ts/hooks/useFocus.ts @@ -1,11 +1,10 @@ -import { useEffect } from "react"; +import { useEffect } from 'react'; export const useFocus = (action: (param: any) => void) => { - useEffect(() => { - window.addEventListener("focus", action); + window.addEventListener('focus', action); return () => { - window.removeEventListener("focus", action); + window.removeEventListener('focus', action); }; }); -} \ No newline at end of file +}; diff --git a/ts/models/message.ts b/ts/models/message.ts index 339058372..380c2ec50 100644 --- a/ts/models/message.ts +++ b/ts/models/message.ts @@ -1047,6 +1047,8 @@ export class MessageModel extends Backbone.Model { public async markRead(readAt: number) { this.markReadNoCommit(readAt); + this.getConversation()?.markRead(readAt); + await this.commit(); }