-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Instagram/IGListKit
# Conflicts: # Source/IGListAdapter.m
- Loading branch information
Showing
25 changed files
with
321 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ci_service: travis_ci | ||
coverage_service: coveralls | ||
xcodeproj: IGListKit.xcodeproj | ||
workspace: IGListKit.xcworkspace | ||
scheme: IGListKit | ||
source_directory: Source |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
Example/IGListKitExamples/Assets.xcassets/AppIcon.appiconset/Contents.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
Example/IGListKitExamples/SectionControllers/WorkingRangeSectionController.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
/** | ||
Copyright (c) 2016-present, Facebook, Inc. All rights reserved. | ||
|
||
The examples provided by Facebook are for non-commercial testing and evaluation | ||
purposes only. Facebook reserves all rights not expressly granted. | ||
|
||
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 | ||
FACEBOOK 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 IGListKit | ||
|
||
class WorkingRangeSectionController: IGListSectionController, IGListSectionType, IGListWorkingRangeDelegate { | ||
|
||
var height: Int? | ||
var downloadedImage: UIImage? | ||
var task: URLSessionDataTask? | ||
|
||
var urlString: String? { | ||
guard let height = height, | ||
let width = collectionContext?.containerSize.width | ||
else { return nil } | ||
return "https://unsplash.it/" + width.description + "/" + height.description | ||
} | ||
|
||
deinit { | ||
task?.cancel() | ||
} | ||
|
||
override init() { | ||
super.init() | ||
workingRangeDelegate = self | ||
} | ||
|
||
func numberOfItems() -> Int { | ||
return 2 | ||
} | ||
|
||
func sizeForItem(at index: Int) -> CGSize { | ||
let width: CGFloat = collectionContext?.containerSize.width ?? 0 | ||
let height: CGFloat = CGFloat(index == 0 ? 55 : (self.height ?? 0)) | ||
return CGSize(width: width, height: height) | ||
} | ||
|
||
func cellForItem(at index: Int) -> UICollectionViewCell { | ||
let cellClass: AnyClass = index == 0 ? LabelCell.self : ImageCell.self | ||
let cell = collectionContext!.dequeueReusableCell(of: cellClass, for: self, at: index) | ||
if let cell = cell as? LabelCell { | ||
cell.label.text = urlString | ||
} else if let cell = cell as? ImageCell { | ||
cell.setImage(image: downloadedImage) | ||
} | ||
return cell | ||
} | ||
|
||
func didUpdate(to object: Any) { | ||
self.height = object as? Int | ||
} | ||
|
||
func didSelectItem(at index: Int) {} | ||
|
||
//MARK: IGListWorkingRangeDelegate | ||
|
||
func listAdapter(_ listAdapter: IGListAdapter, sectionControllerWillEnterWorkingRange sectionController: IGListSectionController) { | ||
guard downloadedImage == nil, | ||
task == nil, | ||
let urlString = urlString, | ||
let url = URL(string: urlString) | ||
else { return } | ||
|
||
let section = collectionContext?.section(for: self) ?? 0 | ||
print("Downloading image \(urlString) for section \(section)") | ||
|
||
task = URLSession.shared.dataTask(with: url, completionHandler: { data, response, err in | ||
if let data = data, let image = UIImage(data: data) { | ||
DispatchQueue.main.async { | ||
self.downloadedImage = image | ||
if let cell = self.collectionContext?.cellForItem(at: 1, sectionController: self) as? ImageCell { | ||
cell.setImage(image: image) | ||
} | ||
} | ||
} else { | ||
print("Error downloading \(urlString): \(err)") | ||
} | ||
}) | ||
task?.resume() | ||
} | ||
|
||
func listAdapter(_ listAdapter: IGListAdapter, sectionControllerDidExitWorkingRange sectionController: IGListSectionController) {} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.