From da5c046beab155aa92f1da353db693dd3a0f3067 Mon Sep 17 00:00:00 2001 From: Arsentiy Milchakov Date: Thu, 21 Feb 2019 13:26:43 +0300 Subject: [PATCH] [ios][android][ugc] review fixes. --- .../maps/metrics/UserActionsLogger.cpp | 9 ++----- .../maps/ugc/UGCEditorFragment.java | 5 +--- iphone/Maps/UI/PlacePage/MWMPlacePageData.mm | 13 +++++++--- .../Maps/UI/PlacePage/MWMPlacePageManager.mm | 25 ++++--------------- .../UGCAddReview/UGCAddReviewController.swift | 4 +-- map/framework.cpp | 12 ++------- map/utils.cpp | 14 +++++++++++ map/utils.hpp | 6 +++++ 8 files changed, 42 insertions(+), 46 deletions(-) diff --git a/android/jni/com/mapswithme/maps/metrics/UserActionsLogger.cpp b/android/jni/com/mapswithme/maps/metrics/UserActionsLogger.cpp index 003a6617b8..6b45471d45 100644 --- a/android/jni/com/mapswithme/maps/metrics/UserActionsLogger.cpp +++ b/android/jni/com/mapswithme/maps/metrics/UserActionsLogger.cpp @@ -14,14 +14,9 @@ namespace void RegisterEventIfPossible(eye::MapObject::Event::Type const type) { auto & info = g_framework->GetPlacePageInfo(); - auto const userPos = g_framework->NativeFramework()->GetCurrentPosition(); - if (userPos) - { - auto const mapObject = utils::MakeEyeMapObject(info); - if (!mapObject.IsEmpty()) - eye::Eye::Event::MapObjectEvent(mapObject, type, userPos.get()); - } + + utils::RegisterEyeEventIfPossible(type, userPos, info); } } // namespace diff --git a/android/src/com/mapswithme/maps/ugc/UGCEditorFragment.java b/android/src/com/mapswithme/maps/ugc/UGCEditorFragment.java index c0d7440753..cc0b4c1d95 100644 --- a/android/src/com/mapswithme/maps/ugc/UGCEditorFragment.java +++ b/android/src/com/mapswithme/maps/ugc/UGCEditorFragment.java @@ -119,13 +119,10 @@ public class UGCEditorFragment extends BaseToolbarAuthFragment if (!ConnectionState.isConnected()) { if (isAuthorized()) - { Utils.toastShortcut(getContext(), R.string.ugc_thanks_message_auth); - } else - { Utils.toastShortcut(getContext(), R.string.ugc_thanks_message_not_auth); - } + finishActivity(); return; } diff --git a/iphone/Maps/UI/PlacePage/MWMPlacePageData.mm b/iphone/Maps/UI/PlacePage/MWMPlacePageData.mm index 29d6611d51..cf3f5d473e 100644 --- a/iphone/Maps/UI/PlacePage/MWMPlacePageData.mm +++ b/iphone/Maps/UI/PlacePage/MWMPlacePageData.mm @@ -12,6 +12,7 @@ #include "local_ads/event.hpp" #include "map/bookmark_helpers.hpp" +#include "map/utils.hpp" #include "platform/preferred_languages.hpp" @@ -660,13 +661,19 @@ NSString * const kUserDefaultsLatLonAsDMSKey = @"UserDefaultsLatLonAsDMS"; UGCUpdate update{r, t, std::chrono::system_clock::now()}; GetFramework().GetUGCApi()->SetUGCUpdate(m_info.GetID(), update, - [resultHandler](Storage::SettingResult const result) + [resultHandler, info = m_info](Storage::SettingResult const result) { if (result != Storage::SettingResult::Success) - return resultHandler(NO); - + { + resultHandler(NO); + return; + } + resultHandler(YES); GetFramework().UpdatePlacePageInfoForCurrentSelection(); + + utils::RegisterEyeEventIfPossible(eye::MapObject::Event::Type::UgcSaved, + GetFramework().GetCurrentPosition(), info); }); } diff --git a/iphone/Maps/UI/PlacePage/MWMPlacePageManager.mm b/iphone/Maps/UI/PlacePage/MWMPlacePageManager.mm index 8b542c4f40..985a9ab524 100644 --- a/iphone/Maps/UI/PlacePage/MWMPlacePageManager.mm +++ b/iphone/Maps/UI/PlacePage/MWMPlacePageManager.mm @@ -70,12 +70,7 @@ void logSponsoredEvent(MWMPlacePageData * data, NSString * eventName) void RegisterEventIfPossible(eye::MapObject::Event::Type const type, place_page::Info const & info) { auto const userPos = GetFramework().GetCurrentPosition(); - if (userPos) - { - auto const mapObject = utils::MakeEyeMapObject(info); - if (!mapObject.IsEmpty()) - eye::Eye::Event::MapObjectEvent(mapObject, type, userPos.get()); - } + utils::RegisterEyeEventIfPossible(type, userPos, info); } } // namespace @@ -691,22 +686,12 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type, place_page: auto data = self.data; if (!data) { - NSAssert(false, @""); - resultHandler(NO); - return; + NSAssert(false, @""); + resultHandler(NO); + return; } - __weak auto weakData = data; - [data setUGCUpdateFrom:model resultHandler:^(BOOL result) - { - if (result) - { - auto data = weakData; - if (data) - RegisterEventIfPossible(eye::MapObject::Event::Type::UgcSaved, data.getRawData); - } - resultHandler(result); - }]; + [data setUGCUpdateFrom:model resultHandler:resultHandler]; } @end diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/UGCAddReview/UGCAddReviewController.swift b/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/UGCAddReview/UGCAddReviewController.swift index 76551aff99..7b4377aea4 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/UGCAddReview/UGCAddReviewController.swift +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/UGCAddReview/UGCAddReviewController.swift @@ -33,7 +33,7 @@ final class UGCAddReviewController: MWMTableViewController { } private var sections: [Sections] = [] - private var delegate: UGCAddReviewControllerDelegate? + private var delegate: UGCAddReviewControllerDelegate! override func viewDidLoad() { super.viewDidLoad() @@ -70,7 +70,7 @@ final class UGCAddReviewController: MWMTableViewController { reviewPosted = true model.text = text - delegate!.saveUgc(model: model, resultHandler: { (saveResult) in + delegate.saveUgc(model: model, resultHandler: { (saveResult) in guard let nc = self.navigationController else { return } if !saveResult { diff --git a/map/framework.cpp b/map/framework.cpp index 3fa9b278d4..2e5085d2c6 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -2456,16 +2456,8 @@ df::SelectionShape::ESelectedObject Framework::OnTapEventImpl(TapEvent const & t { GetBookmarkManager().SelectionMark().SetPtOrg(outInfo.GetMercator()); - auto const userPos = GetCurrentPosition(); - if (userPos) - { - auto const mapObject = utils::MakeEyeMapObject(outInfo); - if (!mapObject.IsEmpty()) - { - eye::Eye::Event::MapObjectEvent(mapObject, eye::MapObject::Event::Type::Open, - userPos.get()); - } - } + utils::RegisterEyeEventIfPossible(eye::MapObject::Event::Type::Open, GetCurrentPosition(), + outInfo); return df::SelectionShape::OBJECT_POI; } diff --git a/map/utils.cpp b/map/utils.cpp index 2ada12633d..8a06e87da6 100644 --- a/map/utils.cpp +++ b/map/utils.cpp @@ -6,6 +6,8 @@ #include "indexer/feature_algo.hpp" #include "indexer/feature_decl.hpp" +#include "metrics/eye.hpp" + namespace utils { eye::MapObject MakeEyeMapObject(place_page::Info const & info) @@ -50,4 +52,16 @@ eye::MapObject MakeEyeMapObject(FeatureType & ft) return mapObject; } + +void RegisterEyeEventIfPossible(eye::MapObject::Event::Type const type, + boost::optional const & userPos, + place_page::Info const & info) +{ + if (!userPos) + return; + + auto const mapObject = utils::MakeEyeMapObject(info); + if (!mapObject.IsEmpty()) + eye::Eye::Event::MapObjectEvent(mapObject, type, *userPos); +} } // namespace utils diff --git a/map/utils.hpp b/map/utils.hpp index b3d4c8589b..de4d04e067 100644 --- a/map/utils.hpp +++ b/map/utils.hpp @@ -2,6 +2,8 @@ #include "metrics/eye_info.hpp" +#include + namespace place_page { class Info; @@ -13,4 +15,8 @@ namespace utils { eye::MapObject MakeEyeMapObject(place_page::Info const & info); eye::MapObject MakeEyeMapObject(FeatureType & ft); + +void RegisterEyeEventIfPossible(eye::MapObject::Event::Type const type, + boost::optional const & userPos, + place_page::Info const & info); } // namespace utils