mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
Fix load-more button state
This commit is contained in:
parent
b50f57f7fe
commit
cfc903403a
@ -10,7 +10,9 @@ module Data.Items exposing
|
|||||||
, first
|
, first
|
||||||
, flatten
|
, flatten
|
||||||
, idSet
|
, idSet
|
||||||
|
, isEmpty
|
||||||
, length
|
, length
|
||||||
|
, nonEmpty
|
||||||
, replaceIn
|
, replaceIn
|
||||||
, unwrapGroups
|
, unwrapGroups
|
||||||
)
|
)
|
||||||
@ -23,6 +25,16 @@ import Set exposing (Set)
|
|||||||
import Util.List
|
import Util.List
|
||||||
|
|
||||||
|
|
||||||
|
isEmpty : ItemLightList -> Bool
|
||||||
|
isEmpty list =
|
||||||
|
List.all (.items >> List.isEmpty) list.groups
|
||||||
|
|
||||||
|
|
||||||
|
nonEmpty : ItemLightList -> Bool
|
||||||
|
nonEmpty list =
|
||||||
|
not (isEmpty list)
|
||||||
|
|
||||||
|
|
||||||
flatten : ItemLightList -> List ItemLight
|
flatten : ItemLightList -> List ItemLight
|
||||||
flatten list =
|
flatten list =
|
||||||
List.concatMap .items list.groups
|
List.concatMap .items list.groups
|
||||||
|
@ -209,7 +209,7 @@ update texts bookmarkId lastViewedItemId env msg model =
|
|||||||
{ model
|
{ model
|
||||||
| searchInProgress = False
|
| searchInProgress = False
|
||||||
, searchOffset = noff
|
, searchOffset = noff
|
||||||
, moreAvailable = list.groups /= []
|
, moreAvailable = Data.Items.nonEmpty list
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
makeResult env.selectedItems <|
|
makeResult env.selectedItems <|
|
||||||
@ -233,7 +233,7 @@ update texts bookmarkId lastViewedItemId env msg model =
|
|||||||
| searchInProgress = False
|
| searchInProgress = False
|
||||||
, moreInProgress = False
|
, moreInProgress = False
|
||||||
, searchOffset = noff
|
, searchOffset = noff
|
||||||
, moreAvailable = list.groups /= []
|
, moreAvailable = Data.Items.nonEmpty list
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
update texts bookmarkId lastViewedItemId env (ItemCardListMsg (Comp.ItemCardList.AddResults list)) m
|
update texts bookmarkId lastViewedItemId env (ItemCardListMsg (Comp.ItemCardList.AddResults list)) m
|
||||||
|
Loading…
x
Reference in New Issue
Block a user