You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/components/conversation/ReadableMessage.tsx

23 lines
568 B
TypeScript

4 years ago
import React from 'react';
4 years ago
import { useFocus } from '../../hooks/useFocus';
import { InView, useInView } from 'react-intersection-observer';
4 years ago
type ReadableMessageProps = {
4 years ago
children: React.ReactNode;
id: string;
className: string;
onChange: (inView: boolean) => void;
onContextMenu: (e: any) => void;
};
4 years ago
export const ReadableMessage = (props: ReadableMessageProps) => {
4 years ago
const { onChange } = props;
useFocus(onChange);
4 years ago
4 years ago
return (
<InView {...props} as="div" threshold={1} delay={200} triggerOnce={false}>
4 years ago
{props.children}
</InView>
);
};