右对齐文本显示修复(如"巫鸿"只显示"鸿"的问题): - RDEPUBChapterTailNormalizer: 短尾页合并时检查 avoidPageBreakInside 语义, 避免将带有此标记的短文本(如 right-info 署名)错误合并回上一页 - RDEPUBTextContentView: 续段归一化时跳过右对齐/居中对齐的段落, 防止错误修改 firstLineHeadIndent 导致首字不可见 - RDEPUBCSSCompatibilityLayer: 为含 text-align:right/center 的 CSS 块 自动注入 text-indent:0 !important,确保右对齐/居中文本无首行缩进 - RDEPUBTextRendererSupport: 排版属性归一化时将右对齐/居中段落的 firstLineHeadIndent 重置为 0 图片查看器及脚注点击功能: - 新增 RDEPUBImageViewController 和 RDEPUBImageViewerCoordinator, 支持从 WebView 和 TextPage 两种模式查看图片 - epub-bridge.js: 检测图片和脚注图片的点击事件,脚注图片显示弹窗 - RDEPUBJavaScriptBridge: 新增 imageDidTap/footnoteDidTap 桥接消息 - RDEPUBWebView: 新增图片和脚注点击的 delegate 方法 - RDEPUBAttachmentNormalizer: 改进脚注检测,优先使用 alt 文本判断 - RDEPUBPaginationModels: 新增 .footnote 附件类型 - RDEPUBPageLayoutSnapshot: 运行时动态解析附件类型,脚注优先级高于图片 位置解析改进: - RDEPUBReaderController+LocationResolution: 利用 rangeInfo 提升页码定位精度 其他: - RDEPUBTextBookCache: schema 版本升级至 13 - RDEPUBReaderTheme: 主题更新 - Pod 项目文件更新 Co-Authored-By: Claude <noreply@anthropic.com>
136 lines
5.5 KiB
Swift
136 lines
5.5 KiB
Swift
import UIKit
|
|
|
|
protocol RDEPUBWebContentViewDelegate: AnyObject {
|
|
|
|
func epubWebContentView(_ contentView: RDEPUBWebContentView, didUpdateLocation location: RDEPUBLocation, spineIndex: Int)
|
|
|
|
func epubWebContentView(_ contentView: RDEPUBWebContentView, didChangeSelection selection: RDEPUBSelection?, spineIndex: Int)
|
|
|
|
func epubWebContentView(_ contentView: RDEPUBWebContentView, didRequestSelectionAction action: RDEPUBAnnotationMenuAction)
|
|
|
|
func epubWebContentView(_ contentView: RDEPUBWebContentView, didActivateInternalLink location: RDEPUBLocation, fromSpineIndex: Int)
|
|
|
|
func epubWebContentView(_ contentView: RDEPUBWebContentView, didActivateExternalLink url: URL)
|
|
|
|
func epubWebContentView(_ contentView: RDEPUBWebContentView, didLogJavaScriptError message: String)
|
|
|
|
func epubWebContentView(_ contentView: RDEPUBWebContentView, didTapImageWithSource src: String, sourceRect: CGRect?)
|
|
|
|
func epubWebContentView(_ contentView: RDEPUBWebContentView, didTapFootnoteWithAltText altText: String, sourceRect: CGRect?)
|
|
}
|
|
|
|
final class RDEPUBWebContentView: UIView {
|
|
weak var delegate: RDEPUBWebContentViewDelegate?
|
|
|
|
/// The current href of the loaded chapter (exposed for image resolution).
|
|
var currentHref: String {
|
|
epubWebView.currentHref
|
|
}
|
|
|
|
private let epubWebView = RDEPUBWebView()
|
|
private let decorationOverlayView = RDEPUBWebDecorationOverlayView()
|
|
private let pageNumberLabel: UILabel = {
|
|
let label = UILabel()
|
|
label.font = UIFont.systemFont(ofSize: 13)
|
|
return label
|
|
}()
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
clipsToBounds = true
|
|
layer.masksToBounds = true
|
|
|
|
addSubview(epubWebView)
|
|
addSubview(decorationOverlayView)
|
|
addSubview(pageNumberLabel)
|
|
epubWebView.delegate = self
|
|
epubWebView.onDecorationsResolved = { [weak self] decorations in
|
|
self?.decorationOverlayView.applyDecorations(decorations)
|
|
}
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
override func layoutSubviews() {
|
|
super.layoutSubviews()
|
|
epubWebView.frame = bounds
|
|
decorationOverlayView.frame = bounds
|
|
|
|
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
|
|
)
|
|
}
|
|
|
|
func configure(
|
|
publication: RDEPUBPublication,
|
|
request: RDEPUBRenderRequest,
|
|
pageNumber: Int,
|
|
totalPages: Int,
|
|
theme: RDEPUBReaderTheme
|
|
) {
|
|
backgroundColor = theme.contentBackgroundColor
|
|
pageNumberLabel.textColor = theme.contentTextColor
|
|
pageNumberLabel.text = "\(pageNumber) / \(totalPages)"
|
|
decorationOverlayView.applyDecorations([])
|
|
epubWebView.load(publication: publication, request: request)
|
|
setNeedsLayout()
|
|
}
|
|
|
|
func releaseResources() {
|
|
decorationOverlayView.applyDecorations([])
|
|
epubWebView.reset()
|
|
epubWebView.delegate = self
|
|
epubWebView.onDecorationsResolved = { [weak self] decorations in
|
|
self?.decorationOverlayView.applyDecorations(decorations)
|
|
}
|
|
}
|
|
}
|
|
|
|
extension RDEPUBWebContentView: RDEPUBWebViewDelegate {
|
|
func epubWebView(_ webView: RDEPUBWebView, didUpdateLocation location: RDEPUBLocation, spineIndex: Int) {
|
|
delegate?.epubWebContentView(self, didUpdateLocation: location, spineIndex: spineIndex)
|
|
}
|
|
|
|
func epubWebView(_ webView: RDEPUBWebView, didChangeSelection selection: RDEPUBSelection?, spineIndex: Int) {
|
|
delegate?.epubWebContentView(self, didChangeSelection: selection, spineIndex: spineIndex)
|
|
}
|
|
|
|
func epubWebView(_ webView: RDEPUBWebView, didRequestSelectionAction action: RDEPUBAnnotationMenuAction) {
|
|
delegate?.epubWebContentView(self, didRequestSelectionAction: action)
|
|
}
|
|
|
|
func epubWebView(_ webView: RDEPUBWebView, didActivateInternalLink location: RDEPUBLocation, fromSpineIndex: Int) {
|
|
delegate?.epubWebContentView(self, didActivateInternalLink: location, fromSpineIndex: fromSpineIndex)
|
|
}
|
|
|
|
func epubWebView(_ webView: RDEPUBWebView, didActivateExternalLink url: URL) {
|
|
delegate?.epubWebContentView(self, didActivateExternalLink: url)
|
|
}
|
|
|
|
func epubWebView(_ webView: RDEPUBWebView, didLogJavaScriptError message: String) {
|
|
delegate?.epubWebContentView(self, didLogJavaScriptError: message)
|
|
}
|
|
func epubWebViewDidFinishRendering(_ webView: RDEPUBWebView) {}
|
|
func epubWebView(_ webView: RDEPUBWebView, didTapImageWithSource src: String, sourceRect: CGRect?) {
|
|
delegate?.epubWebContentView(self, didTapImageWithSource: src, sourceRect: sourceRect)
|
|
}
|
|
func epubWebView(_ webView: RDEPUBWebView, didTapFootnoteWithAltText altText: String, sourceRect: CGRect?) {
|
|
delegate?.epubWebContentView(self, didTapFootnoteWithAltText: altText, sourceRect: sourceRect)
|
|
}
|
|
}
|
|
|
|
extension RDEPUBWebContentViewDelegate {
|
|
func epubWebContentView(_ contentView: RDEPUBWebContentView, didTapImageWithSource src: String, sourceRect: CGRect?) {
|
|
// Default: no-op. Implementors can present an image viewer.
|
|
}
|
|
func epubWebContentView(_ contentView: RDEPUBWebContentView, didTapFootnoteWithAltText altText: String, sourceRect: CGRect?) {
|
|
// Default: no-op. Implementors can present a footnote tooltip.
|
|
}
|
|
}
|