232 lines
6.4 KiB
Swift
232 lines
6.4 KiB
Swift
//
|
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import YYImage
|
|
|
|
@objc
|
|
public protocol StickerPackCollectionViewDelegate {
|
|
func didTapSticker(stickerInfo: StickerInfo)
|
|
}
|
|
|
|
// MARK: -
|
|
|
|
@objc
|
|
public class StickerPackCollectionView: UICollectionView {
|
|
|
|
private var stickerPackDataSource: StickerPackDataSource? {
|
|
didSet {
|
|
AssertIsOnMainThread()
|
|
|
|
stickerPackDataSource?.add(delegate: self)
|
|
|
|
reloadStickers()
|
|
|
|
// Scroll to the top.
|
|
contentOffset = .zero
|
|
}
|
|
}
|
|
|
|
private var stickerInfos = [StickerInfo]()
|
|
|
|
@objc
|
|
public weak var stickerDelegate: StickerPackCollectionViewDelegate?
|
|
|
|
@objc
|
|
override public var frame: CGRect {
|
|
didSet {
|
|
updateLayout()
|
|
}
|
|
}
|
|
|
|
@objc
|
|
override public var bounds: CGRect {
|
|
didSet {
|
|
updateLayout()
|
|
}
|
|
}
|
|
|
|
private let cellReuseIdentifier = "cellReuseIdentifier"
|
|
|
|
@objc
|
|
public required init() {
|
|
super.init(frame: .zero, collectionViewLayout: StickerPackCollectionView.buildLayout())
|
|
|
|
delegate = self
|
|
dataSource = self
|
|
register(UICollectionViewCell.self, forCellWithReuseIdentifier: cellReuseIdentifier)
|
|
backgroundColor = Theme.offBackgroundColor
|
|
}
|
|
|
|
// MARK: Modes
|
|
|
|
@objc
|
|
public func showInstalledPack(stickerPack: StickerPack) {
|
|
AssertIsOnMainThread()
|
|
|
|
self.stickerPackDataSource = InstalledStickerPackDataSource(stickerPackInfo: stickerPack.info)
|
|
}
|
|
|
|
@objc
|
|
public func showUninstalledPack(stickerPack: StickerPack) {
|
|
AssertIsOnMainThread()
|
|
|
|
self.stickerPackDataSource = TransientStickerPackDataSource(stickerPackInfo: stickerPack.info)
|
|
}
|
|
|
|
@objc
|
|
public func showRecents() {
|
|
AssertIsOnMainThread()
|
|
|
|
self.stickerPackDataSource = RecentStickerPackDataSource()
|
|
}
|
|
|
|
func show(dataSource: StickerPackDataSource) {
|
|
AssertIsOnMainThread()
|
|
|
|
self.stickerPackDataSource = dataSource
|
|
}
|
|
|
|
// MARK: Events
|
|
|
|
required public init(coder: NSCoder) {
|
|
notImplemented()
|
|
}
|
|
|
|
private func reloadStickers() {
|
|
AssertIsOnMainThread()
|
|
|
|
guard let stickerPackDataSource = stickerPackDataSource else {
|
|
stickerInfos = []
|
|
return
|
|
}
|
|
|
|
stickerInfos = stickerPackDataSource.installedStickerInfos()
|
|
|
|
reloadData()
|
|
}
|
|
}
|
|
|
|
// MARK: - UICollectionViewDelegate
|
|
|
|
extension StickerPackCollectionView: UICollectionViewDelegate {
|
|
public func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
|
|
Logger.debug("")
|
|
|
|
guard let stickerInfo = stickerInfos[safe: indexPath.row] else {
|
|
owsFailDebug("Invalid index path: \(indexPath)")
|
|
return
|
|
}
|
|
|
|
self.stickerDelegate?.didTapSticker(stickerInfo: stickerInfo)
|
|
}
|
|
}
|
|
|
|
// MARK: - UICollectionViewDataSource
|
|
|
|
extension StickerPackCollectionView: UICollectionViewDataSource {
|
|
|
|
public func numberOfSections(in collectionView: UICollectionView) -> Int {
|
|
return 1
|
|
}
|
|
|
|
public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection sectionIdx: Int) -> Int {
|
|
return stickerInfos.count
|
|
}
|
|
|
|
public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
|
|
// We could eventually use cells that lazy-load the sticker views
|
|
// when the cells becomes visible and eagerly unload them.
|
|
// But we probably won't need to do that.
|
|
let cell = dequeueReusableCell(withReuseIdentifier: cellReuseIdentifier, for: indexPath)
|
|
for subview in cell.contentView.subviews {
|
|
subview.removeFromSuperview()
|
|
}
|
|
|
|
guard let stickerInfo = stickerInfos[safe: indexPath.row] else {
|
|
owsFailDebug("Invalid index path: \(indexPath)")
|
|
return cell
|
|
}
|
|
guard let stickerPackDataSource = stickerPackDataSource else {
|
|
owsFailDebug("Missing stickerPackDataSource.")
|
|
return cell
|
|
}
|
|
guard let filePath = stickerPackDataSource.filePath(forSticker: stickerInfo) else {
|
|
owsFailDebug("Missing sticker data file path.")
|
|
return cell
|
|
}
|
|
guard let stickerImage = YYImage(contentsOfFile: filePath) else {
|
|
owsFailDebug("Sticker could not be parsed.")
|
|
return cell
|
|
}
|
|
|
|
let stickerView = YYAnimatedImageView()
|
|
stickerView.image = stickerImage
|
|
cell.contentView.addSubview(stickerView)
|
|
stickerView.autoPinEdgesToSuperviewEdges()
|
|
|
|
return cell
|
|
}
|
|
}
|
|
|
|
// MARK: - Layout
|
|
|
|
extension StickerPackCollectionView {
|
|
|
|
// TODO:
|
|
static let kSpacing: CGFloat = 8
|
|
|
|
private class func buildLayout() -> UICollectionViewFlowLayout {
|
|
let layout = UICollectionViewFlowLayout()
|
|
|
|
if #available(iOS 11, *) {
|
|
layout.sectionInsetReference = .fromSafeArea
|
|
}
|
|
layout.minimumInteritemSpacing = kSpacing
|
|
layout.minimumLineSpacing = kSpacing
|
|
let inset = kSpacing
|
|
layout.sectionInset = UIEdgeInsets(top: inset, leading: inset, bottom: inset, trailing: inset)
|
|
|
|
return layout
|
|
}
|
|
|
|
// TODO: There's pending design Qs here.
|
|
func updateLayout() {
|
|
guard let flowLayout = collectionViewLayout as? UICollectionViewFlowLayout else {
|
|
// The layout isn't set while the view is being initialized.
|
|
return
|
|
}
|
|
|
|
let containerWidth: CGFloat
|
|
if #available(iOS 11.0, *) {
|
|
containerWidth = self.safeAreaLayoutGuide.layoutFrame.size.width
|
|
} else {
|
|
containerWidth = self.frame.size.width
|
|
}
|
|
|
|
let spacing = StickerPackCollectionView.kSpacing
|
|
let inset = spacing
|
|
let preferredCellSize: CGFloat = 80
|
|
let contentWidth = containerWidth - 2 * inset
|
|
let columnCount = UInt((contentWidth + spacing) / (preferredCellSize + spacing))
|
|
let cellWidth = (contentWidth - spacing * (CGFloat(columnCount) - 1)) / CGFloat(columnCount)
|
|
let itemSize = CGSize(width: cellWidth, height: cellWidth)
|
|
|
|
if (itemSize != flowLayout.itemSize) {
|
|
flowLayout.itemSize = itemSize
|
|
flowLayout.invalidateLayout()
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: -
|
|
|
|
extension StickerPackCollectionView: StickerPackDataSourceDelegate {
|
|
public func stickerPackDataDidChange() {
|
|
AssertIsOnMainThread()
|
|
|
|
reloadStickers()
|
|
}
|
|
}
|