From 9b93d66f3d52258c9b996ce6d4c570ac52da1703 Mon Sep 17 00:00:00 2001 From: Kiryl Kaveryn Date: Wed, 29 Jan 2025 14:03:01 +0400 Subject: [PATCH] [ios] refactor the BottomMenuLayerButton The runtime attributes were removed from the xib. Because it is really hard to debug them and there is no reason to set the bunch of the same attrs to the multiple items. Such configurations should be done pogrammatically. Signed-off-by: Kiryl Kaveryn --- .../Menu/Cells/BottomMenuLayersCell.swift | 18 +++++++++- .../Menu/Cells/BottomMenuLayersCell.xib | 35 ------------------- 2 files changed, 17 insertions(+), 36 deletions(-) diff --git a/iphone/Maps/UI/BottomMenu/Menu/Cells/BottomMenuLayersCell.swift b/iphone/Maps/UI/BottomMenu/Menu/Cells/BottomMenuLayersCell.swift index f970736ad8..704445eda3 100644 --- a/iphone/Maps/UI/BottomMenu/Menu/Cells/BottomMenuLayersCell.swift +++ b/iphone/Maps/UI/BottomMenu/Menu/Cells/BottomMenuLayersCell.swift @@ -25,8 +25,15 @@ class BottomMenuLayersCell: UITableViewCell { super.awakeFromNib() MapOverlayManager.add(self) closeButton.setImage(UIImage(named: "ic_close")) + setupButtons() } - + + private func setupButtons() { + outdoorButton.setupWith(image: UIImage(resource: .btnMenuOutdoors), text: L("button_layer_outdoor")) + isoLinesButton.setupWith(image: UIImage(resource: .btnMenuIsomaps), text: L("button_layer_isolines")) + subwayButton.setupWith(image: UIImage(resource: .btnMenuSubway), text: L("button_layer_subway")) + } + deinit { MapOverlayManager.remove(self) } @@ -89,3 +96,12 @@ private extension BottomMenuLayersCell { enabled ? .mapMenuButtonEnabled : .mapMenuButtonDisabled } } + +private extension BottomMenuLayerButton { + func setupWith(image: UIImage, text: String) { + self.image = image + spacing = 10 + numberOfLines = 2 + localizedText = text + } +} diff --git a/iphone/Maps/UI/BottomMenu/Menu/Cells/BottomMenuLayersCell.xib b/iphone/Maps/UI/BottomMenu/Menu/Cells/BottomMenuLayersCell.xib index e017f87d74..0af76d2f3d 100644 --- a/iphone/Maps/UI/BottomMenu/Menu/Cells/BottomMenuLayersCell.xib +++ b/iphone/Maps/UI/BottomMenu/Menu/Cells/BottomMenuLayersCell.xib @@ -83,16 +83,6 @@ - - - - - - - - - - @@ -100,16 +90,6 @@ - - - - - - - - - - @@ -117,16 +97,6 @@ - - - - - - - - - - @@ -178,9 +148,4 @@ - - - - -