Skip to content
Snippets Groups Projects
Commit 858e3854 authored by Kateryna Kostiuk's avatar Kateryna Kostiuk
Browse files

UI/UX: fix spaces in smart list

Change-Id: Ibafa01d8ab349873f20c49dd7d6b9a548b12a252
parent 2a40aabd
No related branches found
No related tags found
No related merge requests found
......@@ -233,9 +233,10 @@ extension UIImage {
return newImage
}
func drawText(text: String, backgroundColor: UIColor, textColor: UIColor, size: CGSize) -> UIImage? {
func drawText(text: String, backgroundColor: UIColor, textColor: UIColor, size: CGSize, textFontSize: CGFloat? = nil) -> UIImage? {
// Setups up the font attributes that will be later used to dictate how the text should be drawn
let textFont = UIFont.systemFont(ofSize: 20, weight: .semibold)
let textFontSize = textFontSize == nil ? 20 : textFontSize
let textFont = UIFont.systemFont(ofSize: textFontSize!, weight: .semibold)
let textFontAttributes = [
NSAttributedString.Key.font: textFont,
NSAttributedString.Key.foregroundColor: textColor]
......@@ -320,7 +321,7 @@ extension UIImage {
return UIImage().drawText(text: username.prefixString().capitalized,
backgroundColor: fbaBGColor,
textColor: .white,
size: CGSize(width: size + 8, height: size + 8))?.circleMasked
size: CGSize(width: size + 8, height: size + 8), textFontSize: 14)?.circleMasked
}
return nil
}
......
......@@ -264,7 +264,9 @@ class SmartlistViewController: UIViewController, StoryboardBased, ViewModelBased
})
.disposed(by: self.disposeBag)
self.navigationItem.leftBarButtonItem = accountButtonItem
self.navigationItem.rightBarButtonItems = [createSearchButton(), createMenuButton()]
let space = UIBarButtonItem(barButtonSystemItem: .fixedSpace, target: nil, action: nil)
space.width = 20
self.navigationItem.rightBarButtonItems = [createSearchButton(), space, createMenuButton()]
self.conversationsTableView.tableFooterView = UIView()
}
......@@ -487,13 +489,13 @@ class SmartlistViewController: UIViewController, StoryboardBased, ViewModelBased
private func setupCommonUI(customNavBar: SmartListNavigationBar) {
navigationItem.title = ""
widgetsTopConstraint.constant = 40
widgetsTopConstraint.constant = 42
customNavBar.customHeight = 70
customNavBar.searchActive = true
}
private func setupUIForSipAccount(customNavBar: SmartListNavigationBar) {
let bookButton = createSearchBarButtonWithImage(named: "book.circle", weight: .light, width: 27)
let bookButton = createSearchBarButtonWithImage(named: "book.circle", weight: .regular, width: 27)
bookButton.setImage(UIImage(asset: Asset.phoneBook), for: .normal)
bookButton.rx.tap
.subscribe(onNext: { [weak self] in
......@@ -501,7 +503,7 @@ class SmartlistViewController: UIViewController, StoryboardBased, ViewModelBased
})
.disposed(by: customNavBar.disposeBag)
let dialpadCodeButton = createSearchBarButtonWithImage(named: "square.grid.3x3.topleft.filled", weight: .light, width: 25)
let dialpadCodeButton = createSearchBarButtonWithImage(named: "square.grid.3x3.topleft.filled", weight: .regular, width: 25)
dialpadCodeButton.rx.tap
.subscribe(onNext: { [weak self] in
self?.viewModel.showDialpad()
......@@ -512,14 +514,14 @@ class SmartlistViewController: UIViewController, StoryboardBased, ViewModelBased
}
private func setupUIForNonSipAccount(customNavBar: SmartListNavigationBar) {
let qrCodeButton = createSearchBarButtonWithImage(named: "qrcode", weight: .regular, width: 25)
let qrCodeButton = createSearchBarButtonWithImage(named: "qrcode", weight: .medium, width: 25)
qrCodeButton.rx.tap
.subscribe(onNext: { [weak self] in
self?.viewModel.showQRCode()
})
.disposed(by: customNavBar.disposeBag)
let swarmButton = createSearchBarButtonWithImage(named: "person.2", weight: .regular, width: 32)
let swarmButton = createSearchBarButtonWithImage(named: "person.2", weight: .medium, width: 32)
swarmButton.rx.tap
.subscribe(onNext: { [weak self] in
self?.viewModel.createGroup()
......
......@@ -25,7 +25,8 @@ class SmartListNavigationBar: UINavigationBar {
private struct Constants {
static let topViewHeight: CGFloat = 50.0
static let buttonSpacing: CGFloat = -15.0
static let buttonSpacing: CGFloat = -22.0
static let trailing: CGFloat = -15.0
}
var topView: UIView?
......@@ -83,7 +84,7 @@ private extension SmartListNavigationBar {
let guide = self.safeAreaLayoutGuide
NSLayoutConstraint.activate([
view.topAnchor.constraint(equalTo: guide.topAnchor),
view.topAnchor.constraint(equalTo: guide.topAnchor, constant: -5),
view.heightAnchor.constraint(equalToConstant: Constants.topViewHeight),
view.leadingAnchor.constraint(equalTo: guide.leadingAnchor),
view.trailingAnchor.constraint(equalTo: guide.trailingAnchor)
......@@ -97,7 +98,7 @@ private extension SmartListNavigationBar {
let title = UILabel()
title.text = L10n.Smartlist.searchBar
title.font = UIFont.systemFont(ofSize: 18, weight: .medium)
title.font = UIFont.systemFont(ofSize: 18, weight: .semibold)
title.translatesAutoresizingMaskIntoConstraints = false
topView.addSubview(title)
......@@ -118,7 +119,7 @@ private extension SmartListNavigationBar {
if let prevBtn = previousButton {
button.trailingAnchor.constraint(equalTo: prevBtn.leadingAnchor, constant: Constants.buttonSpacing).isActive = true
} else {
button.trailingAnchor.constraint(equalTo: topView.trailingAnchor, constant: Constants.buttonSpacing).isActive = true
button.trailingAnchor.constraint(equalTo: topView.trailingAnchor, constant: Constants.trailing).isActive = true
}
button.centerYAnchor.constraint(equalTo: topView.centerYAnchor).isActive = true
previousButton = button
......@@ -134,7 +135,7 @@ private extension SmartListNavigationBar {
}
if stringFromClass.contains("SearchBar") && searchActive {
subview.frame = CGRect(x: 0, y: 40, width: frame.width, height: subview.frame.height)
subview.frame = CGRect(x: 0, y: 36, width: frame.width, height: subview.frame.height)
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment