// // NCViewerPDF.swift // Nextcloud // // Created by Marino Faggiana on 06/02/2020. // Copyright © 2020 Marino Faggiana. All rights reserved. // // Author Marino Faggiana // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // import Foundation import PDFKit @objc class NCViewerPDF: PDFView, NCViewerPDFSearchDelegate { private let appDelegate = UIApplication.shared.delegate as! AppDelegate private var thumbnailViewHeight: CGFloat = 40 private var pdfThumbnailView: PDFThumbnailView? private var pdfDocument: PDFDocument? private let pageView = UIView() private let pageViewLabel = UILabel() private var pageViewWidthAnchor : NSLayoutConstraint? required init?(coder: NSCoder) { super.init(coder: coder) } override init(frame: CGRect) { let height = frame.height - thumbnailViewHeight super.init(frame: CGRect(x: frame.origin.x, y: frame.origin.y, width: frame.width, height: height)) NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: k_notificationCenter_changeTheming), object: nil) NotificationCenter.default.addObserver(self, selector: #selector(changeDisplayMode), name: NSNotification.Name(rawValue: k_notificationCenter_splitViewChangeDisplayMode), object: nil) NotificationCenter.default.addObserver(self, selector: #selector(searchText), name: NSNotification.Name(rawValue: k_notificationCenter_menuSearchTextPDF), object: nil) NotificationCenter.default.addObserver(self, selector: #selector(handlePageChange), name: Notification.Name.PDFViewPageChanged, object: nil) } @objc func setupPdfView(filePath: URL, view: UIView) { pdfDocument = PDFDocument(url: filePath) document = pdfDocument backgroundColor = NCBrandColor.sharedInstance.backgroundView displayMode = .singlePageContinuous autoScales = true displayDirection = .horizontal autoresizingMask = [.flexibleWidth, .flexibleHeight, .flexibleTopMargin, .flexibleBottomMargin] usePageViewController(true, withViewOptions: nil) view.addSubview(self) pdfThumbnailView = PDFThumbnailView() pdfThumbnailView!.translatesAutoresizingMaskIntoConstraints = false pdfThumbnailView!.pdfView = self pdfThumbnailView!.layoutMode = .horizontal pdfThumbnailView!.thumbnailSize = CGSize(width: 40, height: thumbnailViewHeight) //pdfThumbnailView.layer.shadowOffset.height = -5 //pdfThumbnailView.layer.shadowOpacity = 0.25 view.addSubview(pdfThumbnailView!) pdfThumbnailView!.heightAnchor.constraint(equalToConstant: thumbnailViewHeight).isActive = true pdfThumbnailView!.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor).isActive = true pdfThumbnailView!.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor).isActive = true pdfThumbnailView!.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor).isActive = true pageView.translatesAutoresizingMaskIntoConstraints = false pageView.layer.cornerRadius = 10 pageView.backgroundColor = UIColor.gray.withAlphaComponent(0.3) view.addSubview(pageView) pageView.heightAnchor.constraint(equalToConstant: 30).isActive = true pageViewWidthAnchor = pageView.widthAnchor.constraint(equalToConstant: 10) pageViewWidthAnchor?.isActive = true pageView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor, constant: 7).isActive = true pageView.leftAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leftAnchor, constant: 7).isActive = true pageViewLabel.translatesAutoresizingMaskIntoConstraints = false pageViewLabel.textAlignment = .center pageViewLabel.textColor = .gray pageView.addSubview(pageViewLabel) pageViewLabel.leftAnchor.constraint(equalTo: pageView.leftAnchor).isActive = true pageViewLabel.rightAnchor.constraint(equalTo: pageView.rightAnchor).isActive = true pageViewLabel.topAnchor.constraint(equalTo: pageView.topAnchor).isActive = true pageViewLabel.bottomAnchor.constraint(equalTo: pageView.bottomAnchor).isActive = true layoutIfNeeded() handlePageChange() let tapGesture = UITapGestureRecognizer(target: self, action: #selector(didTap(_:))) tapGesture.numberOfTapsRequired = 1 addGestureRecognizer(tapGesture) // recognize single / double tap for gesture in gestureRecognizers! { tapGesture.require(toFail:gesture) } } //MARK: - NotificationCenter @objc func changeDisplayMode() { layoutIfNeeded() } @objc private func handlePageChange() { guard let curPage = currentPage?.pageRef?.pageNumber else { pageView.alpha = 0; return } guard let totalPages = document?.pageCount else { return } pageView.alpha = 1 pageViewLabel.text = String(curPage) + " " + NSLocalizedString("_of_", comment: "") + " " + String(totalPages) pageViewWidthAnchor?.constant = pageViewLabel.intrinsicContentSize.width + 10 UIView.animate(withDuration: 1.0, delay: 3.0, animations: { self.pageView.alpha = 0 }) } @objc func changeTheming() { guard let navigationController = appDelegate.activeDetail.navigationController else { return } if navigationController.isNavigationBarHidden == false { backgroundColor = NCBrandColor.sharedInstance.backgroundView } } //MARK: - Gesture Recognizer @objc func didTap(_ recognizer: UITapGestureRecognizer) { guard let navigationController = appDelegate.activeDetail.navigationController else { return } if navigationController.isNavigationBarHidden { appDelegate.activeDetail.navigateControllerBarHidden(false) pdfThumbnailView!.isHidden = false backgroundColor = NCBrandColor.sharedInstance.backgroundView } else { let point = recognizer.location(in: self) if point.y > self.frame.height - thumbnailViewHeight { return } appDelegate.activeDetail.navigateControllerBarHidden(true) pdfThumbnailView!.isHidden = true backgroundColor = .black } let size = self.appDelegate.activeDetail.backgroundView!.bounds var height: CGFloat = 0 if navigationController.isNavigationBarHidden { height = size.height - size.origin.y } else { height = size.height - size.origin.y - self.thumbnailViewHeight } self.frame = CGRect(x: 0, y: 0, width: size.width, height: height) handlePageChange() } //MARK: - @objc func searchText() { let viewerPDFSearch = UIStoryboard.init(name: "NCViewerPDF", bundle: nil).instantiateViewController(withIdentifier: "NCViewerPDFSearch") as! NCViewerPDFSearch viewerPDFSearch.delegate = self viewerPDFSearch.pdfDocument = pdfDocument let navigaionController = UINavigationController.init(rootViewController: viewerPDFSearch) appDelegate.activeDetail.present(navigaionController, animated: true) } func searchPdfSelection(_ pdfSelection: PDFSelection) { pdfSelection.color = .yellow currentSelection = pdfSelection go(to: pdfSelection) } }