animate scroll button
This commit is contained in:
parent
ee6b78afff
commit
6e01331ef4
|
|
@ -1,13 +1,28 @@
|
||||||
import { ReactNode, useCallback, useState } from 'react';
|
import { ReactNode, useCallback, useEffect, useState } from 'react';
|
||||||
import { FaChevronDown } from 'react-icons/fa';
|
import { FaChevronDown } from 'react-icons/fa';
|
||||||
|
|
||||||
const ScrollToBottom = ({ children, className = '' }: { children: ReactNode; className?: string }) => {
|
const ScrollToBottom = ({ children, className = '' }: { children: ReactNode; className?: string }) => {
|
||||||
const [node, setNode] = useState<HTMLDivElement | null>(null);
|
const [node, setNode] = useState<HTMLDivElement | null>(null);
|
||||||
|
const [show, setShow] = useState(false);
|
||||||
|
|
||||||
const bottom = useCallback((node: HTMLDivElement) => {
|
const bottom = useCallback((node: HTMLDivElement) => {
|
||||||
|
if (node) {
|
||||||
node.scrollIntoView({ behavior: 'smooth' });
|
node.scrollIntoView({ behavior: 'smooth' });
|
||||||
setNode(node);
|
setNode(node);
|
||||||
|
}
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
document.querySelector('main > div')?.addEventListener('scroll', () => {
|
||||||
|
if (node?.getBoundingClientRect() && node.getBoundingClientRect().y >= window.innerHeight) {
|
||||||
|
setShow(true);
|
||||||
|
} else {
|
||||||
|
setShow(false);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}, [node]);
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className={className}>
|
<div className={className}>
|
||||||
|
|
@ -16,7 +31,7 @@ const ScrollToBottom = ({ children, className = '' }: { children: ReactNode; cla
|
||||||
</div>
|
</div>
|
||||||
<button
|
<button
|
||||||
onClick={() => node?.scrollIntoView({ behavior: 'smooth' })}
|
onClick={() => node?.scrollIntoView({ behavior: 'smooth' })}
|
||||||
className="absolute right-3 bottom-3"
|
className={"absolute right-3 transition-all" + (show ? ' bottom-3' : ' -bottom-10')}
|
||||||
>
|
>
|
||||||
<div className="popup-btn cursor-pointer rounded-full bg-grey-dark hover:bg-grey-light transition-all">
|
<div className="popup-btn cursor-pointer rounded-full bg-grey-dark hover:bg-grey-light transition-all">
|
||||||
<FaChevronDown className="fill-grey-light hover:fill-grey-dark transition-all text-xl w-10 h-10 p-2.5" />
|
<FaChevronDown className="fill-grey-light hover:fill-grey-dark transition-all text-xl w-10 h-10 p-2.5" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue