TF-267 Fix bug display a full page for sorting results

This commit is contained in:
dab246
2022-03-08 09:09:30 +07:00
committed by Dat H. Pham
parent 7beebfebc8
commit 5f2799ee79
22 changed files with 323 additions and 107 deletions
@@ -21,6 +21,17 @@ abstract class ThreadRepository {
}
);
Stream<EmailsResponse> refreshAll(
AccountId accountId,
{
UnsignedInt? limit,
Set<Comparator>? sort,
EmailFilter? emailFilter,
Properties? propertiesCreated,
Properties? propertiesUpdated,
}
);
Stream<EmailsResponse> refreshChanges(
AccountId accountId,
jmap.State currentState,
@@ -28,7 +39,8 @@ abstract class ThreadRepository {
Set<Comparator>? sort,
Properties? propertiesCreated,
Properties? propertiesUpdated,
MailboxId? inMailboxId
MailboxId? inMailboxId,
FilterMessageOption? filterOption,
}
);