mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-24 02:22:44 +02:00
App Layout: last UI tweaks before RC
This commit is contained in:
@@ -17,6 +17,14 @@
|
||||
import Foundation
|
||||
import Reusable
|
||||
|
||||
/// `RootTabEmptyViewDisplayMode` defines the way image and text should be displayed
|
||||
enum RootTabEmptyViewDisplayMode {
|
||||
/// Default display: fitted for big images
|
||||
case `default`
|
||||
/// The image is shrinked to fit icon size and is rendered as templated.
|
||||
case icon
|
||||
}
|
||||
|
||||
/// `RootTabEmptyView` is a view to display when there is no UI item to display on a screen.
|
||||
@objcMembers
|
||||
final class RootTabEmptyView: UIView, NibLoadable {
|
||||
@@ -25,11 +33,13 @@ final class RootTabEmptyView: UIView, NibLoadable {
|
||||
|
||||
// MARK: Outlets
|
||||
|
||||
@IBOutlet private weak var iconBackgroundView: UIView!
|
||||
@IBOutlet private weak var iconView: UIImageView!
|
||||
@IBOutlet private weak var imageView: UIImageView!
|
||||
@IBOutlet private weak var titleLabel: UILabel!
|
||||
@IBOutlet private weak var informationLabel: UILabel!
|
||||
@IBOutlet private(set) weak var contentView: UIView!
|
||||
|
||||
|
||||
// MARK: Private
|
||||
|
||||
private var theme: Theme!
|
||||
@@ -50,14 +60,25 @@ final class RootTabEmptyView: UIView, NibLoadable {
|
||||
super.awakeFromNib()
|
||||
|
||||
self.informationLabel.text = VectorL10n.homeEmptyViewInformation
|
||||
|
||||
self.iconBackgroundView.layer.masksToBounds = true
|
||||
self.iconBackgroundView.layer.cornerRadius = self.iconBackgroundView.bounds.width / 2
|
||||
self.iconBackgroundView.isHidden = true
|
||||
}
|
||||
|
||||
// MARK: - Public
|
||||
|
||||
func fill(with image: UIImage, title: String, informationText: String) {
|
||||
fill(with: image, title: title, informationText: informationText, displayMode: .default)
|
||||
}
|
||||
|
||||
func fill(with image: UIImage, title: String, informationText: String, displayMode: RootTabEmptyViewDisplayMode) {
|
||||
self.imageView.image = image
|
||||
self.iconView.image = image.withRenderingMode(.alwaysTemplate)
|
||||
self.titleLabel.text = title
|
||||
self.informationLabel.text = informationText
|
||||
self.imageView.isHidden = displayMode != .default
|
||||
self.iconBackgroundView.isHidden = displayMode != .icon
|
||||
}
|
||||
}
|
||||
|
||||
@@ -71,5 +92,7 @@ extension RootTabEmptyView: Themable {
|
||||
|
||||
self.titleLabel.textColor = theme.textPrimaryColor
|
||||
self.informationLabel.textColor = theme.textSecondaryColor
|
||||
self.iconBackgroundView.backgroundColor = theme.colors.quinaryContent
|
||||
self.iconView.tintColor = theme.textSecondaryColor
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user