Fixed: Cleanup InteractiveSearch.js logic

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
pull/6/head
Qstick 5 years ago
parent b69a00c6fd
commit 9af59bddfe

@ -119,33 +119,35 @@ function InteractiveSearch(props) {
</div> </div>
{ {
isFetching && isFetching ? <LoadingIndicator /> : null
<LoadingIndicator />
} }
{ {
!isFetching && !!error && !isFetching && error ?
<div> <div>
Unable to load results for this album search. Try again later Unable to load results for this album search. Try again later
</div> </div> :
null
} }
{ {
!isFetching && isPopulated && !totalReleasesCount && !isFetching && isPopulated && !totalReleasesCount ?
<div> <div>
No results found No results found
</div> </div> :
null
} }
{ {
!!totalReleasesCount && isPopulated && !items.length && !!totalReleasesCount && isPopulated && !items.length ?
<div> <div>
All results are hidden by the applied filter All results are hidden by the applied filter
</div> </div> :
null
} }
{ {
isPopulated && !!items.length && isPopulated && !!items.length ?
<Table <Table
columns={columns} columns={columns}
sortKey={sortKey} sortKey={sortKey}
@ -168,14 +170,16 @@ function InteractiveSearch(props) {
}) })
} }
</TableBody> </TableBody>
</Table> </Table> :
null
} }
{ {
totalReleasesCount !== items.length && !!items.length && totalReleasesCount !== items.length && !!items.length ?
<div className={styles.filteredMessage}> <div className={styles.filteredMessage}>
Some results are hidden by the applied filter Some results are hidden by the applied filter
</div> </div> :
null
} }
</div> </div>
); );

Loading…
Cancel
Save