2019-09-21 17:37:21 +02:00
|
|
|
//
|
2019-09-24 11:29:15 +02:00
|
|
|
// ArticleViewControllerWebViewProvider.swift
|
2019-09-21 17:37:21 +02:00
|
|
|
// NetNewsWire-iOS
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 9/21/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import WebKit
|
|
|
|
|
|
|
|
/// WKWebView has an awful behavior of a flash to white on first load when in dark mode.
|
|
|
|
/// Keep a queue of WebViews where we've already done a trivial load so that by the time we need them in the UI, they're past the flash-to-shite part of their lifecycle.
|
2019-09-24 11:29:15 +02:00
|
|
|
class ArticleViewControllerWebViewProvider: NSObject, WKNavigationDelegate {
|
2019-09-21 17:37:21 +02:00
|
|
|
|
2019-09-24 11:29:15 +02:00
|
|
|
static let shared = ArticleViewControllerWebViewProvider()
|
2019-09-21 17:37:21 +02:00
|
|
|
|
2019-11-07 21:29:16 +01:00
|
|
|
let articleIconSchemeHandler = ArticleIconSchemeHandler()
|
|
|
|
|
2019-09-21 17:37:21 +02:00
|
|
|
private let minimumQueueDepth = 3
|
|
|
|
private let maximumQueueDepth = 6
|
|
|
|
private var queue: [WKWebView] = []
|
|
|
|
|
|
|
|
private var waitingForFirstLoad = true
|
|
|
|
private var waitingCompletionHandler: ((WKWebView) -> ())?
|
|
|
|
|
|
|
|
func dequeueWebView(completion: @escaping (WKWebView) -> ()) {
|
|
|
|
if waitingForFirstLoad {
|
|
|
|
waitingCompletionHandler = completion
|
|
|
|
} else {
|
|
|
|
completeRequest(completion: completion)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func enqueueWebView(_ webView: WKWebView) {
|
|
|
|
guard queue.count < maximumQueueDepth else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
webView.navigationDelegate = self
|
|
|
|
queue.insert(webView, at: 0)
|
|
|
|
|
2019-09-21 19:36:35 +02:00
|
|
|
webView.loadHTMLString(ArticleRenderer.page.html, baseURL: ArticleRenderer.page.baseURL)
|
2019-09-21 17:37:21 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: WKNavigationDelegate
|
|
|
|
|
|
|
|
func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {
|
|
|
|
if waitingForFirstLoad {
|
|
|
|
waitingForFirstLoad = false
|
|
|
|
if let completion = waitingCompletionHandler {
|
|
|
|
completeRequest(completion: completion)
|
|
|
|
waitingCompletionHandler = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Private
|
|
|
|
|
|
|
|
private override init() {
|
|
|
|
super.init()
|
|
|
|
replenishQueueIfNeeded()
|
|
|
|
}
|
|
|
|
|
|
|
|
private func replenishQueueIfNeeded() {
|
|
|
|
while queue.count < minimumQueueDepth {
|
2019-09-21 22:59:51 +02:00
|
|
|
let preferences = WKPreferences()
|
|
|
|
preferences.javaScriptCanOpenWindowsAutomatically = false
|
|
|
|
preferences.javaScriptEnabled = true
|
|
|
|
|
|
|
|
let configuration = WKWebViewConfiguration()
|
|
|
|
configuration.preferences = preferences
|
2019-10-14 02:41:34 +02:00
|
|
|
configuration.setValue(true, forKey: "allowUniversalAccessFromFileURLs")
|
2019-09-21 22:59:51 +02:00
|
|
|
configuration.allowsInlineMediaPlayback = true
|
|
|
|
configuration.mediaTypesRequiringUserActionForPlayback = .video
|
2019-11-07 21:29:16 +01:00
|
|
|
configuration.setURLSchemeHandler(articleIconSchemeHandler, forURLScheme: ArticleRenderer.imageIconScheme)
|
2019-09-21 22:59:51 +02:00
|
|
|
|
|
|
|
let webView = WKWebView(frame: .zero, configuration: configuration)
|
2019-09-21 17:37:21 +02:00
|
|
|
enqueueWebView(webView)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private func completeRequest(completion: @escaping (WKWebView) -> ()) {
|
|
|
|
if let webView = queue.popLast() {
|
|
|
|
webView.navigationDelegate = nil
|
|
|
|
replenishQueueIfNeeded()
|
|
|
|
completion(webView)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
assertionFailure("Creating WKWebView in \(#function); queue has run dry.")
|
|
|
|
let webView = WKWebView(frame: .zero)
|
|
|
|
completion(webView)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|