2020-05-29 22:34:54 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
2020-07-25 09:06:25 +02:00
|
|
|
import debounce from 'util/debounce';
|
|
|
|
|
2021-07-05 05:27:22 +02:00
|
|
|
const DEBOUNCE_SCROLL_HANDLER_MS = 50;
|
2020-05-29 22:34:54 +02:00
|
|
|
|
2021-07-08 14:31:30 +02:00
|
|
|
function scaleToDevicePixelRatio(value) {
|
|
|
|
const devicePixelRatio = window.devicePixelRatio || 1.0;
|
|
|
|
if (devicePixelRatio < 1.0) {
|
|
|
|
return Math.ceil(value / devicePixelRatio);
|
|
|
|
}
|
|
|
|
return Math.ceil(value * devicePixelRatio);
|
|
|
|
}
|
|
|
|
|
2020-05-29 22:34:54 +02:00
|
|
|
type Props = {
|
|
|
|
children: any,
|
2020-08-24 19:35:21 +02:00
|
|
|
skipWait?: boolean,
|
2021-06-15 08:41:03 +02:00
|
|
|
placeholder?: any,
|
2021-07-05 05:54:55 +02:00
|
|
|
yOffset?: number,
|
2020-05-29 22:34:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function WaitUntilOnPage(props: Props) {
|
2021-07-05 05:54:55 +02:00
|
|
|
const { yOffset } = props;
|
2020-05-29 22:34:54 +02:00
|
|
|
const ref = React.useRef();
|
|
|
|
const [shouldRender, setShouldRender] = React.useState(false);
|
|
|
|
|
2021-07-05 05:54:55 +02:00
|
|
|
const shouldElementRender = React.useCallback(
|
|
|
|
(ref) => {
|
|
|
|
const element = ref && ref.current;
|
|
|
|
if (element) {
|
|
|
|
const bounding = element.getBoundingClientRect();
|
2021-07-05 05:27:22 +02:00
|
|
|
// $FlowFixMe
|
2021-07-05 05:54:55 +02:00
|
|
|
const windowH = window.innerHeight || document.documentElement.clientHeight;
|
2021-07-05 05:27:22 +02:00
|
|
|
// $FlowFixMe
|
2021-07-05 05:54:55 +02:00
|
|
|
const windowW = window.innerWidth || document.documentElement.clientWidth;
|
|
|
|
|
2021-07-08 14:31:30 +02:00
|
|
|
const isApproachingViewport = yOffset && bounding.top < windowH + scaleToDevicePixelRatio(yOffset);
|
2021-07-05 05:54:55 +02:00
|
|
|
const isInViewport = // also covers "element is larger than viewport".
|
|
|
|
bounding.width > 0 &&
|
|
|
|
bounding.height > 0 &&
|
|
|
|
bounding.bottom >= 0 &&
|
|
|
|
bounding.right >= 0 &&
|
|
|
|
bounding.top <= windowH &&
|
|
|
|
bounding.left <= windowW;
|
|
|
|
|
|
|
|
return isInViewport || isApproachingViewport;
|
2021-07-05 05:27:22 +02:00
|
|
|
}
|
2021-07-05 05:54:55 +02:00
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
[yOffset]
|
|
|
|
);
|
2021-07-05 05:27:22 +02:00
|
|
|
|
|
|
|
// Handles "element is already in viewport when mounted".
|
2020-05-29 22:34:54 +02:00
|
|
|
React.useEffect(() => {
|
Re-design comment threads (#1489)
* Redesign threadline and fetching state
- threadline goes right below channel avatar, mimicking reddits implementation, has a increase effect on hover and is slimmer, creating more space for comments on screen
- fetching state now replaces show/hide button, also mimicking reddit, and now says that it is loading, instead of a blank spinner, and also improves space a bit
* Redesign comment threads
- Allow for infinite comment chains
- Can go back and forth between the pages
- Can go back to all comments or to the first comment in the chain
- Some other improvements, which include:
- add title on non-drawer comment sections (couldn't see amount of comments)
- fix Expandable component (would begin expanded and collapse after the effect runs, which looked bad and shifted the layout, now each comments greater than the set length begins collapsed)
- used constants for consistency
* Fix replying to last thread comment
* Fix buttons condition (only on fetched comment to avoid deleted case)
* Fix auto-scroll
* Bring back instant feedback for Show More replies
* Improve thread back links
- Now going back to all comments links the top-level comment for easier navigation
- Going back to ~ previous ~ now goes back into the chain instead of topmost level
* Clear timeouts due to unrelated issue
* Fix deep thread linked comment case and more scroll improvements
* More minor changes
* Flow
* Fix commentList tile style
* Fix long channel names overflowing on small screens
* More scroll changes
* Fix threadline
* Revert "Fix long channel names overflowing on small screens"
This reverts commit e4d2dc7da5861ed8136a60f3352e41a690cd4d33.
* Fix replies fetch
* Revert "Fix replies fetch"
This reverts commit ec70054675a604a7a5f3764ba07c36bf7b0f49c8.
* Cleanup and make smooth
* Always use linked comment on threads
* Cleanup
* Higlight thread comment
* Fix comment body styles
2022-05-16 12:22:13 +02:00
|
|
|
const timer = setTimeout(() => {
|
2021-07-05 05:27:22 +02:00
|
|
|
if (!shouldRender && shouldElementRender(ref)) {
|
|
|
|
setShouldRender(true);
|
2020-05-29 22:34:54 +02:00
|
|
|
}
|
2021-07-05 05:27:22 +02:00
|
|
|
}, 500);
|
Re-design comment threads (#1489)
* Redesign threadline and fetching state
- threadline goes right below channel avatar, mimicking reddits implementation, has a increase effect on hover and is slimmer, creating more space for comments on screen
- fetching state now replaces show/hide button, also mimicking reddit, and now says that it is loading, instead of a blank spinner, and also improves space a bit
* Redesign comment threads
- Allow for infinite comment chains
- Can go back and forth between the pages
- Can go back to all comments or to the first comment in the chain
- Some other improvements, which include:
- add title on non-drawer comment sections (couldn't see amount of comments)
- fix Expandable component (would begin expanded and collapse after the effect runs, which looked bad and shifted the layout, now each comments greater than the set length begins collapsed)
- used constants for consistency
* Fix replying to last thread comment
* Fix buttons condition (only on fetched comment to avoid deleted case)
* Fix auto-scroll
* Bring back instant feedback for Show More replies
* Improve thread back links
- Now going back to all comments links the top-level comment for easier navigation
- Going back to ~ previous ~ now goes back into the chain instead of topmost level
* Clear timeouts due to unrelated issue
* Fix deep thread linked comment case and more scroll improvements
* More minor changes
* Flow
* Fix commentList tile style
* Fix long channel names overflowing on small screens
* More scroll changes
* Fix threadline
* Revert "Fix long channel names overflowing on small screens"
This reverts commit e4d2dc7da5861ed8136a60f3352e41a690cd4d33.
* Fix replies fetch
* Revert "Fix replies fetch"
This reverts commit ec70054675a604a7a5f3764ba07c36bf7b0f49c8.
* Cleanup and make smooth
* Always use linked comment on threads
* Cleanup
* Higlight thread comment
* Fix comment body styles
2022-05-16 12:22:13 +02:00
|
|
|
|
|
|
|
return () => clearTimeout(timer);
|
2021-07-05 05:27:22 +02:00
|
|
|
}, []); // eslint-disable-line react-hooks/exhaustive-deps
|
2020-05-29 22:34:54 +02:00
|
|
|
|
2021-07-05 05:27:22 +02:00
|
|
|
// Handles "element scrolled into viewport".
|
|
|
|
React.useEffect(() => {
|
|
|
|
const handleDisplayingRef = debounce(() => {
|
|
|
|
if (shouldElementRender(ref)) {
|
|
|
|
setShouldRender(true);
|
2020-05-29 22:34:54 +02:00
|
|
|
}
|
2020-07-25 09:06:25 +02:00
|
|
|
}, DEBOUNCE_SCROLL_HANDLER_MS);
|
2020-05-29 22:34:54 +02:00
|
|
|
|
2021-07-05 05:27:22 +02:00
|
|
|
if (ref && ref.current && !shouldRender) {
|
|
|
|
window.addEventListener('scroll', handleDisplayingRef);
|
2021-07-05 05:56:36 +02:00
|
|
|
window.addEventListener('resize', handleDisplayingRef);
|
|
|
|
return () => {
|
|
|
|
window.removeEventListener('scroll', handleDisplayingRef);
|
|
|
|
window.removeEventListener('resize', handleDisplayingRef);
|
|
|
|
};
|
2020-05-29 22:34:54 +02:00
|
|
|
}
|
2021-07-05 05:27:22 +02:00
|
|
|
}, [ref, setShouldRender, shouldRender, shouldElementRender]);
|
2020-05-29 22:34:54 +02:00
|
|
|
|
2021-06-15 08:41:03 +02:00
|
|
|
const render = props.skipWait || shouldRender;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div ref={ref}>
|
|
|
|
{render && props.children}
|
|
|
|
{!render && props.placeholder !== undefined && props.placeholder}
|
|
|
|
</div>
|
|
|
|
);
|
2020-05-29 22:34:54 +02:00
|
|
|
}
|