//
// NCRichWorkspace.swift
// Nextcloud
//
// Created by Marino Faggiana on 09/01/2020.
// Copyright © 2020 TWS. All rights reserved.
//
import Foundation
@objc class NCViewRichWorkspace: UIView {
@IBOutlet weak var webView: WKWebView!
var richWorkspace: String?
required init?(coder: NSCoder) {
super.init(coder: coder)
NotificationCenter.default.addObserver(self, selector: #selector(self.changeTheming), name: NSNotification.Name(rawValue: "changeTheming"), object: nil)
self.backgroundColor = NCBrandColor.sharedInstance.brand;
}
@objc func changeTheming() {
self.backgroundColor = NCBrandColor.sharedInstance.brand;
}
@objc func setRichWorkspaceText(_ richWorkspace: String?) {
var html = ""
if richWorkspace == self.richWorkspace { return }
if richWorkspace != nil || richWorkspace!.count > 0 {
html = "
" + richWorkspace! + "
"
} else {
html = "" + NSLocalizedString("_add_notes_readme_md_", comment: "") + "
"
}
self.richWorkspace = richWorkspace
webView.loadHTMLString(html, baseURL: Bundle.main.bundleURL)
}
}
@objc class NCRichWorkspaceViewTouch: UIView {
let appDelegate = UIApplication.shared.delegate as! AppDelegate
var startPosition: CGPoint?
var originalHeight: CGFloat = 0
let minHeight: CGFloat = 0
let maxHeight: CGFloat = UIScreen.main.bounds.size.height/3
@IBOutlet weak var imageDrag: UIImageView!
required init?(coder: NSCoder) {
super.init(coder: coder)
NotificationCenter.default.addObserver(self, selector: #selector(self.changeTheming), name: NSNotification.Name(rawValue: "changeTheming"), object: nil)
}
@objc func changeTheming() {
imageDrag.image = CCGraphics.changeThemingColorImage(UIImage(named: "dragHorizontal"), width: 20, height: 10, color: NCBrandColor.sharedInstance.brandText)
}
override func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
return false
}
override func touchesBegan(_ touches: Set, with event: UIEvent?) {
let touch = touches.first
startPosition = touch?.location(in: self)
originalHeight = self.frame.height
}
override func touchesMoved(_ touches: Set, with event: UIEvent?) {
let touch = touches.first
let endPosition = touch?.location(in: self)
let difference = endPosition!.y - startPosition!.y
if let viewRichWorkspace = appDelegate.activeMain.tableView.tableHeaderView {
let differenceHeight = viewRichWorkspace.frame.height + difference
if differenceHeight <= minHeight {
CCUtility.setRichWorkspaceHeight(minHeight)
} else if differenceHeight >= maxHeight {
CCUtility.setRichWorkspaceHeight(maxHeight)
} else {
CCUtility.setRichWorkspaceHeight(differenceHeight)
}
appDelegate.activeMain.setTableViewHeader()
}
}
override func touchesEnded(_ touches: Set, with event: UIEvent?) {
// appDelegate.activeMain.tableView.reloadData()
}
}