Files
OrderScheduling/Pods/ZLPhotoBrowser/Sources/General/ZLAlbumListController.swift
DDIsFriend f0e8a1709d initial
2023-08-18 17:28:57 +08:00

159 lines
5.6 KiB
Swift

//
// ZLAlbumListController.swift
// ZLPhotoBrowser
//
// Created by long on 2020/8/18.
//
// Copyright (c) 2020 Long Zhang <495181165@qq.com>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
import UIKit
import Photos
class ZLAlbumListController: UIViewController {
private lazy var navView = ZLExternalAlbumListNavView(title: localLanguageTextValue(.photo))
private var navBlurView: UIVisualEffectView?
private lazy var tableView: UITableView = {
let view = UITableView(frame: .zero, style: .plain)
view.backgroundColor = .zl.albumListBgColor
view.tableFooterView = UIView()
view.rowHeight = 65
view.separatorInset = UIEdgeInsets(top: 0, left: 12, bottom: 0, right: 0)
view.separatorColor = .zl.separatorLineColor
view.delegate = self
view.dataSource = self
if #available(iOS 11.0, *) {
view.contentInsetAdjustmentBehavior = .always
}
ZLAlbumListCell.zl.register(view)
return view
}()
private var arrDataSource: [ZLAlbumListModel] = []
private var shouldReloadAlbumList = true
override var preferredStatusBarStyle: UIStatusBarStyle {
return ZLPhotoUIConfiguration.default().statusBarStyle
}
deinit {
zl_debugPrint("ZLAlbumListController deinit")
}
override func viewDidLoad() {
super.viewDidLoad()
setupUI()
PHPhotoLibrary.shared().register(self)
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
navigationController?.navigationBar.isHidden = true
guard shouldReloadAlbumList else {
return
}
DispatchQueue.global().async {
ZLPhotoManager.getPhotoAlbumList(ascending: ZLPhotoConfiguration.default().sortAscending, allowSelectImage: ZLPhotoConfiguration.default().allowSelectImage, allowSelectVideo: ZLPhotoConfiguration.default().allowSelectVideo) { [weak self] albumList in
self?.arrDataSource.removeAll()
self?.arrDataSource.append(contentsOf: albumList)
self?.shouldReloadAlbumList = false
ZLMainAsync {
self?.tableView.reloadData()
}
}
}
}
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
let navViewNormalH: CGFloat = 44
var insets = UIEdgeInsets(top: 20, left: 0, bottom: 0, right: 0)
var collectionViewInsetTop: CGFloat = 20
if #available(iOS 11.0, *) {
insets = view.safeAreaInsets
collectionViewInsetTop = navViewNormalH
} else {
collectionViewInsetTop += navViewNormalH
}
navView.frame = CGRect(x: 0, y: 0, width: view.frame.width, height: insets.top + navViewNormalH)
tableView.frame = CGRect(x: insets.left, y: 0, width: view.frame.width - insets.left - insets.right, height: view.frame.height)
tableView.contentInset = UIEdgeInsets(top: collectionViewInsetTop, left: 0, bottom: 0, right: 0)
tableView.scrollIndicatorInsets = UIEdgeInsets(top: 44, left: 0, bottom: 0, right: 0)
}
private func setupUI() {
view.backgroundColor = .zl.albumListBgColor
view.addSubview(tableView)
navView.backBtn.isHidden = true
navView.cancelBlock = { [weak self] in
let nav = self?.navigationController as? ZLImageNavController
nav?.cancelBlock?()
nav?.dismiss(animated: true, completion: nil)
}
view.addSubview(navView)
}
}
extension ZLAlbumListController: UITableViewDataSource, UITableViewDelegate {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return arrDataSource.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: ZLAlbumListCell.zl.identifier, for: indexPath) as! ZLAlbumListCell
cell.configureCell(model: arrDataSource[indexPath.row], style: .externalAlbumList)
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let vc = ZLThumbnailViewController(albumList: arrDataSource[indexPath.row])
show(vc, sender: nil)
}
}
extension ZLAlbumListController: PHPhotoLibraryChangeObserver {
func photoLibraryDidChange(_ changeInstance: PHChange) {
shouldReloadAlbumList = true
}
}