- 新增字体选择(系统/宋体/圆体/等宽)与暗色图片柔化配置 - 文本选择改为自定义手势+操作栏(拷贝/高亮/批注) - 添加 accessibilityIdentifier 支持自动化 UI 测试 - 新增 UITests 覆盖阅读器打开/关闭、工具栏、设置面板、批注等 - 添加 Demo 测试用 EPUB 书源(宝山辽墓材料与释读) - 新增文档:UI 自动化测试、功能开发计划、阅读器规划
46 lines
1.5 KiB
Swift
46 lines
1.5 KiB
Swift
import UIKit
|
|
|
|
/// Keeps pagination cache key generation and cache IO in one BuildPipeline role.
|
|
struct RDEPUBPaginationCacheCoordinator {
|
|
private let cache: RDEPUBTextBookCache?
|
|
private let layoutConfig: RDEPUBTextLayoutConfig
|
|
|
|
init(cache: RDEPUBTextBookCache?, layoutConfig: RDEPUBTextLayoutConfig) {
|
|
self.cache = cache
|
|
self.layoutConfig = layoutConfig
|
|
}
|
|
|
|
func cacheKey(
|
|
bookID: String,
|
|
pageSize: CGSize,
|
|
style: RDEPUBTextRenderStyle
|
|
) -> String? {
|
|
guard let cache else { return nil }
|
|
return cache.cacheKey(
|
|
bookID: bookID,
|
|
fontSize: style.font.pointSize,
|
|
lineHeightMultiple: style.lineSpacing,
|
|
contentInsets: layoutConfig.edgeInsets,
|
|
pageSize: pageSize,
|
|
layoutConfigSignature: "\(layoutConfig.cacheSignature)|font=\(style.font.fontName)"
|
|
)
|
|
}
|
|
|
|
func load(key: String?) -> [String: RDEPUBTextChapterPaginationCache]? {
|
|
key.flatMap { cache?.load(key: $0) }
|
|
}
|
|
|
|
func save(chapters: [RDEPUBTextChapter], key: String?) {
|
|
guard let key else { return }
|
|
let paginationCache = chapters.map { chapter in
|
|
RDEPUBTextChapterPaginationCache(
|
|
href: chapter.href,
|
|
pageRanges: chapter.pages.map(\.contentRange),
|
|
breakReasons: chapter.pages.map(\.metadata.breakReason),
|
|
semanticHints: Array(Set(chapter.pages.flatMap(\.metadata.semanticHints)))
|
|
)
|
|
}
|
|
cache?.save(paginationCache, key: key)
|
|
}
|
|
}
|