format
parent
c98fdec10e
commit
151fc758c0
@ -1,28 +1,22 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { useFocus } from "../../hooks/useFocus"
|
import { useFocus } from '../../hooks/useFocus';
|
||||||
import { InView } from 'react-intersection-observer';
|
import { InView } from 'react-intersection-observer';
|
||||||
|
|
||||||
type ReadableMessageProps = {
|
type ReadableMessageProps = {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
id: string;
|
id: string;
|
||||||
className: string;
|
className: string;
|
||||||
onChange: (inView: boolean) => void;
|
onChange: (inView: boolean) => void;
|
||||||
onContextMenu: (e: any) => void
|
onContextMenu: (e: any) => void;
|
||||||
}
|
};
|
||||||
|
|
||||||
export const ReadableMessage = (props: ReadableMessageProps) => {
|
export const ReadableMessage = (props: ReadableMessageProps) => {
|
||||||
|
const { onChange } = props;
|
||||||
|
useFocus(onChange);
|
||||||
|
|
||||||
const { onChange } = props;
|
return (
|
||||||
useFocus(onChange);
|
<InView {...props} as="div" threshold={1} delay={200} triggerOnce={true}>
|
||||||
|
{props.children}
|
||||||
return (
|
</InView>
|
||||||
<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) => {
|
export const useFocus = (action: (param: any) => void) => {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
window.addEventListener("focus", action);
|
window.addEventListener('focus', action);
|
||||||
return () => {
|
return () => {
|
||||||
window.removeEventListener("focus", action);
|
window.removeEventListener('focus', action);
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
Loading…
Reference in New Issue