79 lines
2.4 KiB
Swift
79 lines
2.4 KiB
Swift
//
|
|
// Copyright 2021-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import UIKit
|
|
import Reusable
|
|
|
|
@objc protocol FindYourContactsFooterViewDelegate {
|
|
func contactsFooterViewDidRequestFindContacts(_ footerView: FindYourContactsFooterView)
|
|
}
|
|
|
|
@objcMembers
|
|
class FindYourContactsFooterView: UIView, NibLoadable, Themable {
|
|
|
|
// MARK: - Properties
|
|
|
|
weak var delegate: FindYourContactsFooterViewDelegate?
|
|
|
|
/// Whether or not the view's button responds to taps.
|
|
var isActionEnabled: Bool {
|
|
get { button.isEnabled }
|
|
set { button.isEnabled = newValue }
|
|
}
|
|
|
|
@IBOutlet weak private var containerView: UIView!
|
|
@IBOutlet weak private var titleLabel: UILabel!
|
|
@IBOutlet weak private var messageLabel: UILabel!
|
|
@IBOutlet weak private var button: CustomRoundedButton!
|
|
@IBOutlet weak private var footerLabel: UILabel!
|
|
|
|
// MARK: - Setup
|
|
|
|
static func instantiate() -> Self {
|
|
let view = Self.loadFromNib()
|
|
view.update(theme: ThemeService.shared().theme)
|
|
return view
|
|
}
|
|
|
|
override func awakeFromNib() {
|
|
super.awakeFromNib()
|
|
|
|
containerView.layer.cornerRadius = 8
|
|
button.layer.cornerRadius = 8
|
|
|
|
titleLabel.text = VectorL10n.findYourContactsTitle
|
|
messageLabel.text = VectorL10n.findYourContactsMessage(AppInfo.current.displayName)
|
|
button.setTitle(VectorL10n.findYourContactsButtonTitle, for: .normal)
|
|
footerLabel.text = VectorL10n.findYourContactsFooter
|
|
}
|
|
|
|
func update(theme: Theme) {
|
|
tintColor = theme.colors.accent
|
|
|
|
containerView.backgroundColor = theme.colors.quinaryContent
|
|
|
|
titleLabel.font = theme.fonts.bodySB
|
|
titleLabel.textColor = theme.colors.primaryContent
|
|
|
|
messageLabel.font = theme.fonts.body
|
|
messageLabel.textColor = theme.colors.secondaryContent
|
|
|
|
button.titleLabel?.font = theme.fonts.body
|
|
button.backgroundColor = theme.colors.accent
|
|
button.setTitleColor(theme.colors.background, for: .normal)
|
|
|
|
footerLabel.font = theme.fonts.footnote.withSize(13)
|
|
footerLabel.textColor = theme.colors.tertiaryContent
|
|
}
|
|
|
|
// MARK: - Action
|
|
|
|
@IBAction private func buttonAction(_ sender: Any) {
|
|
delegate?.contactsFooterViewDidRequestFindContacts(self)
|
|
}
|
|
}
|