// @flow import { MAIN_WRAPPER_CLASS } from 'component/app/view'; import type { Node } from 'react'; import React, { useEffect, useState } from 'react'; import classnames from 'classnames'; import ClaimPreview from 'component/claimPreview'; import Spinner from 'component/spinner'; import { FormField } from 'component/common/form'; import usePersistedState from 'effects/use-persisted-state'; const SORT_NEW = 'new'; const SORT_OLD = 'old'; type Props = { uris: Array, header: Node | boolean, headerAltControls: Node, loading: boolean, type: string, empty?: string, defaultSort?: boolean, onScrollBottom?: any => void, page?: number, pageSize?: number, id?: string, // If using the default header, this is a unique ID needed to persist the state of the filter setting persistedStorageKey?: string, showHiddenByUser: boolean, showUnresolvedClaims?: boolean, renderProperties: ?(Claim) => Node, includeSupportAction?: boolean, hideBlock: boolean, injectedItem: ?Node, timedOutMessage?: Node, isCardBody?: boolean, }; export default function ClaimList(props: Props) { const { uris, headerAltControls, loading, persistedStorageKey, empty, defaultSort, type, header, onScrollBottom, pageSize, page, id, showHiddenByUser, showUnresolvedClaims, renderProperties, includeSupportAction, hideBlock, injectedItem, timedOutMessage, isCardBody = false, } = props; const [scrollBottomCbMap, setScrollBottomCbMap] = useState({}); const [currentSort, setCurrentSort] = usePersistedState(persistedStorageKey, SORT_NEW); const timedOut = uris === null; const urisLength = (uris && uris.length) || 0; const sortedUris = (urisLength > 0 && (currentSort === SORT_NEW ? uris : uris.slice().reverse())) || []; function handleSortChange() { setCurrentSort(currentSort === SORT_NEW ? SORT_OLD : SORT_NEW); } useEffect(() => { setScrollBottomCbMap({}); }, [id, setScrollBottomCbMap]); useEffect(() => { let timeout; function handleScroll(e) { timeout = setTimeout(() => { if (page && pageSize && onScrollBottom && !scrollBottomCbMap[page]) { const mainElWrapper = document.querySelector(`.${MAIN_WRAPPER_CLASS}`); if (mainElWrapper && !loading && urisLength >= pageSize) { const contentWrapperAtBottomOfPage = mainElWrapper.getBoundingClientRect().bottom - 0.5 <= window.innerHeight; if (contentWrapperAtBottomOfPage) { onScrollBottom(); // Save that we've fetched this page to avoid weird stuff happening with fast scrolling setScrollBottomCbMap({ ...scrollBottomCbMap, [page]: true }); } } } }, 150); } if (onScrollBottom) { window.addEventListener('scroll', handleScroll); return () => { if (timeout) { clearTimeout(timeout); } window.removeEventListener('scroll', handleScroll); }; } }, [loading, onScrollBottom, urisLength, pageSize, page, setScrollBottomCbMap]); return (
{header !== false && ( {header && (
{header} {loading && }
{headerAltControls} {defaultSort && ( )}
)}
)} {urisLength > 0 && ( )} {!timedOut && urisLength === 0 && !loading && (
{empty || __('No results')}
)} {timedOut && timedOutMessage &&
{timedOutMessage}
}
); }