mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.4 KiB
Swift
89 lines
2.4 KiB
Swift
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
|
|
|
import UIKit
|
|
|
|
public final class Separator: UIView {
|
|
private static let height: CGFloat = 24
|
|
|
|
// MARK: - Components
|
|
|
|
private lazy var titleLabel: UILabel = {
|
|
let result = UILabel()
|
|
result.font = .systemFont(ofSize: Values.smallFontSize)
|
|
result.themeTextColor = .textSecondary
|
|
result.textAlignment = .center
|
|
|
|
return result
|
|
}()
|
|
|
|
private lazy var lineLayer: CAShapeLayer = {
|
|
let result = CAShapeLayer()
|
|
result.lineWidth = Values.separatorThickness
|
|
result.themeStrokeColor = .textSecondary
|
|
result.themeFillColor = .clear
|
|
|
|
return result
|
|
}()
|
|
|
|
// MARK: - Initialization
|
|
|
|
public init(title: String? = nil) {
|
|
super.init(frame: CGRect.zero)
|
|
|
|
setUpViewHierarchy(title: title)
|
|
}
|
|
|
|
public override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
|
|
setUpViewHierarchy(title: nil)
|
|
}
|
|
|
|
public required init?(coder: NSCoder) {
|
|
super.init(coder: coder)
|
|
|
|
setUpViewHierarchy(title: nil)
|
|
}
|
|
|
|
private func setUpViewHierarchy(title: String?) {
|
|
titleLabel.text = title
|
|
addSubview(titleLabel)
|
|
|
|
titleLabel.center(.horizontal, in: self)
|
|
titleLabel.center(.vertical, in: self)
|
|
layer.insertSublayer(lineLayer, at: 0)
|
|
|
|
set(.height, to: Separator.height)
|
|
}
|
|
|
|
// MARK: - Updating
|
|
|
|
public override func layoutSubviews() {
|
|
super.layoutSubviews()
|
|
|
|
updateLineLayer()
|
|
}
|
|
|
|
private func updateLineLayer() {
|
|
let w = bounds.width
|
|
let h = bounds.height
|
|
let path = UIBezierPath()
|
|
path.move(to: CGPoint(x: 0, y: h / 2))
|
|
|
|
let titleLabelFrame = titleLabel.frame.insetBy(dx: -10, dy: -6)
|
|
path.addLine(to: CGPoint(x: titleLabelFrame.origin.x, y: h / 2))
|
|
|
|
let oval = UIBezierPath(roundedRect: titleLabelFrame, cornerRadius: Separator.height / 2)
|
|
path.append(oval)
|
|
path.move(to: CGPoint(x: titleLabelFrame.origin.x + titleLabelFrame.width, y: h / 2))
|
|
path.addLine(to: CGPoint(x: w, y: h / 2))
|
|
path.close()
|
|
|
|
lineLayer.path = path.cgPath
|
|
}
|
|
|
|
public func update(title: String?) {
|
|
titleLabel.text = title
|
|
}
|
|
}
|