2019-04-15 22:03:05 +02:00
|
|
|
//
|
|
|
|
// MasterTableViewCell.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 8/1/15.
|
|
|
|
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
import RSCore
|
|
|
|
import Account
|
|
|
|
import RSTree
|
|
|
|
|
2019-04-23 15:00:27 +02:00
|
|
|
protocol MasterFeedTableViewCellDelegate: class {
|
|
|
|
func disclosureSelected(_ sender: MasterFeedTableViewCell, expanding: Bool)
|
2019-04-17 17:34:10 +02:00
|
|
|
}
|
|
|
|
|
2019-04-23 15:00:27 +02:00
|
|
|
class MasterFeedTableViewCell : UITableViewCell {
|
2019-04-15 22:03:05 +02:00
|
|
|
|
2019-04-23 15:00:27 +02:00
|
|
|
weak var delegate: MasterFeedTableViewCellDelegate?
|
2019-04-17 21:29:52 +02:00
|
|
|
var allowDisclosureSelection = false
|
2019-04-28 17:31:35 +02:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
override var accessibilityLabel: String? {
|
|
|
|
set {}
|
|
|
|
get {
|
|
|
|
if unreadCount > 0 {
|
|
|
|
let unreadLabel = NSLocalizedString("unread", comment: "Unread label for accessiblity")
|
|
|
|
return "\(name) \(unreadCount) \(unreadLabel)"
|
|
|
|
} else {
|
|
|
|
return name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-18 01:16:33 +02:00
|
|
|
var disclosureExpanded = false {
|
|
|
|
didSet {
|
2019-04-18 12:41:27 +02:00
|
|
|
updateDisclosureImage()
|
2019-04-18 01:16:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
var faviconImage: UIImage? {
|
|
|
|
didSet {
|
|
|
|
if let image = faviconImage {
|
|
|
|
faviconImageView.image = shouldShowImage ? image : nil
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
faviconImageView.image = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var shouldShowImage = false {
|
|
|
|
didSet {
|
|
|
|
if shouldShowImage != oldValue {
|
|
|
|
setNeedsLayout()
|
|
|
|
}
|
|
|
|
faviconImageView.image = shouldShowImage ? faviconImage : nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var unreadCount: Int {
|
|
|
|
get {
|
|
|
|
return unreadCountView.unreadCount
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
if unreadCountView.unreadCount != newValue {
|
|
|
|
unreadCountView.unreadCount = newValue
|
|
|
|
unreadCountView.isHidden = (newValue < 1)
|
|
|
|
setNeedsLayout()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var name: String {
|
|
|
|
get {
|
|
|
|
return titleView.text ?? ""
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
if titleView.text != newValue {
|
|
|
|
titleView.text = newValue
|
|
|
|
setNeedsLayout()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private let titleView: UILabel = {
|
2019-04-22 18:49:22 +02:00
|
|
|
let label = NonIntrinsicLabel()
|
2019-04-27 16:49:26 +02:00
|
|
|
label.numberOfLines = 0
|
2019-04-15 22:03:05 +02:00
|
|
|
label.allowsDefaultTighteningForTruncation = false
|
2019-04-27 16:49:26 +02:00
|
|
|
label.adjustsFontForContentSizeCategory = true
|
|
|
|
label.font = .preferredFont(forTextStyle: .body)
|
2019-04-15 22:03:05 +02:00
|
|
|
return label
|
|
|
|
}()
|
|
|
|
|
|
|
|
private let faviconImageView: UIImageView = {
|
|
|
|
return UIImageView(image: AppAssets.feedImage)
|
|
|
|
}()
|
|
|
|
|
2019-04-28 17:31:35 +02:00
|
|
|
private var unreadCountView = MasterFeedUnreadCountView(frame: CGRect.zero)
|
2019-04-17 14:48:38 +02:00
|
|
|
private var showingEditControl = false
|
2019-04-18 12:41:27 +02:00
|
|
|
private var disclosureButton: UIButton?
|
2019-04-17 21:29:52 +02:00
|
|
|
|
|
|
|
required init?(coder: NSCoder) {
|
2019-04-15 22:03:05 +02:00
|
|
|
super.init(coder: coder)
|
|
|
|
commonInit()
|
|
|
|
}
|
|
|
|
|
2019-08-03 23:25:35 +02:00
|
|
|
override func setSelected(_ selected: Bool, animated: Bool) {
|
|
|
|
titleView.textColor = selected ? AppAssets.selectedTextColor : UIColor.label
|
|
|
|
faviconImageView.tintColor = selected ? AppAssets.selectedTextColor : tintColor
|
|
|
|
super.setSelected(selected, animated: animated)
|
|
|
|
}
|
|
|
|
|
2019-04-17 14:48:38 +02:00
|
|
|
override func willTransition(to state: UITableViewCell.StateMask) {
|
|
|
|
super.willTransition(to: state)
|
2019-04-20 17:58:16 +02:00
|
|
|
showingEditControl = state.contains(.showingEditControl)
|
2019-04-17 14:48:38 +02:00
|
|
|
}
|
|
|
|
|
2019-04-28 17:31:35 +02:00
|
|
|
override func sizeThatFits(_ size: CGSize) -> CGSize {
|
2019-04-28 19:08:50 +02:00
|
|
|
let shouldShowDisclosure = !(showingEditControl && showsReorderControl)
|
|
|
|
let layout = MasterFeedTableViewCellLayout(cellWidth: bounds.size.width, insets: safeAreaInsets, shouldShowImage: shouldShowImage, label: titleView, unreadCountView: unreadCountView, showingEditingControl: showingEditControl, indent: indentationLevel == 1, shouldShowDisclosure: shouldShowDisclosure)
|
|
|
|
return CGSize(width: bounds.width, height: layout.height)
|
2019-04-28 17:31:35 +02:00
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
override func layoutSubviews() {
|
|
|
|
super.layoutSubviews()
|
2019-04-28 19:08:50 +02:00
|
|
|
let shouldShowDisclosure = !(showingEditControl && showsReorderControl)
|
|
|
|
let layout = MasterFeedTableViewCellLayout(cellWidth: bounds.size.width, insets: safeAreaInsets, shouldShowImage: shouldShowImage, label: titleView, unreadCountView: unreadCountView, showingEditingControl: showingEditControl, indent: indentationLevel == 1, shouldShowDisclosure: shouldShowDisclosure)
|
|
|
|
layoutWith(layout)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
2019-04-17 14:48:38 +02:00
|
|
|
|
2019-04-17 17:15:44 +02:00
|
|
|
@objc func buttonPressed(_ sender: UIButton) {
|
2019-04-18 12:41:27 +02:00
|
|
|
if allowDisclosureSelection {
|
|
|
|
disclosureExpanded = !disclosureExpanded
|
|
|
|
delegate?.disclosureSelected(self, expanding: disclosureExpanded)
|
2019-04-17 21:29:52 +02:00
|
|
|
}
|
2019-04-17 17:15:44 +02:00
|
|
|
}
|
2019-04-17 17:34:10 +02:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
2019-04-23 15:00:27 +02:00
|
|
|
private extension MasterFeedTableViewCell {
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
func commonInit() {
|
2019-04-21 00:12:39 +02:00
|
|
|
theme()
|
2019-04-15 22:03:05 +02:00
|
|
|
addSubviewAtInit(unreadCountView)
|
|
|
|
addSubviewAtInit(faviconImageView)
|
|
|
|
addSubviewAtInit(titleView)
|
2019-04-18 12:41:27 +02:00
|
|
|
addDisclosureView()
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
2019-04-21 00:12:39 +02:00
|
|
|
|
|
|
|
func theme() {
|
|
|
|
let bgView = UIView()
|
2019-06-19 01:31:37 +02:00
|
|
|
bgView.backgroundColor = AppAssets.netNewsWireBlueColor
|
2019-04-21 00:12:39 +02:00
|
|
|
selectedBackgroundView = bgView
|
|
|
|
}
|
|
|
|
|
2019-04-18 12:41:27 +02:00
|
|
|
func addDisclosureView() {
|
|
|
|
|
|
|
|
disclosureButton = UIButton(type: .roundedRect)
|
|
|
|
disclosureButton!.tintColor = AppAssets.chevronDisclosureColor
|
|
|
|
disclosureButton!.addTarget(self, action: #selector(buttonPressed(_:)), for: UIControl.Event.touchUpInside)
|
2019-04-18 01:16:33 +02:00
|
|
|
|
2019-04-18 12:41:27 +02:00
|
|
|
updateDisclosureImage()
|
|
|
|
addSubviewAtInit(disclosureButton!)
|
2019-04-18 01:16:33 +02:00
|
|
|
|
2019-04-18 12:41:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func updateDisclosureImage() {
|
2019-04-18 01:16:33 +02:00
|
|
|
if disclosureExpanded {
|
2019-04-18 12:41:27 +02:00
|
|
|
disclosureButton?.setImage(AppAssets.chevronDownImage, for: .normal)
|
2019-04-18 01:16:33 +02:00
|
|
|
} else {
|
2019-04-18 12:41:27 +02:00
|
|
|
disclosureButton?.setImage(AppAssets.chevronRightImage, for: .normal)
|
2019-04-18 01:16:33 +02:00
|
|
|
}
|
2019-04-17 17:15:44 +02:00
|
|
|
}
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
func addSubviewAtInit(_ view: UIView) {
|
|
|
|
addSubview(view)
|
|
|
|
view.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
}
|
|
|
|
|
2019-04-23 15:00:27 +02:00
|
|
|
func layoutWith(_ layout: MasterFeedTableViewCellLayout) {
|
2019-04-20 16:50:44 +02:00
|
|
|
faviconImageView.setFrameIfNotEqual(layout.faviconRect)
|
|
|
|
titleView.setFrameIfNotEqual(layout.titleRect)
|
|
|
|
unreadCountView.setFrameIfNotEqual(layout.unreadCountRect)
|
|
|
|
disclosureButton?.setFrameIfNotEqual(layout.disclosureButtonRect)
|
2019-04-28 21:56:36 +02:00
|
|
|
separatorInset = layout.separatorInsets
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|