// @flow import React from 'react'; import { Spinner } from '../globals'; import { HasNextPage, NextPageButton } from './style'; import VisibilitySensor from 'react-visibility-sensor'; import { Link, type Location } from 'react-router-dom'; type Props = { isFetchingMore?: boolean, href?: Location, fetchMore: () => any, children?: string, automatic?: boolean, topOffset?: number, bottomOffset?: number, }; const NextPageButtonWrapper = (props: Props) => { const { isFetchingMore, fetchMore, href, children, automatic = true, topOffset = -250, bottomOffset = -250, } = props; const onChange = (isVisible: boolean) => { if (isFetchingMore || !isVisible) return; return fetchMore(); }; return ( { evt.preventDefault(); onChange(true); }} data-cy="load-previous-messages" > {isFetchingMore ? ( ) : ( children || 'Load more' )} ); }; export default NextPageButtonWrapper;