2021-04-14 10:24:40 +02:00
|
|
|
//
|
|
|
|
// NotificationStatusTableViewCell.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by sxiaojian on 2021/4/14.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Combine
|
|
|
|
import Foundation
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
final class NotificationStatusTableViewCell: UITableViewCell {
|
|
|
|
static let actionImageBorderWidth: CGFloat = 2
|
2021-04-15 04:16:30 +02:00
|
|
|
static let statusPadding = UIEdgeInsets(top: 50, left: 73, bottom: 24, right: 24)
|
2021-04-14 10:24:40 +02:00
|
|
|
var disposeBag = Set<AnyCancellable>()
|
2021-04-14 11:37:58 +02:00
|
|
|
var pollCountdownSubscription: AnyCancellable?
|
2021-04-14 10:24:40 +02:00
|
|
|
var delegate: NotificationTableViewCellDelegate?
|
|
|
|
|
|
|
|
let avatatImageView: UIImageView = {
|
|
|
|
let imageView = UIImageView()
|
|
|
|
imageView.layer.cornerRadius = 4
|
|
|
|
imageView.layer.cornerCurve = .continuous
|
|
|
|
imageView.clipsToBounds = true
|
|
|
|
return imageView
|
|
|
|
}()
|
|
|
|
|
|
|
|
let actionImageView: UIImageView = {
|
|
|
|
let imageView = UIImageView()
|
2021-04-16 16:58:36 +02:00
|
|
|
imageView.tintColor = Asset.Colors.Background.systemBackground.color
|
2021-04-14 10:24:40 +02:00
|
|
|
return imageView
|
|
|
|
}()
|
|
|
|
|
|
|
|
let actionImageBackground: UIView = {
|
|
|
|
let view = UIView()
|
|
|
|
view.layer.cornerRadius = (24 + NotificationStatusTableViewCell.actionImageBorderWidth) / 2
|
|
|
|
view.layer.cornerCurve = .continuous
|
|
|
|
view.clipsToBounds = true
|
|
|
|
view.layer.borderWidth = NotificationStatusTableViewCell.actionImageBorderWidth
|
2021-04-16 16:58:36 +02:00
|
|
|
view.layer.borderColor = Asset.Colors.Background.systemBackground.color.cgColor
|
|
|
|
view.tintColor = Asset.Colors.Background.systemBackground.color
|
2021-04-14 10:24:40 +02:00
|
|
|
return view
|
|
|
|
}()
|
|
|
|
|
2021-04-16 15:55:09 +02:00
|
|
|
let avatarContainer: UIView = {
|
|
|
|
let view = UIView()
|
|
|
|
return view
|
|
|
|
}()
|
|
|
|
|
2021-04-14 10:24:40 +02:00
|
|
|
let actionLabel: UILabel = {
|
|
|
|
let label = UILabel()
|
|
|
|
label.textColor = Asset.Colors.Label.secondary.color
|
|
|
|
label.font = UIFont.preferredFont(forTextStyle: .body)
|
|
|
|
label.lineBreakMode = .byTruncatingTail
|
|
|
|
return label
|
|
|
|
}()
|
|
|
|
|
|
|
|
let nameLabel: UILabel = {
|
|
|
|
let label = UILabel()
|
|
|
|
label.textColor = Asset.Colors.brandBlue.color
|
|
|
|
label.font = .systemFont(ofSize: 15, weight: .semibold)
|
|
|
|
label.lineBreakMode = .byTruncatingTail
|
|
|
|
return label
|
|
|
|
}()
|
|
|
|
|
2021-04-15 06:35:40 +02:00
|
|
|
let statusBorder: UIView = {
|
2021-04-14 10:24:40 +02:00
|
|
|
let view = UIView()
|
|
|
|
view.backgroundColor = .clear
|
|
|
|
view.layer.cornerRadius = 6
|
|
|
|
view.layer.borderWidth = 2
|
|
|
|
view.layer.cornerCurve = .continuous
|
|
|
|
view.layer.borderColor = Asset.Colors.Border.notification.color.cgColor
|
|
|
|
view.clipsToBounds = true
|
|
|
|
return view
|
|
|
|
}()
|
|
|
|
|
|
|
|
let statusView = StatusView()
|
|
|
|
|
|
|
|
override func prepareForReuse() {
|
|
|
|
super.prepareForReuse()
|
|
|
|
avatatImageView.af.cancelImageRequest()
|
|
|
|
statusView.isStatusTextSensitive = false
|
|
|
|
statusView.cleanUpContentWarning()
|
|
|
|
statusView.pollTableView.dataSource = nil
|
|
|
|
statusView.playerContainerView.reset()
|
|
|
|
statusView.playerContainerView.isHidden = true
|
2021-04-14 14:02:41 +02:00
|
|
|
|
2021-04-14 10:24:40 +02:00
|
|
|
disposeBag.removeAll()
|
|
|
|
}
|
|
|
|
|
|
|
|
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
|
|
|
|
super.init(style: style, reuseIdentifier: reuseIdentifier)
|
|
|
|
configure()
|
|
|
|
}
|
|
|
|
|
|
|
|
required init?(coder: NSCoder) {
|
|
|
|
super.init(coder: coder)
|
|
|
|
configure()
|
|
|
|
}
|
|
|
|
|
|
|
|
override func layoutSubviews() {
|
|
|
|
super.layoutSubviews()
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
self.statusView.drawContentWarningImageView()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension NotificationStatusTableViewCell {
|
|
|
|
func configure() {
|
2021-04-16 15:55:09 +02:00
|
|
|
let containerStackView = UIStackView()
|
|
|
|
containerStackView.axis = .horizontal
|
|
|
|
containerStackView.alignment = .top
|
|
|
|
containerStackView.spacing = 4
|
|
|
|
containerStackView.layoutMargins = UIEdgeInsets(top: 14, left: 0, bottom: 12, right: 0)
|
|
|
|
containerStackView.isLayoutMarginsRelativeArrangement = true
|
|
|
|
containerStackView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
contentView.addSubview(containerStackView)
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
containerStackView.topAnchor.constraint(equalTo: contentView.topAnchor),
|
|
|
|
containerStackView.leadingAnchor.constraint(equalTo: contentView.readableContentGuide.leadingAnchor),
|
|
|
|
contentView.readableContentGuide.trailingAnchor.constraint(equalTo: containerStackView.trailingAnchor),
|
|
|
|
contentView.bottomAnchor.constraint(equalTo: containerStackView.bottomAnchor),
|
|
|
|
])
|
|
|
|
|
|
|
|
containerStackView.addArrangedSubview(avatarContainer)
|
|
|
|
avatarContainer.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
avatarContainer.heightAnchor.constraint(equalToConstant: 47).priority(.required - 1),
|
|
|
|
avatarContainer.widthAnchor.constraint(equalToConstant: 47).priority(.required - 1)
|
|
|
|
])
|
|
|
|
|
|
|
|
avatarContainer.addSubview(avatatImageView)
|
|
|
|
avatatImageView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
avatatImageView.heightAnchor.constraint(equalToConstant: 35).priority(.required - 1),
|
|
|
|
avatatImageView.widthAnchor.constraint(equalToConstant: 35).priority(.required - 1),
|
|
|
|
avatatImageView.topAnchor.constraint(equalTo: avatarContainer.topAnchor),
|
|
|
|
avatatImageView.leadingAnchor.constraint(equalTo: avatarContainer.leadingAnchor)
|
2021-04-15 04:37:46 +02:00
|
|
|
])
|
|
|
|
|
2021-04-16 15:55:09 +02:00
|
|
|
avatarContainer.addSubview(actionImageBackground)
|
|
|
|
actionImageBackground.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
actionImageBackground.heightAnchor.constraint(equalToConstant: 24 + NotificationTableViewCell.actionImageBorderWidth).priority(.required - 1),
|
|
|
|
actionImageBackground.widthAnchor.constraint(equalToConstant: 24 + NotificationTableViewCell.actionImageBorderWidth).priority(.required - 1),
|
|
|
|
actionImageBackground.bottomAnchor.constraint(equalTo: avatarContainer.bottomAnchor),
|
|
|
|
actionImageBackground.trailingAnchor.constraint(equalTo: avatarContainer.trailingAnchor)
|
2021-04-14 10:24:40 +02:00
|
|
|
])
|
2021-04-16 15:55:09 +02:00
|
|
|
|
|
|
|
avatarContainer.addSubview(actionImageView)
|
|
|
|
actionImageView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
actionImageView.centerXAnchor.constraint(equalTo: actionImageBackground.centerXAnchor),
|
|
|
|
actionImageView.centerYAnchor.constraint(equalTo: actionImageBackground.centerYAnchor)
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
let actionStackView = UIStackView()
|
|
|
|
actionStackView.axis = .horizontal
|
2021-04-16 16:58:36 +02:00
|
|
|
actionStackView.distribution = .fill
|
2021-04-16 15:55:09 +02:00
|
|
|
actionStackView.spacing = 4
|
|
|
|
actionStackView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
|
|
|
|
nameLabel.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
actionStackView.addArrangedSubview(nameLabel)
|
|
|
|
actionLabel.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
actionStackView.addArrangedSubview(actionLabel)
|
|
|
|
nameLabel.setContentCompressionResistancePriority(.required - 1, for: .vertical)
|
2021-04-16 16:58:36 +02:00
|
|
|
nameLabel.setContentHuggingPriority(.defaultHigh, for: .horizontal)
|
|
|
|
actionLabel.setContentHuggingPriority(.defaultLow, for: .horizontal)
|
2021-04-16 15:55:09 +02:00
|
|
|
let statusStackView = UIStackView()
|
|
|
|
statusStackView.axis = .vertical
|
|
|
|
|
|
|
|
statusStackView.distribution = .fill
|
|
|
|
statusStackView.spacing = 4
|
|
|
|
statusStackView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
statusView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
statusStackView.addArrangedSubview(actionStackView)
|
2021-04-14 10:24:40 +02:00
|
|
|
|
2021-04-16 15:55:09 +02:00
|
|
|
statusBorder.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
statusView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
statusBorder.addSubview(statusView)
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
statusView.topAnchor.constraint(equalTo: statusBorder.topAnchor, constant: 12),
|
|
|
|
statusView.leadingAnchor.constraint(equalTo: statusBorder.leadingAnchor, constant: 12),
|
|
|
|
statusBorder.bottomAnchor.constraint(equalTo: statusView.bottomAnchor, constant: 12),
|
|
|
|
statusBorder.trailingAnchor.constraint(equalTo: statusView.trailingAnchor, constant: 12),
|
2021-04-14 10:24:40 +02:00
|
|
|
])
|
|
|
|
|
2021-04-16 15:55:09 +02:00
|
|
|
|
|
|
|
statusStackView.addArrangedSubview(statusBorder)
|
|
|
|
|
|
|
|
containerStackView.addArrangedSubview(statusStackView)
|
|
|
|
|
2021-04-14 10:24:40 +02:00
|
|
|
statusView.contentWarningBlurContentImageView.backgroundColor = Asset.Colors.Background.secondaryGroupedSystemBackground.color
|
2021-04-14 14:02:41 +02:00
|
|
|
statusView.isUserInteractionEnabled = false
|
|
|
|
// remove item don't display
|
2021-04-16 15:55:09 +02:00
|
|
|
statusView.actionToolbarContainer.removeFromStackView()
|
2021-04-19 04:10:46 +02:00
|
|
|
// it affect stackView's height,need remove
|
2021-04-16 15:55:09 +02:00
|
|
|
statusView.avatarView.removeFromStackView()
|
|
|
|
statusView.usernameLabel.removeFromStackView()
|
2021-04-14 10:24:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
|
|
|
|
super.traitCollectionDidChange(previousTraitCollection)
|
2021-04-15 06:35:40 +02:00
|
|
|
statusBorder.layer.borderColor = Asset.Colors.Border.notification.color.cgColor
|
2021-04-16 16:58:36 +02:00
|
|
|
actionImageBackground.layer.borderColor = Asset.Colors.Background.systemBackground.color.cgColor
|
2021-04-14 10:24:40 +02:00
|
|
|
}
|
|
|
|
}
|