From 5dbc8803e6633931afa4d6f02736d82633e54acd Mon Sep 17 00:00:00 2001 From: David Martinez <47610359+dvdmrtnz@users.noreply.github.com> Date: Sun, 10 Dec 2023 16:00:29 +0100 Subject: [PATCH] =?UTF-8?q?[core]=20Add=20credit=20card=20emoji=20(?= =?UTF-8?q?=F0=9F=92=B3)=20to=20Place=20Page=20subtitle=20if=20it=20has=20?= =?UTF-8?q?ATM?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: David Martinez <47610359+dvdmrtnz@users.noreply.github.com> --- indexer/feature_utils.cpp | 6 ++++++ indexer/feature_utils.hpp | 3 +++ indexer/map_object.cpp | 5 +++++ indexer/map_object.hpp | 3 +++ map/place_page_info.cpp | 5 +++++ 5 files changed, 22 insertions(+) diff --git a/indexer/feature_utils.cpp b/indexer/feature_utils.cpp index b3bd659ed4..2bdb3830a2 100644 --- a/indexer/feature_utils.cpp +++ b/indexer/feature_utils.cpp @@ -438,4 +438,10 @@ string GetLocalizedFeeType(TypesHolder const & types) return localized_types[0]; } +bool HasAtm(TypesHolder const & types) +{ + auto const & isAtmType = ftypes::IsATMChecker::Instance(); + return isAtmType(types); +} + } // namespace feature diff --git a/indexer/feature_utils.hpp b/indexer/feature_utils.hpp index 823caffb58..5988733a5c 100644 --- a/indexer/feature_utils.hpp +++ b/indexer/feature_utils.hpp @@ -129,4 +129,7 @@ namespace feature // Returns fee type localized by platform. std::string GetLocalizedFeeType(TypesHolder const & types); + /// Returns true if feature has ATM type. + bool HasAtm(TypesHolder const & types); + } // namespace feature diff --git a/indexer/map_object.cpp b/indexer/map_object.cpp index 6bc4d03fa8..634ab0458f 100644 --- a/indexer/map_object.cpp +++ b/indexer/map_object.cpp @@ -168,6 +168,11 @@ string MapObject::GetLocalizedFeeType() const return feature::GetLocalizedFeeType(m_types); } +bool MapObject::HasAtm() const +{ + return feature::HasAtm(m_types); +} + string MapObject::FormatCuisines() const { return strings::JoinStrings(GetLocalizedCuisines(), kFieldsSeparator); diff --git a/indexer/map_object.hpp b/indexer/map_object.hpp index e38da0c592..a5da6e0a93 100644 --- a/indexer/map_object.hpp +++ b/indexer/map_object.hpp @@ -100,6 +100,9 @@ public: int GetStars() const; ftraits::WheelchairAvailability GetWheelchairType() const; + /// @returns true if feature has ATM type. + bool HasAtm() const; + /// @returns formatted elevation in feet or meters, or empty string. std::string GetElevationFormatted() const; /// @} diff --git a/map/place_page_info.cpp b/map/place_page_info.cpp index acf20bbff4..d146b741a5 100644 --- a/map/place_page_info.cpp +++ b/map/place_page_info.cpp @@ -22,6 +22,7 @@ namespace place_page char const * const Info::kStarSymbol = "★"; char const * const Info::kMountainSymbol = "▲"; char const * const kWheelchairSymbol = "\u267F"; +char const * const kAtmSymbol = "💳"; bool Info::IsBookmark() const { @@ -162,6 +163,10 @@ std::string Info::FormatSubtitle(bool withType) const auto const eleStr = GetElevationFormatted(); if (!eleStr.empty()) append(kMountainSymbol + eleStr); + + // ATM + if (HasAtm()) + append(kAtmSymbol); // Internet. if (HasWifi())