- 移除 RDEPUBSelectableTextView,改用原生 UITextView - 新增 NSAttributedString 自定义属性(com.rdreader.highlight/underline)注入高亮 - RDEPUBTextPageRenderView 统一绘制高亮背景、文字和选区 - RDEPUBTextSelectionController 精简,选区矩形传递给 RenderView 绘制 - 新增高亮选区复刻 WXRead 实现方案文档 - UI 测试适配新架构 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
602 lines
24 KiB
Swift
602 lines
24 KiB
Swift
import UIKit
|
||
import Foundation
|
||
|
||
#if canImport(DTCoreText)
|
||
import DTCoreText
|
||
#endif
|
||
|
||
// MARK: - 文本内容视图代理
|
||
|
||
protocol RDEPUBTextContentViewDelegate: AnyObject {
|
||
func textContentView(_ contentView: RDEPUBTextContentView, didChangeSelection selection: RDEPUBSelection?)
|
||
func textContentView(
|
||
_ contentView: RDEPUBTextContentView,
|
||
didRequestSelectionAction action: RDEPUBAnnotationMenuAction,
|
||
selection: RDEPUBSelection?
|
||
)
|
||
}
|
||
|
||
// MARK: - 文本内容视图
|
||
|
||
/// EPUB 流式排版的文本内容视图
|
||
/// 对齐 WXRead 架构:高亮通过 NSAttributedString 自定义属性注入,在统一 drawRect 中绘制。
|
||
/// 保留 UITextView 用于 XCUITest 兼容和系统级文本选择。
|
||
final class RDEPUBTextContentView: UIView, UIGestureRecognizerDelegate {
|
||
private static let darkAdjustedImageCache = NSCache<NSString, UIImage>()
|
||
|
||
private var contentInsets: UIEdgeInsets = .zero
|
||
private var currentPage: RDEPUBTextPage?
|
||
private var currentSelection: RDEPUBSelection?
|
||
private var menuSelection: RDEPUBSelection?
|
||
weak var delegate: RDEPUBTextContentViewDelegate?
|
||
|
||
#if canImport(DTCoreText)
|
||
private let coreTextContentView: RDEPUBTextPageRenderView = {
|
||
let view = RDEPUBTextPageRenderView()
|
||
view.backgroundColor = .clear
|
||
view.isOpaque = false
|
||
return view
|
||
}()
|
||
|
||
private var coreTextDisplayContent: NSAttributedString?
|
||
private var coreTextDisplayRange: NSRange?
|
||
#endif
|
||
|
||
private let interactionController = RDEPUBPageInteractionController()
|
||
private let selectionController = RDEPUBTextSelectionController()
|
||
|
||
private let backgroundOverlayView: RDEPUBTextPageDecorationView = {
|
||
let view = RDEPUBTextPageDecorationView()
|
||
return view
|
||
}()
|
||
|
||
private let overlayView: RDEPUBTextAnnotationOverlay = {
|
||
let view = RDEPUBTextAnnotationOverlay()
|
||
return view
|
||
}()
|
||
|
||
/// 保留 UITextView 用于系统文本选择和 XCUITest 兼容
|
||
private let textView: UITextView = {
|
||
let view = UITextView()
|
||
view.isEditable = false
|
||
view.isScrollEnabled = false
|
||
view.isSelectable = true
|
||
view.backgroundColor = .clear
|
||
view.accessibilityIdentifier = "epub.reader.selection.text"
|
||
view.textContainerInset = .zero
|
||
view.textContainer.lineFragmentPadding = 0
|
||
return view
|
||
}()
|
||
|
||
private let coverImageView: UIImageView = {
|
||
let view = UIImageView()
|
||
view.contentMode = .scaleAspectFit
|
||
view.isHidden = true
|
||
return view
|
||
}()
|
||
|
||
private let pageNumberLabel: UILabel = {
|
||
let label = UILabel()
|
||
label.font = UIFont.systemFont(ofSize: 13)
|
||
return label
|
||
}()
|
||
|
||
// MARK: - Selection Action Bar
|
||
|
||
private lazy var selectionActionBar: UIStackView = {
|
||
let stack = UIStackView(arrangedSubviews: [
|
||
selectionMenuButton(title: "拷贝", menuAction: .copy),
|
||
selectionMenuButton(title: "高亮", menuAction: .highlight),
|
||
selectionMenuButton(title: "批注", menuAction: .annotate)
|
||
])
|
||
stack.axis = .horizontal
|
||
stack.alignment = .fill
|
||
stack.distribution = .fillEqually
|
||
stack.spacing = 1
|
||
stack.backgroundColor = UIColor(white: 0.12, alpha: 0.96)
|
||
stack.layer.cornerRadius = 10
|
||
stack.layer.masksToBounds = true
|
||
stack.layer.zPosition = 100
|
||
stack.isHidden = true
|
||
stack.accessibilityIdentifier = "epub.reader.selection.menu"
|
||
return stack
|
||
}()
|
||
|
||
// MARK: - Init
|
||
|
||
override init(frame: CGRect) {
|
||
super.init(frame: frame)
|
||
accessibilityIdentifier = "epub.reader.content.view"
|
||
addSubview(coverImageView)
|
||
#if canImport(DTCoreText)
|
||
addSubview(backgroundOverlayView)
|
||
addSubview(coreTextContentView)
|
||
#endif
|
||
addSubview(overlayView)
|
||
addSubview(textView)
|
||
addSubview(pageNumberLabel)
|
||
addSubview(selectionActionBar)
|
||
|
||
textView.delegate = selectionController
|
||
selectionController.onSelectionChanged = { [weak self] selection in
|
||
guard let self else { return }
|
||
self.currentSelection = selection
|
||
if let selection {
|
||
self.menuSelection = selection
|
||
self.showSelectionActionBarIfNeeded()
|
||
} else {
|
||
self.hideSelectionActionBar()
|
||
}
|
||
self.delegate?.textContentView(self, didChangeSelection: selection)
|
||
}
|
||
selectionController.pageProvider = { [weak self] in self?.currentPage }
|
||
}
|
||
|
||
required init?(coder: NSCoder) {
|
||
fatalError("init(coder:) has not been implemented")
|
||
}
|
||
|
||
// MARK: - First Responder
|
||
|
||
override var canBecomeFirstResponder: Bool { true }
|
||
|
||
override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
|
||
action == #selector(rd_copy(_:))
|
||
|| action == #selector(rd_highlight(_:))
|
||
|| action == #selector(rd_annotate(_:))
|
||
}
|
||
|
||
@objc func rd_copy(_ sender: Any?) {
|
||
performSelectionAction(.copy)
|
||
}
|
||
|
||
@objc func rd_highlight(_ sender: Any?) {
|
||
performSelectionAction(.highlight)
|
||
}
|
||
|
||
@objc func rd_annotate(_ sender: Any?) {
|
||
performSelectionAction(.annotate)
|
||
}
|
||
|
||
// MARK: - Layout
|
||
|
||
override func layoutSubviews() {
|
||
super.layoutSubviews()
|
||
|
||
#if canImport(DTCoreText)
|
||
backgroundOverlayView.frame = bounds.inset(by: contentInsets)
|
||
coreTextContentView.frame = bounds.inset(by: contentInsets)
|
||
updateCoreTextLayoutFrameIfNeeded()
|
||
#endif
|
||
overlayView.frame = bounds.inset(by: contentInsets)
|
||
textView.frame = bounds.inset(by: contentInsets)
|
||
coverImageView.frame = bounds.inset(by: contentInsets)
|
||
|
||
let labelSize = pageNumberLabel.sizeThatFits(CGSize(width: bounds.width, height: 20))
|
||
pageNumberLabel.frame = CGRect(
|
||
x: bounds.width - labelSize.width - 24,
|
||
y: bounds.height - labelSize.height - 20,
|
||
width: labelSize.width,
|
||
height: labelSize.height
|
||
)
|
||
updateSelectionActionBarFrame()
|
||
}
|
||
|
||
// MARK: - Configure
|
||
|
||
func configure(
|
||
page: RDEPUBTextPage,
|
||
pageNumber: Int,
|
||
totalPages: Int,
|
||
configuration: RDEPUBReaderConfiguration,
|
||
highlights: [RDEPUBHighlight] = [],
|
||
searchState: RDEPUBSearchState? = nil
|
||
) {
|
||
currentPage = page
|
||
currentSelection = nil
|
||
menuSelection = nil
|
||
selectionController.clearSelection()
|
||
contentInsets = configuration.reflowableContentInsets
|
||
backgroundColor = configuration.theme.contentBackgroundColor
|
||
pageNumberLabel.textColor = configuration.theme.contentTextColor
|
||
pageNumberLabel.text = "\(pageNumber) / \(totalPages)"
|
||
|
||
if configureCoverIfNeeded(for: page) {
|
||
#if canImport(DTCoreText)
|
||
coreTextContentView.isHidden = true
|
||
coreTextContentView.layoutFrame = nil
|
||
coreTextDisplayContent = nil
|
||
coreTextDisplayRange = nil
|
||
textView.isHidden = true
|
||
textView.isUserInteractionEnabled = false
|
||
#endif
|
||
textView.attributedText = nil
|
||
delegate?.textContentView(self, didChangeSelection: nil)
|
||
setNeedsLayout()
|
||
return
|
||
}
|
||
|
||
coverImageView.isHidden = true
|
||
coverImageView.image = nil
|
||
|
||
#if canImport(DTCoreText)
|
||
let displayContent = darkImageAdjustedContentIfNeeded(
|
||
normalizedPageContent(from: page),
|
||
configuration: configuration
|
||
)
|
||
let fullRange = NSRange(location: 0, length: displayContent.length)
|
||
displayContent.addAttribute(
|
||
.foregroundColor,
|
||
value: configuration.theme.contentTextColor,
|
||
range: fullRange
|
||
)
|
||
// 注入高亮/下划线自定义属性(对齐 WXRead 的 WRChapterData.addHighlightInRange:)
|
||
applyHighlightsToContent(displayContent, highlights: highlights, page: page)
|
||
coreTextContentView.isHidden = false
|
||
coreTextContentView.backgroundColor = .clear
|
||
coreTextDisplayContent = displayContent
|
||
coreTextDisplayRange = NSRange(location: 0, length: displayContent.length)
|
||
coreTextContentView.attributedDisplayContent = displayContent
|
||
textView.isHidden = false
|
||
textView.isUserInteractionEnabled = true
|
||
textView.tintColor = configuration.theme.toolControlTextColor
|
||
textView.attributedText = selectionProxyContent(from: displayContent)
|
||
textView.selectedRange = NSRange(location: 0, length: 0)
|
||
updateCoreTextLayoutFrameIfNeeded()
|
||
#else
|
||
let selectionContent = normalizedPageContent(from: page)
|
||
let selectionRange = NSRange(location: 0, length: selectionContent.length)
|
||
selectionContent.addAttribute(
|
||
.foregroundColor,
|
||
value: configuration.theme.contentTextColor,
|
||
range: selectionRange
|
||
)
|
||
overlayView.applyHighlights(highlights, to: selectionContent, page: page, contentBaseOffset: page.pageStartOffset)
|
||
overlayView.applySearchHighlights(to: selectionContent, page: page, searchState: searchState, contentBaseOffset: page.pageStartOffset)
|
||
textView.isHidden = false
|
||
textView.isUserInteractionEnabled = true
|
||
textView.tintColor = configuration.theme.toolControlTextColor
|
||
textView.attributedText = selectionProxyContent(from: selectionContent)
|
||
textView.selectedRange = NSRange(location: 0, length: 0)
|
||
#endif
|
||
|
||
overlayView.configure(page: page, selectionColor: overlayView.selectionColor, snapshot: interactionController.snapshot)
|
||
#if canImport(DTCoreText)
|
||
backgroundOverlayView.configure(page: page, selectionColor: overlayView.selectionColor, snapshot: interactionController.snapshot)
|
||
// 高亮/下划线已通过 attributed string 自定义属性注入,由 renderView 在 draw(_:) 中绘制
|
||
let (_, fgDecorations) = overlayView.buildDecorations(
|
||
page: page,
|
||
highlights: [],
|
||
searchState: searchState,
|
||
interactionController: interactionController
|
||
)
|
||
overlayView.applyDecorations(fgDecorations)
|
||
#endif
|
||
|
||
delegate?.textContentView(self, didChangeSelection: nil)
|
||
setNeedsLayout()
|
||
}
|
||
|
||
func clearSelection() {
|
||
currentSelection = nil
|
||
menuSelection = nil
|
||
selectionController.clearSelection()
|
||
textView.selectedRange = NSRange(location: 0, length: 0)
|
||
overlayView.clearSelection()
|
||
backgroundOverlayView.clearSelection()
|
||
UIMenuController.shared.setMenuVisible(false, animated: true)
|
||
}
|
||
|
||
// MARK: - 选择操作
|
||
|
||
private func performSelectionAction(_ action: RDEPUBAnnotationMenuAction) {
|
||
let selection = currentSelection ?? menuSelection
|
||
delegate?.textContentView(self, didRequestSelectionAction: action, selection: selection)
|
||
menuSelection = nil
|
||
hideSelectionActionBar()
|
||
}
|
||
|
||
private func selectionMenuButton(title: String, menuAction: RDEPUBAnnotationMenuAction) -> UIButton {
|
||
let button = UIButton(type: .system)
|
||
button.setTitle(title, for: .normal)
|
||
button.setTitleColor(.white, for: .normal)
|
||
button.titleLabel?.font = UIFont.systemFont(ofSize: 15, weight: .medium)
|
||
button.contentEdgeInsets = UIEdgeInsets(top: 10, left: 14, bottom: 10, right: 14)
|
||
button.backgroundColor = .clear
|
||
button.accessibilityLabel = title
|
||
button.accessibilityIdentifier = "epub.reader.selection.\(title)"
|
||
button.addAction(
|
||
UIAction { [weak self] _ in
|
||
self?.performSelectionAction(menuAction)
|
||
},
|
||
for: .touchUpInside
|
||
)
|
||
return button
|
||
}
|
||
|
||
private func showSelectionActionBarIfNeeded() {
|
||
guard textView.selectedRange.length > 0,
|
||
let textRange = textView.selectedTextRange else { return }
|
||
let rect = textView.firstRect(for: textRange)
|
||
guard !rect.isNull, !rect.isEmpty else { return }
|
||
selectionActionBar.isHidden = false
|
||
updateSelectionActionBarFrame()
|
||
bringSubviewToFront(selectionActionBar)
|
||
}
|
||
|
||
private func hideSelectionActionBar() {
|
||
selectionActionBar.isHidden = true
|
||
}
|
||
|
||
private func updateSelectionActionBarFrame() {
|
||
guard !selectionActionBar.isHidden,
|
||
let textRange = textView.selectedTextRange else { return }
|
||
let rect = textView.firstRect(for: textRange)
|
||
guard !rect.isNull, !rect.isEmpty else { return }
|
||
let targetRect = convert(rect, from: textView)
|
||
|
||
let fittingSize = selectionActionBar.systemLayoutSizeFitting(UIView.layoutFittingCompressedSize)
|
||
let width = max(fittingSize.width, 168)
|
||
let height = max(fittingSize.height, 42)
|
||
let horizontalPadding: CGFloat = 12
|
||
let x = min(
|
||
max(targetRect.midX - width / 2, horizontalPadding),
|
||
max(horizontalPadding, bounds.width - width - horizontalPadding)
|
||
)
|
||
let preferredY = targetRect.minY - height - 8
|
||
let y = preferredY >= 8 ? preferredY : min(targetRect.maxY + 8, bounds.height - height - 8)
|
||
selectionActionBar.frame = CGRect(x: x, y: max(8, y), width: width, height: height)
|
||
}
|
||
|
||
// MARK: - Cover Image
|
||
|
||
private func configureCoverIfNeeded(for page: RDEPUBTextPage) -> Bool {
|
||
guard page.pageIndexInChapter == 0,
|
||
page.href.lowercased().contains("cover"),
|
||
let image = coverImage(from: page.content) else {
|
||
return false
|
||
}
|
||
|
||
coverImageView.image = image
|
||
coverImageView.isHidden = false
|
||
#if canImport(DTCoreText)
|
||
coreTextContentView.isHidden = true
|
||
coreTextContentView.layoutFrame = nil
|
||
coreTextDisplayContent = nil
|
||
coreTextDisplayRange = nil
|
||
textView.isHidden = true
|
||
textView.isUserInteractionEnabled = false
|
||
#endif
|
||
textView.attributedText = nil
|
||
return true
|
||
}
|
||
|
||
private func coverImage(from content: NSAttributedString) -> UIImage? {
|
||
guard content.length > 0 else { return nil }
|
||
var resolvedImage: UIImage?
|
||
content.enumerateAttribute(.attachment, in: NSRange(location: 0, length: content.length)) { value, _, stop in
|
||
guard let image = image(from: value) else { return }
|
||
resolvedImage = image
|
||
stop.pointee = true
|
||
}
|
||
return resolvedImage
|
||
}
|
||
|
||
private func image(from attachmentValue: Any?) -> UIImage? {
|
||
#if canImport(DTCoreText)
|
||
if let attachment = attachmentValue as? DTTextAttachment,
|
||
let url = attachment.contentURL {
|
||
return UIImage(contentsOfFile: url.path)
|
||
}
|
||
#endif
|
||
if let attachment = attachmentValue as? NSTextAttachment {
|
||
if let image = attachment.image { return image }
|
||
if let data = attachment.contents { return UIImage(data: data) }
|
||
if let fileWrapper = attachment.fileWrapper,
|
||
let data = fileWrapper.regularFileContents { return UIImage(data: data) }
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// MARK: - Dark Image Adjustment
|
||
|
||
#if canImport(DTCoreText)
|
||
private func darkImageAdjustedContentIfNeeded(
|
||
_ content: NSMutableAttributedString,
|
||
configuration: RDEPUBReaderConfiguration
|
||
) -> NSMutableAttributedString {
|
||
guard configuration.darkImageAdjustmentEnabled,
|
||
configuration.darkImageBlendRatio > 0,
|
||
configuration.theme.contentBackgroundColor.rd_isDarkReaderBackground else {
|
||
return content
|
||
}
|
||
|
||
let fullRange = NSRange(location: 0, length: content.length)
|
||
content.enumerateAttribute(.attachment, in: fullRange) { value, range, _ in
|
||
guard let attachment = value as? DTImageTextAttachment,
|
||
!isCoverAttachment(attachment),
|
||
let image = attachment.image,
|
||
shouldAdjustDarkImage(image) else { return }
|
||
|
||
let adjustedAttachment = DTImageTextAttachment()
|
||
adjustedAttachment.image = adjustedImage(
|
||
image,
|
||
backgroundColor: configuration.theme.contentBackgroundColor,
|
||
blendRatio: configuration.darkImageBlendRatio,
|
||
cacheKey: darkImageCacheKey(for: attachment, image: image, configuration: configuration)
|
||
)
|
||
adjustedAttachment.originalSize = attachment.originalSize
|
||
adjustedAttachment.displaySize = attachment.displaySize
|
||
adjustedAttachment.verticalAlignment = attachment.verticalAlignment
|
||
adjustedAttachment.contentURL = attachment.contentURL
|
||
adjustedAttachment.hyperLinkURL = attachment.hyperLinkURL
|
||
adjustedAttachment.hyperLinkGUID = attachment.hyperLinkGUID
|
||
adjustedAttachment.attributes = attachment.attributes
|
||
content.addAttribute(.attachment, value: adjustedAttachment, range: range)
|
||
}
|
||
return content
|
||
}
|
||
|
||
private func isCoverAttachment(_ attachment: DTTextAttachment) -> Bool {
|
||
let lowercasedClasses = ((attachment.attributes["class"] as? String) ?? "").lowercased()
|
||
let lowercasedPath = attachment.contentURL?.lastPathComponent.lowercased()
|
||
?? ((attachment.attributes["src"] as? String) ?? "").lowercased()
|
||
return lowercasedClasses.contains("rd-front-cover-image") || lowercasedPath.contains("cover")
|
||
}
|
||
|
||
private func shouldAdjustDarkImage(_ image: UIImage) -> Bool {
|
||
image.size.width >= 80 && image.size.height >= 80
|
||
}
|
||
|
||
private func darkImageCacheKey(
|
||
for attachment: DTImageTextAttachment,
|
||
image: UIImage,
|
||
configuration: RDEPUBReaderConfiguration
|
||
) -> NSString {
|
||
let source = attachment.contentURL?.absoluteString
|
||
?? "\(Unmanaged.passUnretained(image).toOpaque())"
|
||
return "\(source)|\(image.size.width)x\(image.size.height)|\(configuration.theme.contentBackgroundColor.ss_cssString)|\(configuration.darkImageBlendRatio)" as NSString
|
||
}
|
||
|
||
private func adjustedImage(
|
||
_ image: UIImage,
|
||
backgroundColor: UIColor,
|
||
blendRatio: CGFloat,
|
||
cacheKey: NSString
|
||
) -> UIImage {
|
||
if let cached = Self.darkAdjustedImageCache.object(forKey: cacheKey) { return cached }
|
||
let format = UIGraphicsImageRendererFormat()
|
||
format.scale = image.scale
|
||
format.opaque = false
|
||
let renderer = UIGraphicsImageRenderer(size: image.size, format: format)
|
||
let adjusted = renderer.image { context in
|
||
image.draw(in: CGRect(origin: .zero, size: image.size))
|
||
backgroundColor.withAlphaComponent(max(0, min(0.35, blendRatio))).setFill()
|
||
context.cgContext.setBlendMode(.sourceAtop)
|
||
context.fill(CGRect(origin: .zero, size: image.size))
|
||
}
|
||
Self.darkAdjustedImageCache.setObject(adjusted, forKey: cacheKey)
|
||
return adjusted
|
||
}
|
||
#endif
|
||
|
||
// MARK: - 高亮属性注入(对齐 WXRead 的 WRChapterData.addHighlightInRange:)
|
||
|
||
private func applyHighlightsToContent(
|
||
_ content: NSMutableAttributedString,
|
||
highlights: [RDEPUBHighlight],
|
||
page: RDEPUBTextPage
|
||
) {
|
||
for highlight in highlights {
|
||
guard let rangeInfo = highlight.rangeInfo,
|
||
let info = RDEPUBTextOffsetRangeInfo.decode(from: rangeInfo),
|
||
let absoluteRange = info.nsRange else { continue }
|
||
let overlap = NSIntersectionRange(absoluteRange, page.contentRange)
|
||
guard overlap.length > 0 else { continue }
|
||
let relativeRange = NSRange(location: overlap.location - page.pageStartOffset, length: overlap.length)
|
||
guard relativeRange.location >= 0,
|
||
relativeRange.location + relativeRange.length <= content.length else { continue }
|
||
|
||
switch highlight.style {
|
||
case .highlight:
|
||
content.addAttribute(kRDEPUBHighlightAttributeName, value: highlight.uiColor, range: relativeRange)
|
||
case .underline:
|
||
content.addAttribute(kRDEPUBUnderlineAttributeName, value: highlight.uiColor, range: relativeRange)
|
||
}
|
||
}
|
||
}
|
||
|
||
// MARK: - Selection Proxy Content
|
||
|
||
private func selectionProxyContent(from content: NSAttributedString) -> NSAttributedString {
|
||
let proxy = NSMutableAttributedString(attributedString: content)
|
||
let fullRange = NSRange(location: 0, length: proxy.length)
|
||
proxy.removeAttribute(.backgroundColor, range: fullRange)
|
||
proxy.addAttribute(.foregroundColor, value: UIColor.clear, range: fullRange)
|
||
|
||
var attachmentRanges: [NSRange] = []
|
||
proxy.enumerateAttribute(.attachment, in: fullRange) { value, range, _ in
|
||
guard value != nil else { return }
|
||
attachmentRanges.append(range)
|
||
}
|
||
|
||
for range in attachmentRanges.reversed() {
|
||
let replacement = NSAttributedString(
|
||
string: String(repeating: " ", count: max(range.length, 1)),
|
||
attributes: [
|
||
.font: proxy.attribute(.font, at: max(range.location - 1, 0), effectiveRange: nil) as Any,
|
||
.foregroundColor: UIColor.clear
|
||
]
|
||
)
|
||
proxy.replaceCharacters(in: range, with: replacement)
|
||
}
|
||
return proxy
|
||
}
|
||
|
||
// MARK: - Content Normalization
|
||
|
||
private func normalizedPageContent(from page: RDEPUBTextPage) -> NSMutableAttributedString {
|
||
let content = NSMutableAttributedString(attributedString: page.content)
|
||
guard shouldNormalizeContinuationParagraph(for: page) else { return content }
|
||
|
||
let text = content.string as NSString
|
||
let firstParagraphRange = text.paragraphRange(for: NSRange(location: 0, length: 0))
|
||
guard firstParagraphRange.length > 0 else { return content }
|
||
|
||
content.enumerateAttribute(.paragraphStyle, in: firstParagraphRange) { value, range, _ in
|
||
guard let style = value as? NSParagraphStyle else { return }
|
||
let mutableStyle = (style.mutableCopy() as? NSMutableParagraphStyle) ?? NSMutableParagraphStyle()
|
||
mutableStyle.firstLineHeadIndent = mutableStyle.headIndent
|
||
mutableStyle.paragraphSpacingBefore = 0
|
||
content.addAttribute(.paragraphStyle, value: mutableStyle.copy() as Any, range: range)
|
||
}
|
||
return content
|
||
}
|
||
|
||
private func shouldNormalizeContinuationParagraph(for page: RDEPUBTextPage) -> Bool {
|
||
let pageStart = page.pageStartOffset
|
||
guard pageStart > 0, pageStart < page.chapterContent.length else { return false }
|
||
let chapterText = page.chapterContent.string as NSString
|
||
guard let previousScalar = UnicodeScalar(chapterText.character(at: pageStart - 1)) else { return false }
|
||
return !CharacterSet.newlines.contains(previousScalar)
|
||
}
|
||
|
||
// MARK: - CoreText Layout
|
||
|
||
#if canImport(DTCoreText)
|
||
private func updateCoreTextLayoutFrameIfNeeded() {
|
||
guard !coreTextContentView.isHidden,
|
||
let displayContent = coreTextDisplayContent,
|
||
let displayRange = coreTextDisplayRange,
|
||
let page = currentPage,
|
||
coreTextContentView.bounds.width > 0,
|
||
coreTextContentView.bounds.height > 0 else {
|
||
interactionController.configure(layoutFrame: nil, page: currentPage)
|
||
return
|
||
}
|
||
|
||
guard let layouter = DTCoreTextLayouter(attributedString: displayContent) else {
|
||
coreTextContentView.layoutFrame = nil
|
||
interactionController.configure(layoutFrame: nil, page: page)
|
||
return
|
||
}
|
||
layouter.shouldCacheLayoutFrames = false
|
||
let layoutFrame = layouter.layoutFrame(with: coreTextContentView.bounds, range: displayRange)
|
||
coreTextContentView.layoutFrame = layoutFrame
|
||
interactionController.configure(layoutFrame: layoutFrame, page: page)
|
||
overlayView.updateSnapshot(interactionController.snapshot)
|
||
backgroundOverlayView.updateSnapshot(interactionController.snapshot)
|
||
}
|
||
#endif
|
||
}
|
||
|
||
// MARK: - UIColor Extension
|
||
|
||
private extension UIColor {
|
||
var rd_isDarkReaderBackground: Bool {
|
||
var red: CGFloat = 0, green: CGFloat = 0, blue: CGFloat = 0, alpha: CGFloat = 0
|
||
guard getRed(&red, green: &green, blue: &blue, alpha: &alpha) else { return false }
|
||
return (0.2126 * red + 0.7152 * green + 0.0722 * blue) < 0.35
|
||
}
|
||
}
|