95 lines
3.2 KiB
Swift
95 lines
3.2 KiB
Swift
//
|
|
// NotificationTableViewCell.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK on 2022-1-21.
|
|
//
|
|
|
|
import os.log
|
|
import UIKit
|
|
import Combine
|
|
import MastodonUI
|
|
|
|
final class NotificationTableViewCell: UITableViewCell {
|
|
|
|
let logger = Logger(subsystem: "NotificationTableViewCell", category: "View")
|
|
|
|
weak var delegate: NotificationTableViewCellDelegate?
|
|
var disposeBag = Set<AnyCancellable>()
|
|
private var _disposeBag = Set<AnyCancellable>()
|
|
|
|
let notificationView = NotificationView()
|
|
|
|
let separatorLine = UIView.separatorLine
|
|
|
|
var containerViewLeadingLayoutConstraint: NSLayoutConstraint!
|
|
var containerViewTrailingLayoutConstraint: NSLayoutConstraint!
|
|
|
|
override func prepareForReuse() {
|
|
super.prepareForReuse()
|
|
|
|
disposeBag.removeAll()
|
|
notificationView.prepareForReuse()
|
|
}
|
|
|
|
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
|
|
super.init(style: style, reuseIdentifier: reuseIdentifier)
|
|
_init()
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
super.init(coder: coder)
|
|
_init()
|
|
}
|
|
|
|
}
|
|
|
|
extension NotificationTableViewCell {
|
|
|
|
private func _init() {
|
|
notificationView.translatesAutoresizingMaskIntoConstraints = false
|
|
contentView.addSubview(notificationView)
|
|
setupContainerViewMarginConstraints()
|
|
updateContainerViewMarginConstraints()
|
|
NSLayoutConstraint.activate([
|
|
notificationView.topAnchor.constraint(equalTo: contentView.topAnchor, constant: 16),
|
|
containerViewLeadingLayoutConstraint,
|
|
containerViewTrailingLayoutConstraint,
|
|
contentView.bottomAnchor.constraint(equalTo: notificationView.bottomAnchor),
|
|
])
|
|
|
|
separatorLine.translatesAutoresizingMaskIntoConstraints = false
|
|
contentView.addSubview(separatorLine)
|
|
NSLayoutConstraint.activate([
|
|
separatorLine.leadingAnchor.constraint(equalTo: contentView.leadingAnchor),
|
|
separatorLine.trailingAnchor.constraint(equalTo: contentView.trailingAnchor),
|
|
separatorLine.bottomAnchor.constraint(equalTo: contentView.bottomAnchor),
|
|
separatorLine.heightAnchor.constraint(equalToConstant: UIView.separatorLineHeight(of: contentView)).priority(.required - 1),
|
|
])
|
|
|
|
notificationView.quoteBackgroundView.backgroundColor = ThemeService.shared.currentTheme.value.secondarySystemBackgroundColor
|
|
ThemeService.shared.currentTheme
|
|
.sink { [weak self] theme in
|
|
guard let self = self else { return }
|
|
self.notificationView.quoteBackgroundView.backgroundColor = theme.secondarySystemBackgroundColor
|
|
}
|
|
.store(in: &_disposeBag)
|
|
|
|
notificationView.delegate = self
|
|
}
|
|
|
|
}
|
|
|
|
// MARK: - AdaptiveContainerMarginTableViewCell
|
|
extension NotificationTableViewCell: AdaptiveContainerMarginTableViewCell {
|
|
var containerView: NotificationView {
|
|
notificationView
|
|
}
|
|
}
|
|
|
|
// MARK: - NotificationViewContainerTableViewCell
|
|
extension NotificationTableViewCell: NotificationViewContainerTableViewCell { }
|
|
|
|
// MARK: - NotificationTableViewCellDelegate
|
|
extension NotificationTableViewCell: NotificationViewDelegate { }
|