mirror of https://github.com/procxx/kepka.git
Improve local search in sticker sets.
- Don't index special sticker sets, like "Favorite stickers". - Show "Not found." if no local results and waiting for server-side.
This commit is contained in:
parent
b6e7625016
commit
87ab4d9dd1
|
@ -919,7 +919,7 @@ void StickersListWidget::refreshSearchRows(
|
||||||
_searchSets.clear();
|
_searchSets.clear();
|
||||||
fillLocalSearchRows(_searchNextQuery);
|
fillLocalSearchRows(_searchNextQuery);
|
||||||
|
|
||||||
if (!cloudSets && _searchSets.empty()) {
|
if (!cloudSets && _searchNextQuery.isEmpty()) {
|
||||||
showStickerSet(!_mySets.empty()
|
showStickerSet(!_mySets.empty()
|
||||||
? _mySets[0].id
|
? _mySets[0].id
|
||||||
: Stickers::FeaturedSetId);
|
: Stickers::FeaturedSetId);
|
||||||
|
@ -1711,7 +1711,11 @@ void StickersListWidget::refreshSearchSets() {
|
||||||
void StickersListWidget::refreshSearchIndex() {
|
void StickersListWidget::refreshSearchIndex() {
|
||||||
_searchIndex.clear();
|
_searchIndex.clear();
|
||||||
for (const auto &set : _mySets) {
|
for (const auto &set : _mySets) {
|
||||||
const auto list = TextUtilities::PrepareSearchWords(set.title + ' ' + set.shortName);
|
if (set.flags & MTPDstickerSet_ClientFlag::f_special) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const auto string = set.title + ' ' + set.shortName;
|
||||||
|
const auto list = TextUtilities::PrepareSearchWords(string);
|
||||||
_searchIndex.emplace_back(set.id, list);
|
_searchIndex.emplace_back(set.id, list);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue