2017-05-27 19:43:27 +02:00
|
|
|
//
|
|
|
|
// DetailViewController.swift
|
|
|
|
// Evergreen
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 7/26/15.
|
|
|
|
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import WebKit
|
|
|
|
import RSCore
|
2017-09-17 21:22:15 +02:00
|
|
|
import Data
|
2017-12-03 21:13:44 +01:00
|
|
|
import RSWeb
|
2017-05-27 19:43:27 +02:00
|
|
|
|
2017-12-03 21:45:34 +01:00
|
|
|
final class DetailViewController: NSViewController, WKNavigationDelegate, WKUIDelegate {
|
2017-11-06 05:31:50 +01:00
|
|
|
|
2017-12-16 19:18:02 +01:00
|
|
|
@IBOutlet var containerView: DetailContainerView!
|
|
|
|
|
2018-02-10 20:16:09 +01:00
|
|
|
var webview: DetailWebView!
|
2017-12-03 21:45:34 +01:00
|
|
|
var noSelectionView: NoSelectionView!
|
2017-12-03 21:38:44 +01:00
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
var article: Article? {
|
|
|
|
didSet {
|
|
|
|
reloadHTML()
|
2017-12-03 21:38:44 +01:00
|
|
|
showOrHideWebView()
|
2017-05-27 19:43:27 +02:00
|
|
|
}
|
|
|
|
}
|
2017-11-06 05:31:50 +01:00
|
|
|
|
2017-12-20 22:39:31 +01:00
|
|
|
private var webviewIsHidden: Bool {
|
|
|
|
return containerView.contentView !== webview
|
|
|
|
}
|
|
|
|
|
2017-11-06 05:31:50 +01:00
|
|
|
private struct MessageName {
|
|
|
|
static let mouseDidEnter = "mouseDidEnter"
|
|
|
|
static let mouseDidExit = "mouseDidExit"
|
|
|
|
}
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
override func viewDidLoad() {
|
|
|
|
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(timelineSelectionDidChange(_:)), name: .TimelineSelectionDidChange, object: nil)
|
|
|
|
|
|
|
|
let preferences = WKPreferences()
|
|
|
|
preferences.minimumFontSize = 12.0
|
|
|
|
preferences.javaScriptCanOpenWindowsAutomatically = false
|
|
|
|
preferences.javaEnabled = false
|
|
|
|
preferences.javaScriptEnabled = true
|
|
|
|
preferences.plugInsEnabled = false
|
|
|
|
|
|
|
|
let configuration = WKWebViewConfiguration()
|
|
|
|
configuration.preferences = preferences
|
|
|
|
|
2017-11-06 05:31:50 +01:00
|
|
|
let userContentController = WKUserContentController()
|
|
|
|
userContentController.add(self, name: MessageName.mouseDidEnter)
|
|
|
|
userContentController.add(self, name: MessageName.mouseDidExit)
|
|
|
|
configuration.userContentController = userContentController
|
|
|
|
|
2018-02-10 20:16:09 +01:00
|
|
|
webview = DetailWebView(frame: self.view.bounds, configuration: configuration)
|
2017-05-27 19:43:27 +02:00
|
|
|
webview.uiDelegate = self
|
|
|
|
webview.navigationDelegate = self
|
|
|
|
webview.translatesAutoresizingMaskIntoConstraints = false
|
2017-12-03 21:13:44 +01:00
|
|
|
if let userAgent = UserAgent.fromInfoPlist() {
|
|
|
|
webview.customUserAgent = userAgent
|
|
|
|
}
|
|
|
|
|
2017-12-03 21:45:34 +01:00
|
|
|
noSelectionView = NoSelectionView(frame: self.view.bounds)
|
2017-12-03 21:38:44 +01:00
|
|
|
|
2017-12-16 19:18:02 +01:00
|
|
|
containerView.viewController = self
|
2017-12-03 21:38:44 +01:00
|
|
|
|
|
|
|
showOrHideWebView()
|
2017-05-27 19:43:27 +02:00
|
|
|
}
|
|
|
|
|
2017-12-20 22:39:31 +01:00
|
|
|
// MARK: - Scrolling
|
|
|
|
|
|
|
|
func canScrollDown(_ callback: @escaping (Bool) -> Void) {
|
|
|
|
|
|
|
|
if webviewIsHidden {
|
|
|
|
callback(false)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
fetchScrollInfo { (scrollInfo) in
|
|
|
|
callback(scrollInfo?.canScrollDown ?? false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override func scrollPageDown(_ sender: Any?) {
|
|
|
|
|
|
|
|
guard !webviewIsHidden else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
webview.scrollPageDown(sender)
|
|
|
|
}
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
// MARK: Notifications
|
|
|
|
|
2017-12-18 21:34:07 +01:00
|
|
|
@objc func timelineSelectionDidChange(_ notification: Notification) {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
2017-12-18 21:34:07 +01:00
|
|
|
guard let userInfo = notification.userInfo else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
guard let timelineView = userInfo[UserInfoKey.view] as? NSView, timelineView.window === view.window else {
|
|
|
|
return
|
2017-05-27 19:43:27 +02:00
|
|
|
}
|
2017-12-18 21:34:07 +01:00
|
|
|
|
|
|
|
let timelineArticle = userInfo[UserInfoKey.article] as? Article
|
|
|
|
article = timelineArticle
|
2017-05-27 19:43:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func viewWillStartLiveResize() {
|
|
|
|
|
|
|
|
webview.evaluateJavaScript("document.body.style.overflow = 'hidden';", completionHandler: nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func viewDidEndLiveResize() {
|
|
|
|
|
|
|
|
webview.evaluateJavaScript("document.body.style.overflow = 'visible';", completionHandler: nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Private
|
|
|
|
|
|
|
|
private func reloadHTML() {
|
|
|
|
|
|
|
|
if let article = article {
|
2017-09-23 22:59:19 +02:00
|
|
|
let articleRenderer = ArticleRenderer(article: article, style: ArticleStylesManager.shared.currentStyle)
|
2017-05-27 19:43:27 +02:00
|
|
|
webview.loadHTMLString(articleRenderer.html, baseURL: articleRenderer.baseURL)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
webview.loadHTMLString("", baseURL: nil)
|
|
|
|
}
|
|
|
|
}
|
2017-12-03 21:38:44 +01:00
|
|
|
|
|
|
|
private func showOrHideWebView() {
|
|
|
|
|
|
|
|
if let _ = article {
|
|
|
|
switchToView(webview)
|
|
|
|
}
|
|
|
|
else {
|
2017-12-03 21:45:34 +01:00
|
|
|
switchToView(noSelectionView)
|
2017-12-03 21:38:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private func switchToView(_ view: NSView) {
|
|
|
|
|
2017-12-16 19:18:02 +01:00
|
|
|
if containerView.contentView == view {
|
2017-12-03 21:38:44 +01:00
|
|
|
return
|
|
|
|
}
|
2017-12-16 19:18:02 +01:00
|
|
|
containerView.contentView = view
|
2017-12-03 21:38:44 +01:00
|
|
|
}
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
// MARK: WKNavigationDelegate
|
|
|
|
|
|
|
|
public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
|
|
|
|
|
|
|
|
if navigationAction.navigationType == .linkActivated {
|
|
|
|
|
|
|
|
if let url = navigationAction.request.url {
|
2017-10-06 03:12:58 +02:00
|
|
|
Browser.open(url.absoluteString)
|
2017-05-27 19:43:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
decisionHandler(.cancel)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
decisionHandler(.allow)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-06 05:31:50 +01:00
|
|
|
extension DetailViewController: WKScriptMessageHandler {
|
|
|
|
|
|
|
|
func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) {
|
|
|
|
|
|
|
|
if message.name == MessageName.mouseDidEnter, let link = message.body as? String {
|
|
|
|
mouseDidEnter(link)
|
|
|
|
}
|
|
|
|
else if message.name == MessageName.mouseDidExit, let link = message.body as? String{
|
|
|
|
mouseDidExit(link)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private func mouseDidEnter(_ link: String) {
|
|
|
|
|
|
|
|
if link.isEmpty {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-12-18 21:34:07 +01:00
|
|
|
var userInfo = UserInfoDictionary()
|
|
|
|
userInfo[UserInfoKey.view] = view
|
|
|
|
userInfo[UserInfoKey.url] = link
|
2017-11-06 05:31:50 +01:00
|
|
|
|
2017-12-18 21:34:07 +01:00
|
|
|
NotificationCenter.default.post(name: .MouseDidEnterLink, object: self, userInfo: userInfo)
|
2017-11-06 05:31:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private func mouseDidExit(_ link: String) {
|
|
|
|
|
2017-12-18 21:34:07 +01:00
|
|
|
var userInfo = UserInfoDictionary()
|
|
|
|
userInfo[UserInfoKey.view] = view
|
|
|
|
userInfo[UserInfoKey.url] = link
|
2017-11-06 05:31:50 +01:00
|
|
|
|
2017-12-18 21:34:07 +01:00
|
|
|
NotificationCenter.default.post(name: .MouseDidExitLink, object: self, userInfo: userInfo)
|
2017-11-06 05:31:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-20 22:39:31 +01:00
|
|
|
private extension DetailViewController {
|
|
|
|
|
|
|
|
func fetchScrollInfo(_ callback: @escaping (ScrollInfo?) -> Void) {
|
|
|
|
|
|
|
|
let javascriptString = "var x = {contentHeight: document.body.scrollHeight, offsetY: document.body.scrollTop}; x"
|
|
|
|
webview.evaluateJavaScript(javascriptString) { (info, error) in
|
|
|
|
|
|
|
|
guard let info = info as? [String: Any] else {
|
|
|
|
callback(nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
guard let contentHeight = info["contentHeight"] as? CGFloat, let offsetY = info["offsetY"] as? CGFloat else {
|
|
|
|
callback(nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let scrollInfo = ScrollInfo(contentHeight: contentHeight, viewHeight: self.webview.frame.height, offsetY: offsetY)
|
|
|
|
callback(scrollInfo)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 19:18:02 +01:00
|
|
|
final class DetailContainerView: NSView {
|
|
|
|
|
2017-12-29 03:41:01 +01:00
|
|
|
@IBOutlet var detailStatusBarView: DetailStatusBarView!
|
|
|
|
|
2017-12-16 19:18:02 +01:00
|
|
|
weak var viewController: DetailViewController? = nil
|
|
|
|
|
|
|
|
private var didConfigureLayer = false
|
|
|
|
|
|
|
|
override var wantsUpdateLayer: Bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
var contentView: NSView? {
|
|
|
|
didSet {
|
|
|
|
if let oldContentView = oldValue {
|
|
|
|
oldContentView.removeFromSuperviewWithoutNeedingDisplay()
|
|
|
|
}
|
|
|
|
if let contentView = contentView {
|
|
|
|
contentView.translatesAutoresizingMaskIntoConstraints = false
|
2017-12-29 03:41:01 +01:00
|
|
|
addSubview(contentView, positioned: .below, relativeTo: detailStatusBarView)
|
2017-12-16 19:18:02 +01:00
|
|
|
rs_addFullSizeConstraints(forSubview: contentView)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
override func viewWillStartLiveResize() {
|
|
|
|
|
|
|
|
viewController?.viewWillStartLiveResize()
|
|
|
|
}
|
|
|
|
|
|
|
|
override func viewDidEndLiveResize() {
|
|
|
|
|
|
|
|
viewController?.viewDidEndLiveResize()
|
|
|
|
}
|
2017-12-16 19:18:02 +01:00
|
|
|
|
|
|
|
override func updateLayer() {
|
|
|
|
|
|
|
|
guard !didConfigureLayer else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if let layer = layer {
|
|
|
|
let color = appDelegate.currentTheme.color(forKey: "MainWindow.Detail.backgroundColor")
|
|
|
|
layer.backgroundColor = color.cgColor
|
|
|
|
didConfigureLayer = true
|
|
|
|
}
|
|
|
|
}
|
2017-05-27 19:43:27 +02:00
|
|
|
}
|
2017-12-03 21:45:34 +01:00
|
|
|
|
|
|
|
final class NoSelectionView: NSView {
|
|
|
|
|
|
|
|
private var didConfigureLayer = false
|
|
|
|
|
|
|
|
override var wantsUpdateLayer: Bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
override func updateLayer() {
|
|
|
|
|
|
|
|
guard !didConfigureLayer else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if let layer = layer {
|
2018-02-19 05:37:51 +01:00
|
|
|
// let color = appDelegate.currentTheme.color(forKey: "MainWindow.Detail.noSelectionView.backgroundColor")
|
|
|
|
let color = NSColor(calibratedWhite: 0.96, alpha: 1.0)
|
2017-12-03 21:45:34 +01:00
|
|
|
layer.backgroundColor = color.cgColor
|
|
|
|
didConfigureLayer = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-20 22:39:31 +01:00
|
|
|
private struct ScrollInfo {
|
|
|
|
|
|
|
|
let contentHeight: CGFloat
|
|
|
|
let viewHeight: CGFloat
|
|
|
|
let offsetY: CGFloat
|
|
|
|
let canScrollDown: Bool
|
|
|
|
let canScrollUp: Bool
|
|
|
|
|
|
|
|
init(contentHeight: CGFloat, viewHeight: CGFloat, offsetY: CGFloat) {
|
|
|
|
|
|
|
|
self.contentHeight = contentHeight
|
|
|
|
self.viewHeight = viewHeight
|
|
|
|
self.offsetY = offsetY
|
|
|
|
|
|
|
|
self.canScrollDown = viewHeight + offsetY < contentHeight
|
|
|
|
self.canScrollUp = offsetY > 0.1
|
|
|
|
}
|
|
|
|
}
|