87 lines
3.0 KiB
Swift
87 lines
3.0 KiB
Swift
//
|
|
// MasterTableViewCellLayout.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Brent Simmons on 11/24/17.
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import RSCore
|
|
|
|
struct MasterTableViewCellLayout {
|
|
|
|
private static let imageSize = CGSize(width: 16, height: 16)
|
|
private static let imageMarginLeft = CGFloat(integerLiteral: 8)
|
|
private static let imageMarginRight = CGFloat(integerLiteral: 8)
|
|
private static let unreadCountMarginLeft = CGFloat(integerLiteral: 8)
|
|
private static let unreadCountMarginRight = CGFloat(integerLiteral: 8)
|
|
|
|
private static let chevronWidth = CGFloat(integerLiteral: 40)
|
|
|
|
let faviconRect: CGRect
|
|
let titleRect: CGRect
|
|
let unreadCountRect: CGRect
|
|
|
|
init(cellSize: CGSize, shouldShowImage: Bool, label: UILabel, unreadCountView: MasterUnreadCountView, showingEditingControl: Bool, indent: Bool) {
|
|
|
|
let adjustedWidth: CGFloat = {
|
|
if showingEditingControl {
|
|
return floor(cellSize.width)
|
|
} else {
|
|
return floor(cellSize.width) - MasterTableViewCellLayout.chevronWidth
|
|
}
|
|
}()
|
|
|
|
let bounds = CGRect(x: 0.0, y: 0.0, width: adjustedWidth, height: floor(cellSize.height))
|
|
|
|
var rFavicon = CGRect.zero
|
|
if shouldShowImage {
|
|
var indentX = showingEditingControl ? MasterTableViewCellLayout.imageMarginLeft + 40 : MasterTableViewCellLayout.imageMarginLeft
|
|
indentX = indent ? indentX + 20 : indentX
|
|
rFavicon = CGRect(x: indentX, y: 0.0, width: MasterTableViewCellLayout.imageSize.width, height: MasterTableViewCellLayout.imageSize.height)
|
|
rFavicon = MasterTableViewCellLayout.centerVertically(rFavicon, bounds)
|
|
}
|
|
self.faviconRect = rFavicon
|
|
|
|
let labelSize = SingleLineUILabelSizer.size(for: label.text ?? "", font: label.font!)
|
|
|
|
var rLabel = CGRect(x: 0.0, y: 0.0, width: labelSize.width, height: labelSize.height)
|
|
if shouldShowImage {
|
|
rLabel.origin.x = rFavicon.maxX + MasterTableViewCellLayout.imageMarginRight
|
|
}
|
|
rLabel = MasterTableViewCellLayout.centerVertically(rLabel, bounds)
|
|
|
|
let unreadCountSize = unreadCountView.intrinsicContentSize
|
|
let unreadCountIsHidden = unreadCountView.unreadCount < 1
|
|
|
|
var rUnread = CGRect.zero
|
|
if !unreadCountIsHidden {
|
|
rUnread.size = unreadCountSize
|
|
rUnread.origin.x = (bounds.maxX - unreadCountSize.width) - MasterTableViewCellLayout.unreadCountMarginRight
|
|
rUnread = MasterTableViewCellLayout.centerVertically(rUnread, bounds)
|
|
let labelMaxX = rUnread.minX - MasterTableViewCellLayout.unreadCountMarginLeft
|
|
if rLabel.maxX > labelMaxX {
|
|
rLabel.size.width = labelMaxX - rLabel.minX
|
|
}
|
|
}
|
|
self.unreadCountRect = rUnread
|
|
|
|
if rLabel.maxX > bounds.maxX {
|
|
rLabel.size.width = bounds.maxX - rLabel.minX
|
|
}
|
|
|
|
self.titleRect = rLabel
|
|
}
|
|
|
|
// Ideally this will be implemented in RSCore (see RSGeometry)
|
|
static func centerVertically(_ originalRect: CGRect, _ containerRect: CGRect) -> CGRect {
|
|
var result = originalRect
|
|
result.origin.y = containerRect.midY - (result.height / 2.0)
|
|
result = result.integral
|
|
result.size = originalRect.size
|
|
return result
|
|
}
|
|
|
|
}
|