87 lines
3.0 KiB
Swift
87 lines
3.0 KiB
Swift
//
|
|
// SectionHeaderFooterView.swift
|
|
// MVMCoreUI
|
|
//
|
|
// Created by Scott Pfeil on 10/2/20.
|
|
// Copyright © 2020 Verizon Wireless. All rights reserved.
|
|
//
|
|
|
|
|
|
@objcMembers open class SectionHeaderFooterView: UITableViewHeaderFooterView, MoleculeViewProtocol {
|
|
//--------------------------------------------------
|
|
// MARK: - Properties
|
|
//--------------------------------------------------
|
|
|
|
open var model: MoleculeModelProtocol?
|
|
|
|
private var initialSetupPerformed = false
|
|
|
|
//--------------------------------------------------
|
|
// MARK: - Initialization
|
|
//--------------------------------------------------
|
|
|
|
public override init(reuseIdentifier: String?) {
|
|
super.init(reuseIdentifier: reuseIdentifier)
|
|
initialSetup()
|
|
}
|
|
|
|
public required init?(coder: NSCoder) {
|
|
super.init(coder: coder)
|
|
initialSetup()
|
|
}
|
|
|
|
public func initialSetup() {
|
|
if !initialSetupPerformed {
|
|
initialSetupPerformed = true
|
|
setupView()
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------
|
|
// MARK: - MoleculeViewProtocol
|
|
//--------------------------------------------------
|
|
|
|
open func set(with model: MoleculeModelProtocol, _ delegateObject: MVMCoreUIDelegateObject?, _ additionalData: [AnyHashable: Any]?) {
|
|
|
|
self.model = model
|
|
|
|
if let backgroundColor = model.backgroundColor {
|
|
contentView.backgroundColor = backgroundColor.uiColor
|
|
}
|
|
|
|
if let accessibilityIdentifier = model.accessibilityIdentifier {
|
|
self.accessibilityIdentifier = accessibilityIdentifier
|
|
}
|
|
}
|
|
|
|
open func reset() {
|
|
contentView.backgroundColor = .white
|
|
}
|
|
|
|
// MARK: Overridables
|
|
// Base classes need to implement these functions otherwise swift won't respect the subclass functions and use the ones in the protocol extension instead.
|
|
open class func nameForReuse(with model: MoleculeModelProtocol, _ delegateObject: MVMCoreUIDelegateObject?) -> String? {
|
|
model.moleculeName
|
|
}
|
|
|
|
open class func estimatedHeight(with model: MoleculeModelProtocol, _ delegateObject: MVMCoreUIDelegateObject?) -> CGFloat? { nil }
|
|
|
|
open class func requiredModules(with model: MoleculeModelProtocol, _ delegateObject: MVMCoreUIDelegateObject?, error: AutoreleasingUnsafeMutablePointer<MVMCoreErrorObject?>?) -> [String]? { nil }
|
|
}
|
|
|
|
// MARK:- MVMCoreViewProtocol
|
|
extension SectionHeaderFooterView: MVMCoreViewProtocol {
|
|
|
|
open func updateView(_ size: CGFloat) { }
|
|
|
|
/// Will be called only once.
|
|
open func setupView() {
|
|
translatesAutoresizingMaskIntoConstraints = false
|
|
insetsLayoutMarginsFromSafeArea = false
|
|
preservesSuperviewLayoutMargins = false
|
|
contentView.insetsLayoutMarginsFromSafeArea = false
|
|
contentView.preservesSuperviewLayoutMargins = false
|
|
MVMCoreUIUtility.setMarginsFor(self, leading: 0, top: 0, trailing: 0, bottom: 0)
|
|
}
|
|
}
|