|
|
|
@ -30,6 +30,7 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat
|
|
|
|
|
private var photoCollection: PhotoCollection
|
|
|
|
|
private var photoCollectionContents: PhotoCollectionContents
|
|
|
|
|
private let photoMediaSize = PhotoMediaSize()
|
|
|
|
|
private var firstSelectedIndexPath: IndexPath?
|
|
|
|
|
|
|
|
|
|
var collectionViewFlowLayout: UICollectionViewFlowLayout
|
|
|
|
|
var titleView: TitleView!
|
|
|
|
@ -212,6 +213,12 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat
|
|
|
|
|
let cellSize = collectionViewFlowLayout.itemSize
|
|
|
|
|
photoMediaSize.thumbnailSize = CGSize(width: cellSize.width * scale, height: cellSize.height * scale)
|
|
|
|
|
|
|
|
|
|
// When we select the first item we immediately deselect it so it doesn't look odd when pushing to the
|
|
|
|
|
// next screen, but this in turn looks odd if the user returns and the item is deselected
|
|
|
|
|
if let firstSelectedIndexPath: IndexPath = firstSelectedIndexPath {
|
|
|
|
|
collectionView.cellForItem(at: firstSelectedIndexPath)?.isSelected = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !hasEverAppeared {
|
|
|
|
|
scrollToBottom(animated: false)
|
|
|
|
|
}
|
|
|
|
@ -249,6 +256,13 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat
|
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
|
// pre-layout collectionPicker for snappier response
|
|
|
|
|
self.collectionPickerController.view.layoutIfNeeded()
|
|
|
|
|
|
|
|
|
|
// We also need to actually inform the collectionView that the item should be selected (if we don't
|
|
|
|
|
// then the user won't be able to deselect it)
|
|
|
|
|
if let firstSelectedIndexPath: IndexPath = self.firstSelectedIndexPath {
|
|
|
|
|
self.collectionView.selectItem(at: firstSelectedIndexPath, animated: false, scrollPosition: .centeredHorizontally)
|
|
|
|
|
self.collectionView.cellForItem(at: firstSelectedIndexPath)?.isSelected = true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -489,9 +503,11 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat
|
|
|
|
|
didSelectAsset: asset,
|
|
|
|
|
attachmentPublisher: photoCollectionContents.outgoingAttachment(for: asset)
|
|
|
|
|
)
|
|
|
|
|
firstSelectedIndexPath = nil
|
|
|
|
|
|
|
|
|
|
if !delegate.isInBatchSelectMode {
|
|
|
|
|
// Don't show "selected" badge unless we're in batch mode
|
|
|
|
|
firstSelectedIndexPath = indexPath
|
|
|
|
|
collectionView.deselectItem(at: indexPath, animated: false)
|
|
|
|
|
delegate.imagePickerDidCompleteSelection(self)
|
|
|
|
|
}
|
|
|
|
@ -511,6 +527,7 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
delegate.imagePicker(self, didDeselectAsset: asset)
|
|
|
|
|
firstSelectedIndexPath = nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
|
|
|
|
|