forked from organicmaps/organicmaps
Do not edit old maps. Refactor edit buttos showups.
This commit is contained in:
parent
a9bdcb8f27
commit
82cc6171cc
13 changed files with 62 additions and 52 deletions
|
@ -1048,18 +1048,6 @@ Java_com_mapswithme_maps_Framework_nativeGetActiveObjectFormattedCuisine(JNIEnv
|
|||
return jni::ToJavaString(env, g_framework->GetPlacePageInfo().FormatCuisines());
|
||||
}
|
||||
|
||||
JNIEXPORT jboolean JNICALL
|
||||
Java_com_mapswithme_maps_Framework_nativeIsActiveObjectABuilding(JNIEnv * env, jclass)
|
||||
{
|
||||
return g_framework->GetPlacePageInfo().IsBuilding();
|
||||
}
|
||||
|
||||
JNIEXPORT jboolean JNICALL
|
||||
Java_com_mapswithme_maps_Framework_nativeCanAddPlaceFromPlacePage(JNIEnv * env, jclass clazz)
|
||||
{
|
||||
return g_framework->GetPlacePageInfo().ShouldShowAddPlace();
|
||||
}
|
||||
|
||||
JNIEXPORT jobject JNICALL
|
||||
Java_com_mapswithme_maps_Framework_nativeGetSponsoredHotelInfo(JNIEnv * env, jclass clazz)
|
||||
{
|
||||
|
|
|
@ -244,9 +244,21 @@ Java_com_mapswithme_maps_editor_Editor_nativeSaveEditedFeature(JNIEnv *, jclass)
|
|||
}
|
||||
|
||||
JNIEXPORT jboolean JNICALL
|
||||
Java_com_mapswithme_maps_editor_Editor_nativeIsFeatureEditable(JNIEnv *, jclass)
|
||||
Java_com_mapswithme_maps_editor_Editor_nativeShouldShowEditPlace(JNIEnv *, jclass)
|
||||
{
|
||||
return g_framework->GetPlacePageInfo().IsEditable();
|
||||
return g_framework->GetPlacePageInfo().ShouldShowEditPlace();
|
||||
}
|
||||
|
||||
JNIEXPORT jboolean JNICALL
|
||||
Java_com_mapswithme_maps_editor_Editor_nativeShouldShowAddPlace(JNIEnv *, jclass)
|
||||
{
|
||||
return g_framework->GetPlacePageInfo().ShouldShowAddPlace();
|
||||
}
|
||||
|
||||
JNIEXPORT jboolean JNICALL
|
||||
Java_com_mapswithme_maps_editor_Editor_nativeShouldShowAddBusiness(JNIEnv *, jclass)
|
||||
{
|
||||
return g_framework->GetPlacePageInfo().ShouldShowAddBusiness();
|
||||
}
|
||||
|
||||
JNIEXPORT jintArray JNICALL
|
||||
|
|
|
@ -212,7 +212,5 @@ public class Framework
|
|||
public static native boolean nativeIsInChoosePositionMode();
|
||||
public static native boolean nativeIsDownloadedMapAtScreenCenter();
|
||||
public static native String nativeGetActiveObjectFormattedCuisine();
|
||||
public static native boolean nativeIsActiveObjectABuilding();
|
||||
public static native boolean nativeCanAddPlaceFromPlacePage();
|
||||
public static native SponsoredHotelInfo nativeGetSponsoredHotelInfo();
|
||||
}
|
||||
|
|
|
@ -67,7 +67,9 @@ public final class Editor
|
|||
BuildConfig.APPLICATION_ID);
|
||||
}
|
||||
|
||||
public static native boolean nativeIsFeatureEditable();
|
||||
public static native boolean nativeShouldShowEditPlace();
|
||||
public static native boolean nativeShouldShowAddPlace();
|
||||
public static native boolean nativeShouldShowAddBusiness();
|
||||
@NonNull
|
||||
public static native int[] nativeGetEditableFields();
|
||||
|
||||
|
|
|
@ -696,10 +696,9 @@ public class PlacePageView extends RelativeLayout implements View.OnClickListene
|
|||
}
|
||||
else
|
||||
{
|
||||
UiUtils.showIf(Editor.nativeIsFeatureEditable(), mEditPlace);
|
||||
UiUtils.showIf(Framework.nativeIsActiveObjectABuilding() &&
|
||||
Editor.nativeGetMapObjectStatus() != Editor.OBSOLETE, mAddOrganisation);
|
||||
UiUtils.showIf(Framework.nativeCanAddPlaceFromPlacePage(), mAddPlace);
|
||||
UiUtils.showIf(Editor.nativeShouldShowEditPlace(), mEditPlace);
|
||||
UiUtils.showIf(Editor.nativeShouldShowAddBusiness(), mAddOrganisation);
|
||||
UiUtils.showIf(Editor.nativeShouldShowAddPlace(), mAddPlace);
|
||||
}
|
||||
|
||||
UiUtils.showIf(mSponsoredHotelInfo != null, mMoreInfo);
|
||||
|
|
|
@ -593,7 +593,7 @@ vector<uint32_t> Editor::GetFeaturesByStatus(MwmSet::MwmId const & mwmId, Featur
|
|||
EditableProperties Editor::GetEditableProperties(FeatureType const & feature) const
|
||||
{
|
||||
ASSERT(version::IsSingleMwm(feature.GetID().m_mwmId.GetInfo()->m_version.GetVersion()),
|
||||
("Edit mode should be available only on new datas"));
|
||||
("Edit mode should be available only on new data"));
|
||||
|
||||
ASSERT(GetFeatureStatus(feature.GetID()) != FeatureStatus::Obsolete,
|
||||
("Edit mode should not be available on obsolete features"));
|
||||
|
|
|
@ -197,7 +197,7 @@ typedef NS_ENUM(NSUInteger, MWMBottomMenuViewCell)
|
|||
case MWMBottomMenuViewCellAddPlace:
|
||||
{
|
||||
BOOL const isEnabled = self.controller.controlsManager.navigationState == MWMNavigationDashboardStateHidden &&
|
||||
version::IsSingleMwm(GetFramework().Storage().GetCurrentDataVersion());
|
||||
GetFramework().CanEditMap();
|
||||
[cell configureWithImageName:@"ic_add_place"
|
||||
label:L(@"placepage_add_place_button")
|
||||
badgeCount:0
|
||||
|
|
|
@ -178,7 +178,7 @@ void initFieldsMap()
|
|||
- (NSString *)getCellValue:(MWMPlacePageCellType)cellType
|
||||
{
|
||||
auto const s = MapsAppDelegate.theApp.mapViewController.controlsManager.navigationState;
|
||||
BOOL const editOrAddAreAvailable = s == MWMNavigationDashboardStateHidden && m_info.IsEditable();
|
||||
BOOL const navigationIsHidden = s == MWMNavigationDashboardStateHidden;
|
||||
switch (cellType)
|
||||
{
|
||||
case MWMPlacePageCellTypeName:
|
||||
|
@ -186,14 +186,14 @@ void initFieldsMap()
|
|||
case MWMPlacePageCellTypeCoordinate:
|
||||
return [self coordinate];
|
||||
case MWMPlacePageCellTypeAddPlaceButton:
|
||||
return editOrAddAreAvailable && m_info.ShouldShowAddPlace() ? @"" : nil;
|
||||
return navigationIsHidden && m_info.ShouldShowAddPlace() ? @"" : nil;
|
||||
case MWMPlacePageCellTypeBookmark:
|
||||
return m_info.IsBookmark() ? @"" : nil;
|
||||
case MWMPlacePageCellTypeEditButton:
|
||||
// TODO(Vlad): It's a really strange way to "display" cell if returned text is not nil.
|
||||
return editOrAddAreAvailable && !m_info.IsMyPosition() && m_info.IsFeature() ? @"": nil;
|
||||
return navigationIsHidden && m_info.ShouldShowEditPlace() ? @"" : nil;
|
||||
case MWMPlacePageCellTypeAddBusinessButton:
|
||||
return editOrAddAreAvailable && m_info.IsBuilding() ? @"" : nil;
|
||||
return navigationIsHidden && m_info.ShouldShowAddBusiness() ? @"" : nil;
|
||||
case MWMPlacePageCellTypeWebsite:
|
||||
return m_info.IsSponsoredHotel() ? nil : [self getDefaultField:cellType];
|
||||
case MWMPlacePageCellTypeBookingMore:
|
||||
|
|
|
@ -725,9 +725,14 @@ void Framework::FillPointInfo(m2::PointD const & mercator, string const & custom
|
|||
{
|
||||
auto feature = GetFeatureAtPoint(mercator);
|
||||
if (feature)
|
||||
{
|
||||
FillInfoFromFeatureType(*feature, info);
|
||||
}
|
||||
else
|
||||
{
|
||||
info.m_customName = customTitle.empty() ? m_stringsBundle.GetString("placepage_unknown_place") : customTitle;
|
||||
info.m_canEditOrAdd = CanEditMap();
|
||||
}
|
||||
|
||||
// This line overwrites mercator center from area feature which can be far away.
|
||||
info.SetMercator(mercator);
|
||||
|
@ -751,9 +756,8 @@ void Framework::FillInfoFromFeatureType(FeatureType const & ft, place_page::Info
|
|||
info.m_sponsoredDescriptionUrl = GetBookingApi().GetDescriptionUrl(baseUrl);
|
||||
}
|
||||
|
||||
info.m_isEditable = featureStatus != osm::Editor::FeatureStatus::Obsolete &&
|
||||
!info.IsSponsoredHotel();
|
||||
info.m_isDataEditable = version::IsSingleMwm(ft.GetID().m_mwmId.GetInfo()->m_version.GetVersion());
|
||||
info.m_canEditOrAdd = featureStatus != osm::Editor::FeatureStatus::Obsolete && CanEditMap() &&
|
||||
!info.IsSponsoredHotel();
|
||||
|
||||
info.m_localizedWifiString = m_stringsBundle.GetString("wifi");
|
||||
info.m_localizedRatingString = m_stringsBundle.GetString("place_page_booking_rating");
|
||||
|
@ -2194,11 +2198,7 @@ void Framework::UpdateSavedDataVersion()
|
|||
settings::Set("DataVersion", m_storage.GetCurrentDataVersion());
|
||||
}
|
||||
|
||||
int64_t Framework::GetCurrentDataVersion()
|
||||
{
|
||||
return m_storage.GetCurrentDataVersion();
|
||||
}
|
||||
|
||||
int64_t Framework::GetCurrentDataVersion() const { return m_storage.GetCurrentDataVersion(); }
|
||||
void Framework::BuildRoute(m2::PointD const & finish, uint32_t timeoutSec)
|
||||
{
|
||||
ASSERT_THREAD_CHECKER(m_threadChecker, ("BuildRoute"));
|
||||
|
@ -2723,6 +2723,8 @@ void SetHostingBuildingAddress(FeatureID const & hostingBuildingFid, Index const
|
|||
}
|
||||
} // namespace
|
||||
|
||||
bool Framework::CanEditMap() const { return version::IsSingleMwm(GetCurrentDataVersion()); }
|
||||
|
||||
bool Framework::CreateMapObject(m2::PointD const & mercator, uint32_t const featureType,
|
||||
osm::EditableMapObject & emo) const
|
||||
{
|
||||
|
|
|
@ -579,7 +579,7 @@ public:
|
|||
//@{
|
||||
bool IsDataVersionUpdated();
|
||||
void UpdateSavedDataVersion();
|
||||
int64_t GetCurrentDataVersion();
|
||||
int64_t GetCurrentDataVersion() const;
|
||||
//@}
|
||||
|
||||
public:
|
||||
|
@ -655,6 +655,8 @@ public:
|
|||
//@{
|
||||
/// Initializes feature for Create Object UI.
|
||||
/// @returns false in case when coordinate is in the ocean or mwm is not downloaded.
|
||||
bool CanEditMap() const;
|
||||
|
||||
bool CreateMapObject(m2::PointD const & mercator, uint32_t const featureType, osm::EditableMapObject & emo) const;
|
||||
/// @returns false if feature is invalid or can't be edited.
|
||||
bool GetEditableMapObject(FeatureID const & fid, osm:: EditableMapObject & emo) const;
|
||||
|
|
|
@ -15,19 +15,25 @@ char const * const Info::kPricingSymbol = "$";
|
|||
bool Info::IsFeature() const { return m_featureID.IsValid(); }
|
||||
bool Info::IsBookmark() const { return m_bac != MakeEmptyBookmarkAndCategory(); }
|
||||
bool Info::IsMyPosition() const { return m_isMyPosition; }
|
||||
bool Info::HasApiUrl() const { return !m_apiUrl.empty(); }
|
||||
bool Info::IsEditable() const { return m_isEditable && m_isDataEditable; }
|
||||
bool Info::IsDataEditable() const { return m_isDataEditable; }
|
||||
bool Info::HasWifi() const { return GetInternet() == osm::Internet::Wlan; }
|
||||
bool Info::IsSponsoredHotel() const { return m_isSponsoredHotel; }
|
||||
|
||||
bool Info::ShouldShowAddPlace() const
|
||||
{
|
||||
return !IsSponsoredHotel() &&
|
||||
(!IsFeature() || (!IsPointType() && !IsBuilding())) &&
|
||||
m_isDataEditable;
|
||||
auto const isPointOrBuilding = IsPointType() || IsBuilding();
|
||||
return m_canEditOrAdd && !(IsFeature() && isPointOrBuilding);
|
||||
}
|
||||
|
||||
bool Info::IsSponsoredHotel() const { return m_isSponsoredHotel; }
|
||||
bool Info::ShouldShowAddBusiness() const { return m_canEditOrAdd && IsBuilding(); }
|
||||
|
||||
bool Info::ShouldShowEditPlace() const
|
||||
{
|
||||
return m_canEditOrAdd &&
|
||||
// TODO(mgsergio): Does IsFeature() imply !IsMyPosition()?
|
||||
!IsMyPosition() && IsFeature();
|
||||
}
|
||||
|
||||
bool Info::HasApiUrl() const { return !m_apiUrl.empty(); }
|
||||
bool Info::HasWifi() const { return GetInternet() == osm::Internet::Wlan; }
|
||||
|
||||
string Info::FormatNewBookmarkName() const
|
||||
{
|
||||
|
|
|
@ -28,14 +28,14 @@ public:
|
|||
bool IsFeature() const;
|
||||
bool IsBookmark() const;
|
||||
bool IsMyPosition() const;
|
||||
bool ShouldShowAddPlace() const;
|
||||
bool IsSponsoredHotel() const;
|
||||
|
||||
bool ShouldShowAddPlace() const;
|
||||
bool ShouldShowAddBusiness() const;
|
||||
bool ShouldShowEditPlace() const;
|
||||
|
||||
/// @returns true if Back API button should be displayed.
|
||||
bool HasApiUrl() const;
|
||||
/// @returns true if Edit Place button should be displayed.
|
||||
bool IsEditable() const;
|
||||
/// @returns true if PlacePage was opened on a single mwm (see version::IsSingleMwm).
|
||||
bool IsDataEditable() const;
|
||||
|
||||
/// TODO: Support all possible Internet types in UI. @See MapObject::GetInternet().
|
||||
bool HasWifi() const;
|
||||
|
@ -91,8 +91,9 @@ public:
|
|||
storage::TCountryId m_countryId = storage::kInvalidCountryId;
|
||||
|
||||
bool m_isMyPosition = false;
|
||||
bool m_isEditable = false;
|
||||
bool m_isDataEditable = false;
|
||||
/// True if editing of a selected point is allowed by basic logic.
|
||||
/// See initialization in framework.
|
||||
bool m_canEditOrAdd = false;
|
||||
|
||||
// TODO(AlexZ): Temporary solution. It's better to use a wifi icon in UI instead of text.
|
||||
string m_localizedWifiString;
|
||||
|
|
|
@ -165,7 +165,7 @@ PlacePageDialog::PlacePageDialog(QWidget * parent, place_page::Info const & info
|
|||
connect(closeButton, SIGNAL(clicked()), this, SLOT(OnClose()));
|
||||
dbb->addButton(closeButton, QDialogButtonBox::RejectRole);
|
||||
|
||||
if (info.IsEditable())
|
||||
if (info.ShouldShowEditPlace())
|
||||
{
|
||||
QPushButton * editButton = new QPushButton("Edit Place");
|
||||
connect(editButton, SIGNAL(clicked()), this, SLOT(OnEdit()));
|
||||
|
|
Loading…
Add table
Reference in a new issue