[ios] add getResults to the MWMSearch to fetch the full results list

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2025-01-22 20:55:59 +04:00 committed by Roman Tsisyk
parent cd832b94b6
commit ca2d888744
2 changed files with 10 additions and 0 deletions

View file

@ -19,6 +19,7 @@ NS_SWIFT_NAME(Search)
+ (SearchItemType)resultTypeWithRow:(NSUInteger)row;
+ (NSUInteger)containerIndexWithRow:(NSUInteger)row;
+ (SearchResult *)resultWithContainerIndex:(NSUInteger)index;
+ (NSArray<SearchResult *> *)getResults;
+ (void)clear;

View file

@ -175,6 +175,15 @@ using Observers = NSHashTable<Observer>;
return result;
}
+ (NSArray<SearchResult *> *)getResults {
NSMutableArray<SearchResult *> * results = [[NSMutableArray alloc] initWithCapacity:MWMSearch.resultsCount];
for (NSUInteger i = 0; i < MWMSearch.resultsCount; ++i) {
SearchResult * result = [MWMSearch resultWithContainerIndex:i];
[results addObject:result];
}
return [results copy];
}
+ (SearchItemType)resultTypeWithRow:(NSUInteger)row {
auto itemsIndex = [MWMSearch manager].itemsIndex;
return [itemsIndex resultTypeWithRow:row];