d8436f79f6
* files reorganization (#432) * fix podspec * only include swift files * Fix broken readme paths (#433) * update links * fix french link * split skeleton debug to public and internal methods (#434) * Add build phase to execute SwiftLint (#435) * update tvOS tests * Refactor Extensions folder (#436) * Reorganize SkeletonAppearance (#437) * reorganize helpers and builders folders (#438) * Refactor flow and multilines (#439) * Reorganize collections folder (#440) * reorganize collections folder * update podspec * Refactor SkeletonView facade (#441) * reorganize collections folder * update podspec * refactor skeletonview facade * fix conflict * update iOS example * fix github workflows * update tvOS example project build settings
67 lines
2.2 KiB
Swift
67 lines
2.2 KiB
Swift
//
|
|
// UICollectionView+CollectionSkeleton.swift
|
|
// SkeletonView-iOS
|
|
//
|
|
// Created by Juanpe Catalán on 02/02/2018.
|
|
// Copyright © 2018 SkeletonView. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension UICollectionView: CollectionSkeleton {
|
|
|
|
var estimatedNumberOfRows: Int {
|
|
guard let flowlayout = collectionViewLayout as? UICollectionViewFlowLayout else { return 0 }
|
|
switch flowlayout.scrollDirection {
|
|
case .vertical:
|
|
return Int(ceil(frame.height / flowlayout.itemSize.height))
|
|
case .horizontal:
|
|
return Int(ceil(frame.width / flowlayout.itemSize.width))
|
|
default:
|
|
return 0
|
|
}
|
|
}
|
|
|
|
var skeletonDataSource: SkeletonCollectionDataSource? {
|
|
get { return ao_get(pkey: &CollectionAssociatedKeys.dummyDataSource) as? SkeletonCollectionDataSource }
|
|
set {
|
|
ao_setOptional(newValue, pkey: &CollectionAssociatedKeys.dummyDataSource)
|
|
self.dataSource = newValue
|
|
}
|
|
}
|
|
|
|
var skeletonDelegate: SkeletonCollectionDelegate? {
|
|
get { return ao_get(pkey: &CollectionAssociatedKeys.dummyDelegate) as? SkeletonCollectionDelegate }
|
|
set {
|
|
ao_setOptional(newValue, pkey: &CollectionAssociatedKeys.dummyDelegate)
|
|
self.delegate = newValue
|
|
}
|
|
}
|
|
|
|
func addDummyDataSource() {
|
|
guard let originalDataSource = self.dataSource as? SkeletonCollectionViewDataSource,
|
|
!(originalDataSource is SkeletonCollectionDataSource)
|
|
else { return }
|
|
|
|
let dataSource = SkeletonCollectionDataSource(collectionViewDataSource: originalDataSource)
|
|
self.skeletonDataSource = dataSource
|
|
reloadData()
|
|
}
|
|
|
|
func updateDummyDataSource() {
|
|
if (dataSource as? SkeletonCollectionDataSource) != nil {
|
|
reloadData()
|
|
} else {
|
|
addDummyDataSource()
|
|
}
|
|
}
|
|
|
|
func removeDummyDataSource(reloadAfter: Bool) {
|
|
guard let dataSource = self.dataSource as? SkeletonCollectionDataSource else { return }
|
|
self.skeletonDataSource = nil
|
|
self.dataSource = dataSource.originalCollectionViewDataSource
|
|
if reloadAfter { self.reloadData() }
|
|
}
|
|
|
|
}
|