[guides on map] shown guides counting is added

This commit is contained in:
Arsentiy Milchakov 2020-05-08 14:18:43 +03:00 committed by Daria Volvenkova
parent 81f70e02b0
commit ff582ea91f
2 changed files with 14 additions and 0 deletions

View file

@ -69,6 +69,7 @@ void GuidesManager::SetEnabled(bool enabled)
Clear();
ChangeState(newState);
m_shownGuides.clear();
if (!enabled)
return;
@ -209,6 +210,8 @@ GuidesManager::GuidesGallery GuidesManager::GetGallery() const
auto url = url::Join(BOOKMARKS_CATALOG_FRONT_URL, languages::GetCurrentNorm(), "v3/mobilefront",
info.m_id);
InjectUTM(url, UTM::GuidesOnMapGallery);
InjectUTMTerm(url, std::to_string(m_shownGuides.size()));
item.m_url = std::move(url);
item.m_imageUrl = info.m_imageUrl;
item.m_title = info.m_name;
@ -253,6 +256,11 @@ void GuidesManager::SetActiveGuide(std::string const & guideId)
UpdateActiveGuide();
}
uint64_t GuidesManager::GetShownGuidesCount() const
{
return m_shownGuides.size();
}
void GuidesManager::SetGalleryListener(GuidesGalleryChangedFn const & onGalleryChanged)
{
m_onGalleryChanged = onGalleryChanged;
@ -299,6 +307,7 @@ void GuidesManager::UpdateGuidesMarks()
mark->SetGuideId(guide.m_guideInfo.m_id);
mark->SetIsDownloaded(IsGuideDownloaded(guide.m_guideInfo.m_id));
mark->SetIndex(++m_nextMarkIndex);
m_shownGuides.insert(guide.m_guideInfo.m_id);
}
}
UpdateActiveGuide();

View file

@ -15,6 +15,7 @@
#include <functional>
#include <memory>
#include <string>
#include <unordered_set>
#include <vector>
class GuidesManager final
@ -90,6 +91,8 @@ public:
std::string GetActiveGuide() const;
void SetActiveGuide(std::string const & guideId);
uint64_t GetShownGuidesCount() const;
using GuidesGalleryChangedFn = std::function<void(bool reloadGallery)>;
void SetGalleryListener(GuidesGalleryChangedFn const & onGalleryChangedFn);
@ -129,6 +132,8 @@ private:
df::DrapeEngineSafePtr m_drapeEngine;
uint32_t m_nextMarkIndex = 0;
std::unordered_set<std::string> m_shownGuides;
};
std::string DebugPrint(GuidesManager::GuidesState state);