pull/1778/head
Brice-W 4 years ago
parent c98fdec10e
commit 151fc758c0

@ -739,10 +739,10 @@ class MessageInner extends React.PureComponent<MessageRegularProps, State> {
return (
<ReadableMessage
id={id}
className={classNames(divClasses)}
onChange={onVisible}
onContextMenu={this.handleContextMenu}
id={id}
className={classNames(divClasses)}
onChange={onVisible}
onContextMenu={this.handleContextMenu}
>
{this.renderAvatar()}
<div

@ -1,28 +1,22 @@
import React from 'react';
import { useFocus } from "../../hooks/useFocus"
import { useFocus } from '../../hooks/useFocus';
import { InView } from 'react-intersection-observer';
type ReadableMessageProps = {
children: React.ReactNode;
id: string;
className: string;
onChange: (inView: boolean) => 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 (
<InView
{...props}
as="div"
threshold={1}
delay={200}
triggerOnce={true}
>
{props.children}
</InView>);
}
return (
<InView {...props} as="div" threshold={1} delay={200} triggerOnce={true}>
{props.children}
</InView>
);
};

@ -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);
};
});
}
};

@ -1047,6 +1047,8 @@ export class MessageModel extends Backbone.Model<MessageAttributes> {
public async markRead(readAt: number) {
this.markReadNoCommit(readAt);
this.getConversation()?.markRead(readAt);
await this.commit();
}

Loading…
Cancel
Save