2022-01-27 14:23:39 +01:00
|
|
|
//
|
|
|
|
// UserView.swift
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Created by MainasuK on 2022-1-19.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
import Combine
|
|
|
|
import MetaTextKit
|
2023-04-20 16:28:30 +02:00
|
|
|
import MastodonAsset
|
|
|
|
import os
|
2022-01-27 14:23:39 +01:00
|
|
|
|
|
|
|
public final class UserView: UIView {
|
|
|
|
|
|
|
|
public var disposeBag = Set<AnyCancellable>()
|
|
|
|
|
|
|
|
public private(set) lazy var viewModel: ViewModel = {
|
|
|
|
let viewModel = ViewModel()
|
|
|
|
viewModel.bind(userView: self)
|
|
|
|
return viewModel
|
|
|
|
}()
|
|
|
|
|
|
|
|
public let containerStackView: UIStackView = {
|
|
|
|
let stackView = UIStackView()
|
|
|
|
stackView.axis = .horizontal
|
|
|
|
stackView.alignment = .center
|
|
|
|
stackView.spacing = 12
|
|
|
|
stackView.layoutMargins = UIEdgeInsets(top: 12, left: 0, bottom: 12, right: 0)
|
|
|
|
stackView.isLayoutMarginsRelativeArrangement = true
|
|
|
|
return stackView
|
|
|
|
}()
|
|
|
|
|
|
|
|
// avatar
|
|
|
|
public let avatarButton = AvatarButton()
|
|
|
|
|
|
|
|
// author name
|
|
|
|
public let authorNameLabel = MetaLabel(style: .statusName)
|
|
|
|
|
|
|
|
// author username
|
|
|
|
public let authorUsernameLabel = MetaLabel(style: .statusUsername)
|
|
|
|
|
2023-04-20 16:28:30 +02:00
|
|
|
public let authorFollowersLabel: UILabel = {
|
|
|
|
let label = UILabel()
|
|
|
|
label.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
label.textColor = .secondaryLabel
|
|
|
|
return label
|
|
|
|
}()
|
|
|
|
|
|
|
|
public let authorVerifiedLabel: MetaLabel = {
|
|
|
|
let label = MetaLabel(style: .profileFieldValue)
|
|
|
|
label.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
label.textAttributes = [
|
|
|
|
.font: UIFontMetrics(forTextStyle: .body).scaledFont(for: .systemFont(ofSize: 15, weight: .regular)),
|
|
|
|
.foregroundColor: UIColor.secondaryLabel
|
|
|
|
]
|
|
|
|
label.linkAttributes = [
|
|
|
|
.font: UIFontMetrics(forTextStyle: .body).scaledFont(for: .systemFont(ofSize: 15, weight: .semibold)),
|
|
|
|
.foregroundColor: Asset.Colors.brand.color
|
|
|
|
]
|
|
|
|
label.isUserInteractionEnabled = false
|
|
|
|
return label
|
|
|
|
}()
|
|
|
|
|
|
|
|
public let authorVerifiedImageView: UIImageView = {
|
|
|
|
let imageView = UIImageView()
|
|
|
|
imageView.setContentHuggingPriority(.required, for: .horizontal)
|
|
|
|
imageView.setContentCompressionResistancePriority(.defaultHigh, for: .vertical)
|
|
|
|
imageView.setContentHuggingPriority(.required, for: .vertical)
|
|
|
|
imageView.contentMode = .scaleAspectFit
|
|
|
|
return imageView
|
|
|
|
}()
|
|
|
|
|
2023-04-21 15:03:52 +02:00
|
|
|
private let verifiedStackView: UIStackView = {
|
2023-04-20 16:28:30 +02:00
|
|
|
let stackView = UIStackView()
|
|
|
|
stackView.axis = .horizontal
|
|
|
|
stackView.alignment = .center
|
|
|
|
return stackView
|
|
|
|
}()
|
2023-04-21 15:03:52 +02:00
|
|
|
|
|
|
|
private let verifiedStackCenterSpacerView: UILabel = {
|
|
|
|
let label = UILabel()
|
|
|
|
label.text = " · "
|
|
|
|
label.textColor = .secondaryLabel
|
|
|
|
return label
|
|
|
|
}()
|
|
|
|
|
|
|
|
public func setFollowButtonEnabled(_ enabled: Bool) {
|
|
|
|
switch enabled {
|
|
|
|
case true:
|
|
|
|
verifiedStackView.axis = .vertical
|
|
|
|
verifiedStackView.alignment = .leading
|
|
|
|
verifiedStackCenterSpacerView.isHidden = true
|
|
|
|
case false:
|
|
|
|
verifiedStackView.axis = .horizontal
|
|
|
|
verifiedStackView.alignment = .leading
|
|
|
|
verifiedStackCenterSpacerView.isHidden = false
|
|
|
|
}
|
|
|
|
}
|
2023-04-20 16:28:30 +02:00
|
|
|
|
2022-01-27 14:23:39 +01:00
|
|
|
public func prepareForReuse() {
|
|
|
|
disposeBag.removeAll()
|
|
|
|
|
|
|
|
// viewModel.objects.removeAll()
|
|
|
|
viewModel.authorAvatarImageURL = nil
|
|
|
|
|
|
|
|
avatarButton.avatarImageView.cancelTask()
|
|
|
|
}
|
|
|
|
|
|
|
|
public override init(frame: CGRect) {
|
|
|
|
super.init(frame: frame)
|
|
|
|
_init()
|
|
|
|
}
|
|
|
|
|
|
|
|
public required init?(coder: NSCoder) {
|
|
|
|
super.init(coder: coder)
|
|
|
|
_init()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extension UserView {
|
|
|
|
|
|
|
|
private func _init() {
|
|
|
|
// container
|
|
|
|
containerStackView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
addSubview(containerStackView)
|
2022-11-17 17:45:27 +01:00
|
|
|
containerStackView.pinToParent()
|
2022-01-27 14:23:39 +01:00
|
|
|
|
|
|
|
avatarButton.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
containerStackView.addArrangedSubview(avatarButton)
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
avatarButton.widthAnchor.constraint(equalToConstant: 28).priority(.required - 1),
|
|
|
|
avatarButton.heightAnchor.constraint(equalToConstant: 28).priority(.required - 1),
|
|
|
|
])
|
|
|
|
avatarButton.setContentHuggingPriority(.defaultLow, for: .vertical)
|
|
|
|
avatarButton.setContentHuggingPriority(.defaultLow, for: .horizontal)
|
|
|
|
|
|
|
|
// label container
|
|
|
|
let labelStackView = UIStackView()
|
|
|
|
labelStackView.axis = .vertical
|
|
|
|
containerStackView.addArrangedSubview(labelStackView)
|
|
|
|
|
2023-04-20 16:28:30 +02:00
|
|
|
let nameStackView = UIStackView()
|
|
|
|
nameStackView.axis = .horizontal
|
|
|
|
|
|
|
|
let nameSpacer = UIView()
|
|
|
|
nameSpacer.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)
|
|
|
|
|
|
|
|
nameStackView.addArrangedSubview(authorNameLabel)
|
|
|
|
nameStackView.addArrangedSubview(authorUsernameLabel)
|
|
|
|
nameStackView.addArrangedSubview(nameSpacer)
|
|
|
|
|
2022-01-27 14:23:39 +01:00
|
|
|
authorNameLabel.setContentCompressionResistancePriority(.required - 1, for: .vertical)
|
2023-04-20 16:28:30 +02:00
|
|
|
authorNameLabel.setContentCompressionResistancePriority(.defaultHigh, for: .horizontal)
|
|
|
|
|
2022-01-27 14:23:39 +01:00
|
|
|
authorUsernameLabel.setContentCompressionResistancePriority(.required - 1, for: .vertical)
|
2023-04-25 10:53:41 +02:00
|
|
|
authorUsernameLabel.setContentCompressionResistancePriority(.defaultHigh - 1, for: .horizontal)
|
2022-01-27 14:23:39 +01:00
|
|
|
|
2023-04-20 16:28:30 +02:00
|
|
|
labelStackView.addArrangedSubview(nameStackView)
|
|
|
|
|
|
|
|
let verifiedSpacerView = UIView()
|
2023-04-21 15:03:52 +02:00
|
|
|
let verifiedStackTrailingSpacerView = UIView()
|
|
|
|
|
|
|
|
verifiedStackTrailingSpacerView.setContentCompressionResistancePriority(.defaultHigh, for: .horizontal)
|
|
|
|
|
|
|
|
let verifiedContainerStack = UIStackView()
|
|
|
|
verifiedContainerStack.axis = .horizontal
|
|
|
|
verifiedContainerStack.alignment = .center
|
2023-04-20 16:28:30 +02:00
|
|
|
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
authorVerifiedImageView.widthAnchor.constraint(equalToConstant: 15),
|
|
|
|
verifiedSpacerView.widthAnchor.constraint(equalToConstant: 2)
|
|
|
|
])
|
|
|
|
|
2023-04-21 15:03:52 +02:00
|
|
|
verifiedContainerStack.addArrangedSubview(authorVerifiedImageView)
|
|
|
|
verifiedContainerStack.addArrangedSubview(verifiedSpacerView)
|
|
|
|
verifiedContainerStack.addArrangedSubview(authorVerifiedLabel)
|
|
|
|
|
|
|
|
verifiedStackView.addArrangedSubview(authorFollowersLabel)
|
|
|
|
verifiedStackView.addArrangedSubview(verifiedStackCenterSpacerView)
|
|
|
|
verifiedStackView.addArrangedSubview(verifiedContainerStack)
|
|
|
|
verifiedStackView.addArrangedSubview(verifiedStackTrailingSpacerView)
|
2023-04-20 16:28:30 +02:00
|
|
|
|
|
|
|
labelStackView.addArrangedSubview(verifiedStackView)
|
|
|
|
|
2022-01-27 14:23:39 +01:00
|
|
|
avatarButton.isUserInteractionEnabled = false
|
|
|
|
authorNameLabel.isUserInteractionEnabled = false
|
|
|
|
authorUsernameLabel.isUserInteractionEnabled = false
|
2023-02-07 04:22:22 +01:00
|
|
|
|
|
|
|
isAccessibilityElement = true
|
2022-01-27 14:23:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|