123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- //
- // NCText.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 24/07/17.
- // Copyright © 2017 TWS. All rights reserved.
- //
- import Foundation
- class NCText: UIViewController, UITextViewDelegate {
- @IBOutlet weak var cancelButton: UIBarButtonItem!
- @IBOutlet weak var nextButton: UIBarButtonItem!
- @IBOutlet weak var textView: UITextView!
-
- @IBOutlet weak var bottomConstraint: NSLayoutConstraint!
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
-
- var metadata: tableMetadata?
- var loadText: String?
-
- override func viewDidLoad() {
-
- super.viewDidLoad()
-
- NotificationCenter.default.addObserver(self, selector: #selector(self.keyboardWillShowHandle(info:)), name: .UIKeyboardWillShow, object: nil)
- NotificationCenter.default.addObserver(self, selector:#selector(self.keyboardWillHideHandle), name: .UIKeyboardWillHide, object: nil)
- self.navigationController?.navigationBar.topItem?.title = NSLocalizedString("_title_new_text_file_", comment: "")
- self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
- self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.navigationBarText
- self.navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName: NCBrandColor.sharedInstance.navigationBarText]
-
- self.navigationController?.toolbar.barTintColor = NCBrandColor.sharedInstance.navigationBarText
- self.navigationController?.toolbar.tintColor = NCBrandColor.sharedInstance.brand
-
- cancelButton.title = NSLocalizedString("_cancel_", comment: "")
- nextButton.title = NSLocalizedString("_next_", comment: "")
-
- // Modify
- if let metadata = metadata {
-
- let path = "\(appDelegate.directoryUser!)/\(metadata.fileID)"
-
- loadText = try? String(contentsOfFile: path, encoding: String.Encoding.utf8)
- textView.text = loadText
- nextButton.title = NSLocalizedString("_save_", comment: "")
- self.navigationController?.navigationBar.topItem?.title = NSLocalizedString(metadata.fileNamePrint, comment: "")
-
- } else {
-
- loadText = ""
- }
-
- textView.isUserInteractionEnabled = true
- textView.becomeFirstResponder()
- textView.delegate = self
-
- textViewDidChange(textView)
- }
- func keyboardWillShowHandle(info:NSNotification) {
-
- let frameView = self.view.convert(self.view.bounds, to: self.view.window)
- let endView = frameView.origin.y + frameView.size.height
-
- if let keyboardSize = (info.userInfo?[UIKeyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue, let _ = self.view.window?.frame {
-
- if endView - keyboardSize.origin.y > 0 {
- bottomConstraint.constant = endView - keyboardSize.origin.y
- } else {
- bottomConstraint.constant = 0
- }
- }
- }
-
- func keyboardWillHideHandle() {
- bottomConstraint.constant = 0
- }
-
- func textViewDidChange(_ textView: UITextView) {
-
- if textView.text.characters.count == 0 {
- nextButton.isEnabled = false
- } else {
- nextButton.isEnabled = true
- }
- }
-
- @IBAction func cancelButtonTapped(_ sender: AnyObject) {
-
- if textView.text != loadText {
-
- let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: NSLocalizedString("_save_exit_", comment: ""), preferredStyle: .alert)
-
- let actionYes = UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default) { (action:UIAlertAction) in
- self.dismiss(animated: true, completion: nil)
- }
-
- let actionNo = UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .cancel) { (action:UIAlertAction) in
- print("You've pressed No button")
- }
-
- alertController.addAction(actionYes)
- alertController.addAction(actionNo)
-
- self.present(alertController, animated: true, completion:nil)
-
- } else {
-
- self.dismiss(animated: true, completion: nil)
- }
- }
-
- @IBAction func nextButtonTapped(_ sender: AnyObject) {
-
- if let metadata = metadata {
-
- let uploadID = k_uploadSessionID + CCUtility.createRandomString(16)
- let data = textView.text.data(using: .utf8)
- let success = FileManager.default.createFile(atPath: "\(self.appDelegate.directoryUser!)/\(uploadID)", contents: data, attributes: nil)
-
- if success {
-
- // Prepare for send Metadata
- metadata.fileID = uploadID
- metadata.sessionID = uploadID
- metadata.session = k_upload_session
- metadata.sessionTaskIdentifier = Int(k_taskIdentifierWaitStart)
- _ = NCManageDatabase.sharedInstance.updateMetadata(metadata)
-
- self.dismiss(animated: true, completion: {
-
- CCNetworking.shared().uploadFileMetadata(metadata, taskStatus: Int(k_taskStatusResume))
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "detailBack"), object: nil)
- })
- } else {
- self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
- }
-
- } else {
-
- let formViewController = CreateFormUploadFile.init(serverUrl: appDelegate.activeMain.serverUrl, text: self.textView.text, fileName: NSLocalizedString("_untitled_txt_", comment: ""))
- self.navigationController?.pushViewController(formViewController, animated: true)
- }
- }
- }
|