Blame view

HDFwear/Setting/DailSyncSubVC.swift 6.9 KB
f2cf74c7   yangbin   1.0.20(4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
  //
  //  DailSyncSubVC.swift
  //  HDFwear
  //
  //  Created by yangbin on 2022/3/12.
  //
  
  import UIKit
  import Kingfisher
  import Alamofire
  import MBProgressHUD
  
  class DailSyncSubVC: UIViewController {
      
      @IBOutlet weak var collectionView: UICollectionView!
      @IBOutlet weak var collectionViewFlowLayout: UICollectionViewFlowLayout!
      
      
      var syncDialClosure: ((_ indexPath: IndexPath) -> ())?
      
      var dialNum: Int = 9
      var dialWidth: Int = 240
      var dialHeight: Int = 280
      
      var identifierDic: [String: String] = [:]
  
      var user = UserInfo
      var styleIndex: Int = 0
      var dialIndex: Int = -1
      override func navigationShouldPop() -> Bool {
          if !IsDailSyncing {
              return true
          } else {
              MBProgressHUD.showh(LocString("正在推送表盘中,请稍后..."))
              return false
          }
      }
      
      override func viewWillAppear(_ animated: Bool) {
          super.viewWillAppear(animated)
      }
      override func viewWillDisappear(_ animated: Bool) {
          super.viewWillDisappear(animated)
          let navController = navigationController as? ZCNavigationController
          navController?.enableScreenEdgePanGestureRecognizer(true)
      }
      
      override func viewDidLoad() {
          super.viewDidLoad()
          collectionViewFlowLayout.minimumLineSpacing = 10
          collectionViewFlowLayout.minimumInteritemSpacing = 20
          collectionViewFlowLayout.sectionInset = UIEdgeInsets(top: 5, left: 10, bottom: 10+NAVBAR_HEIGHT+10, right: 10)
          collectionViewFlowLayout.itemSize = CGSize(width: (SCREEN_WIDTH-60)/3.0, height: 130)
      }
      func showAlert() -> Bool {
          if !DeviceIsConnected {
              IsDailSyncing = false
              self.showAlert(title: LocString("设备已断开"), message: "", cancelText: nil) {[weak self] action in
                  self?.navigationController?.popToRootViewController(animated: true)
              } cancel: { _ in
                  
              }
              return true
          } else {
              return false
          }
      }
      
      func downloadDailFile(_ indexPath: IndexPath) {
          if showAlert() { return }
          if IsDailSyncing { return }
          let cell = self.collectionView.cellForItem(at: indexPath) as! DailCell
          if cell.progressView.label.text == LocString("已安装") { return }
          updateUserInteraction(true)
          cell.updateProgressView(0, isDownload: true)
          
          let dest: DownloadRequest.DownloadFileDestination = { _, _ in
              let documentsURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
              let fileURL = documentsURL.appendingPathComponent("dial.bin")
              return (fileURL, [.removePreviousFile, .createIntermediateDirectories])
          }
          Alamofire.download("http://www.hodafone.com.cn/hodafone/dial/rtl/\(dialWidth)x\(dialHeight)/\(styleIndex)/\(indexPath.row)/dial.bin", to: dest).downloadProgress { progress in
              cell.updateProgressView(Int(progress.fractionCompleted*5), isDownload: true)
          }.responseData {[weak self] response in
              if let _ = response.value {
                  self?.syncDail(indexPath, path: response.destinationURL!.path)
              } else {
                  cell.initProgressView()
                  self?.updateUserInteraction(false)
                  self?.showAlert(title: LocString("提示"), message: LocString("安装失败,请重试"), cancelText: nil)
              }
          }
      }
      
      private func syncDail(_ indexPath: IndexPath, path: String) {
          if showAlert() { return }
          if !FileManager.default.fileExists(atPath: path) {
              updateUserInteraction(false)
              showAlert(title: LocString("提示"), message: LocString("安装失败,请重试"), cancelText: nil)
              return
          }
          let cell = self.collectionView.cellForItem(at: indexPath) as! DailCell
          BluetoothManager.shared.syncFileWith(path: path) { progress in
              cell.updateProgressView(Int(Double(progress)*0.95)+5)
          } completion: {[weak self] error in
              self?.updateUserInteraction(false)
              if error == nil {
                  self?.syncComplete(indexPath: indexPath)
                  cell.syncComplete()
              } else {
                  cell.initProgressView()
                  self?.showAlert(title: LocString("提示"), message: LocString("安装失败,请重试"), cancelText: nil)
              }
          }
      }
      
      
      func syncComplete(indexPath: IndexPath) {
          dialIndex = indexPath.row
          collectionView.reloadData()
  //        user.isDailSync = true
  //        user.dialIndexPath = "\(indexPath.section)-\(indexPath.row)"
          syncDialClosure?(IndexPath(row: indexPath.row, section: styleIndex))
  //        AdminHelper.shared.updateUser(user)
      }
      
      func updateUserInteraction(_ isSyncing: Bool) {
          UIApplication.shared.isIdleTimerDisabled = isSyncing
          IsDailSyncing = isSyncing
          let navController = navigationController as? ZCNavigationController
          navController?.enableScreenEdgePanGestureRecognizer(!isSyncing)
      }
      
      func clearCache() {
          let cache = ImageCache.default
          cache.clearMemoryCache()
          cache.clearDiskCache {
              DispatchQueue.main.async {
                  print("s.清除缓存成功")
              }
          }
      }
      
      deinit {
          print("deinit\(NSStringFromClass(type(of: self)))!!!!!!!")
      }
      
  }
  
  extension DailSyncSubVC: UICollectionViewDelegate, UICollectionViewDataSource {
      func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
          return dialNum
      }
      
      func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
          let identifier: String = "DailCell\(indexPath.row)\(indexPath.section)"
          if identifierDic[identifier] == nil {
              collectionView.register(UINib(nibName: "DailCell", bundle: .main), forCellWithReuseIdentifier: identifier)
              identifierDic[identifier] = identifier
          }
  
          let cell = collectionView.dequeueReusableCell(withReuseIdentifier: identifier, for: indexPath) as! DailCell
          
          switch CurDevice.platform {
f2cf74c7   yangbin   1.0.20(4)
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
          case ._828:
              cell.dailImageView.kf.setImage(with: URL(string: "http://www.hodafone.com.cn/hodafone/dial/rtl/\(dialWidth)x\(dialHeight)/\(styleIndex)/\(indexPath.row)/preview.png"), placeholder: UIImage(named: "dail_default_3"), options: [.transition(.fade(0.3))])
  //            cell.dailImageView.image = UIImage(contentsOfFile:  "\(Bundle.main.resourcePath!)/dial/dialrtkpreviewHQ7/\(indexPath.row)/preview")
          default:
              break
          }
          
          cell.cellClickClosure = {[weak self] in
              self?.downloadDailFile(indexPath)
          }
          if indexPath.row == dialIndex {
              cell.syncComplete()
          } else {
              cell.initProgressView()
          }
          
          return cell
      }
      
  }