mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
304 lines
12 KiB
Objective-C
304 lines
12 KiB
Objective-C
//
|
|
// ASCollectionView+Undeprecated.h
|
|
// Texture
|
|
//
|
|
// Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
// Changes after 4/13/2017 are: Copyright (c) Pinterest, Inc. All rights reserved.
|
|
// Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
|
|
#ifndef MINIMAL_ASDK
|
|
#import <AsyncDisplayKit/ASCollectionView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* Currently our public collection API is on @c ASCollectionNode and the @c ASCollectionView
|
|
* API is deprecated, but the implementations still live in the view.
|
|
*
|
|
* This category lets us avoid deprecation warnings everywhere internally.
|
|
* In the future, the @c ASCollectionView public API will be eliminated and so will this file.
|
|
*/
|
|
@interface ASCollectionView (Undeprecated)
|
|
|
|
/**
|
|
* The object that acts as the asynchronous delegate of the collection view
|
|
*
|
|
* @discussion The delegate must adopt the ASCollectionDelegate protocol. The collection view maintains a weak reference to the delegate object.
|
|
*
|
|
* The delegate object is responsible for providing size constraints for nodes and indicating whether batch fetching should begin.
|
|
*/
|
|
@property (nonatomic, weak) id<ASCollectionDelegate> asyncDelegate;
|
|
|
|
/**
|
|
* The object that acts as the asynchronous data source of the collection view
|
|
*
|
|
* @discussion The datasource must adopt the ASCollectionDataSource protocol. The collection view maintains a weak reference to the datasource object.
|
|
*
|
|
* The datasource object is responsible for providing nodes or node creation blocks to the collection view.
|
|
*/
|
|
@property (nonatomic, weak) id<ASCollectionDataSource> asyncDataSource;
|
|
|
|
/**
|
|
* Initializes an ASCollectionView
|
|
*
|
|
* @discussion Initializes and returns a newly allocated collection view object with the specified layout.
|
|
*
|
|
* @param layout The layout object to use for organizing items. The collection view stores a strong reference to the specified object. Must not be nil.
|
|
*/
|
|
- (instancetype)initWithCollectionViewLayout:(UICollectionViewLayout *)layout;
|
|
|
|
/**
|
|
* Initializes an ASCollectionView
|
|
*
|
|
* @discussion Initializes and returns a newly allocated collection view object with the specified frame and layout.
|
|
*
|
|
* @param frame The frame rectangle for the collection view, measured in points. The origin of the frame is relative to the superview in which you plan to add it. This frame is passed to the superclass during initialization.
|
|
* @param layout The layout object to use for organizing items. The collection view stores a strong reference to the specified object. Must not be nil.
|
|
*/
|
|
- (instancetype)initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout;
|
|
|
|
@property (nonatomic) CGFloat leadingScreensForBatching;
|
|
|
|
@property (nonatomic) BOOL inverted;
|
|
|
|
@property (nonatomic, readonly) ASScrollDirection scrollDirection;
|
|
|
|
@property (nonatomic, readonly) ASScrollDirection scrollableDirections;
|
|
|
|
@property (nonatomic, weak) id<ASCollectionViewLayoutInspecting> layoutInspector;
|
|
|
|
@property (nonatomic) UIEdgeInsets contentInset;
|
|
|
|
@property (nonatomic) CGPoint contentOffset;
|
|
|
|
/**
|
|
* Tuning parameters for a range type in full mode.
|
|
*
|
|
* @param rangeType The range type to get the tuning parameters for.
|
|
*
|
|
* @return A tuning parameter value for the given range type in full mode.
|
|
*
|
|
* @see ASLayoutRangeMode
|
|
* @see ASLayoutRangeType
|
|
*/
|
|
- (ASRangeTuningParameters)tuningParametersForRangeType:(ASLayoutRangeType)rangeType AS_WARN_UNUSED_RESULT;
|
|
|
|
/**
|
|
* Set the tuning parameters for a range type in full mode.
|
|
*
|
|
* @param tuningParameters The tuning parameters to store for a range type.
|
|
* @param rangeType The range type to set the tuning parameters for.
|
|
*
|
|
* @see ASLayoutRangeMode
|
|
* @see ASLayoutRangeType
|
|
*/
|
|
- (void)setTuningParameters:(ASRangeTuningParameters)tuningParameters forRangeType:(ASLayoutRangeType)rangeType;
|
|
|
|
/**
|
|
* Tuning parameters for a range type in the specified mode.
|
|
*
|
|
* @param rangeMode The range mode to get the running parameters for.
|
|
* @param rangeType The range type to get the tuning parameters for.
|
|
*
|
|
* @return A tuning parameter value for the given range type in the given mode.
|
|
*
|
|
* @see ASLayoutRangeMode
|
|
* @see ASLayoutRangeType
|
|
*/
|
|
- (ASRangeTuningParameters)tuningParametersForRangeMode:(ASLayoutRangeMode)rangeMode rangeType:(ASLayoutRangeType)rangeType AS_WARN_UNUSED_RESULT;
|
|
|
|
/**
|
|
* Set the tuning parameters for a range type in the specified mode.
|
|
*
|
|
* @param tuningParameters The tuning parameters to store for a range type.
|
|
* @param rangeMode The range mode to set the running parameters for.
|
|
* @param rangeType The range type to set the tuning parameters for.
|
|
*
|
|
* @see ASLayoutRangeMode
|
|
* @see ASLayoutRangeType
|
|
*/
|
|
- (void)setTuningParameters:(ASRangeTuningParameters)tuningParameters forRangeMode:(ASLayoutRangeMode)rangeMode rangeType:(ASLayoutRangeType)rangeType;
|
|
|
|
- (nullable __kindof UICollectionViewCell *)cellForItemAtIndexPath:(NSIndexPath *)indexPath;
|
|
|
|
@property (nonatomic, readonly) NSArray<NSIndexPath *> *indexPathsForVisibleItems;
|
|
|
|
@property (nonatomic, readonly, nullable) NSArray<NSIndexPath *> *indexPathsForSelectedItems;
|
|
|
|
/**
|
|
* Scrolls the collection to the given item.
|
|
*
|
|
* @param indexPath The index path of the item.
|
|
* @param scrollPosition Where the row should end up after the scroll.
|
|
* @param animated Whether the scroll should be animated or not.
|
|
*/
|
|
- (void)scrollToItemAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UICollectionViewScrollPosition)scrollPosition animated:(BOOL)animated;
|
|
|
|
- (void)selectItemAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UICollectionViewScrollPosition)scrollPosition;
|
|
|
|
/**
|
|
* Perform a batch of updates asynchronously, optionally disabling all animations in the batch. This method must be called from the main thread.
|
|
* The asyncDataSource must be updated to reflect the changes before the update block completes.
|
|
*
|
|
* @param animated NO to disable animations for this batch
|
|
* @param updates The block that performs the relevant insert, delete, reload, or move operations.
|
|
* @param completion A completion handler block to execute when all of the operations are finished. This block takes a single
|
|
* Boolean parameter that contains the value YES if all of the related animations completed successfully or
|
|
* NO if they were interrupted. This parameter may be nil. If supplied, the block is run on the main thread.
|
|
*/
|
|
- (void)performBatchAnimated:(BOOL)animated updates:(nullable AS_NOESCAPE void (^)(void))updates completion:(nullable void (^)(BOOL finished))completion;
|
|
|
|
/**
|
|
* Perform a batch of updates asynchronously. This method must be called from the main thread.
|
|
* The asyncDataSource must be updated to reflect the changes before update block completes.
|
|
*
|
|
* @param updates The block that performs the relevant insert, delete, reload, or move operations.
|
|
* @param completion A completion handler block to execute when all of the operations are finished. This block takes a single
|
|
* Boolean parameter that contains the value YES if all of the related animations completed successfully or
|
|
* NO if they were interrupted. This parameter may be nil. If supplied, the block is run on the main thread.
|
|
*/
|
|
- (void)performBatchUpdates:(nullable AS_NOESCAPE void (^)(void))updates completion:(nullable void (^)(BOOL finished))completion;
|
|
|
|
/**
|
|
* Triggers a relayout of all nodes.
|
|
*
|
|
* @discussion This method invalidates and lays out every cell node in the collection.
|
|
*/
|
|
- (void)relayoutItems;
|
|
|
|
/**
|
|
* Blocks execution of the main thread until all section and row updates are committed. This method must be called from the main thread.
|
|
*/
|
|
- (void)waitUntilAllUpdatesAreCommitted;
|
|
|
|
/**
|
|
* Registers the given kind of supplementary node for use in creating node-backed supplementary views.
|
|
*
|
|
* @param elementKind The kind of supplementary node that will be requested through the data source.
|
|
*
|
|
* @discussion Use this method to register support for the use of supplementary nodes in place of the default
|
|
* `registerClass:forSupplementaryViewOfKind:withReuseIdentifier:` and `registerNib:forSupplementaryViewOfKind:withReuseIdentifier:`
|
|
* methods. This method will register an internal backing view that will host the contents of the supplementary nodes
|
|
* returned from the data source.
|
|
*/
|
|
- (void)registerSupplementaryNodeOfKind:(NSString *)elementKind;
|
|
|
|
/**
|
|
* Inserts one or more sections.
|
|
*
|
|
* @param sections An index set that specifies the sections to insert.
|
|
*
|
|
* @discussion This method must be called from the main thread. The asyncDataSource must be updated to reflect the changes
|
|
* before this method is called.
|
|
*/
|
|
- (void)insertSections:(NSIndexSet *)sections;
|
|
|
|
/**
|
|
* Deletes one or more sections.
|
|
*
|
|
* @param sections An index set that specifies the sections to delete.
|
|
*
|
|
* @discussion This method must be called from the main thread. The asyncDataSource must be updated to reflect the changes
|
|
* before this method is called.
|
|
*/
|
|
- (void)deleteSections:(NSIndexSet *)sections;
|
|
|
|
/**
|
|
* Reloads the specified sections.
|
|
*
|
|
* @param sections An index set that specifies the sections to reload.
|
|
*
|
|
* @discussion This method must be called from the main thread. The asyncDataSource must be updated to reflect the changes
|
|
* before this method is called.
|
|
*/
|
|
- (void)reloadSections:(NSIndexSet *)sections;
|
|
|
|
/**
|
|
* Moves a section to a new location.
|
|
*
|
|
* @param section The index of the section to move.
|
|
*
|
|
* @param newSection The index that is the destination of the move for the section.
|
|
*
|
|
* @discussion This method must be called from the main thread. The asyncDataSource must be updated to reflect the changes
|
|
* before this method is called.
|
|
*/
|
|
- (void)moveSection:(NSInteger)section toSection:(NSInteger)newSection;
|
|
|
|
/**
|
|
* Inserts items at the locations identified by an array of index paths.
|
|
*
|
|
* @param indexPaths An array of NSIndexPath objects, each representing an item index and section index that together identify an item.
|
|
*
|
|
* @discussion This method must be called from the main thread. The asyncDataSource must be updated to reflect the changes
|
|
* before this method is called.
|
|
*/
|
|
- (void)insertItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths;
|
|
|
|
/**
|
|
* Deletes the items specified by an array of index paths.
|
|
*
|
|
* @param indexPaths An array of NSIndexPath objects identifying the items to delete.
|
|
*
|
|
* @discussion This method must be called from the main thread. The asyncDataSource must be updated to reflect the changes
|
|
* before this method is called.
|
|
*/
|
|
- (void)deleteItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths;
|
|
|
|
/**
|
|
* Reloads the specified items.
|
|
*
|
|
* @param indexPaths An array of NSIndexPath objects identifying the items to reload.
|
|
*
|
|
* @discussion This method must be called from the main thread. The asyncDataSource must be updated to reflect the changes
|
|
* before this method is called.
|
|
*/
|
|
- (void)reloadItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths;
|
|
|
|
/**
|
|
* Moves the item at a specified location to a destination location.
|
|
*
|
|
* @param indexPath The index path identifying the item to move.
|
|
*
|
|
* @param newIndexPath The index path that is the destination of the move for the item.
|
|
*
|
|
* @discussion This method must be called from the main thread. The asyncDataSource must be updated to reflect the changes
|
|
* before this method is called.
|
|
*/
|
|
- (void)moveItemAtIndexPath:(NSIndexPath *)indexPath toIndexPath:(NSIndexPath *)newIndexPath;
|
|
|
|
/**
|
|
* Similar to -visibleCells.
|
|
*
|
|
* @return an array containing the nodes being displayed on screen.
|
|
*/
|
|
- (NSArray<__kindof ASCellNode *> *)visibleNodes AS_WARN_UNUSED_RESULT;
|
|
|
|
/**
|
|
* Similar to -indexPathForCell:.
|
|
*
|
|
* @param cellNode a cellNode in the collection view
|
|
*
|
|
* @return The index path for this cell node.
|
|
*
|
|
* @discussion This index path returned by this method is in the _view's_ index space
|
|
* and should only be used with @c ASCollectionView directly. To get an index path suitable
|
|
* for use with your data source and @c ASCollectionNode, call @c indexPathForNode: on the
|
|
* collection node instead.
|
|
*/
|
|
- (nullable NSIndexPath *)indexPathForNode:(ASCellNode *)cellNode AS_WARN_UNUSED_RESULT;
|
|
|
|
/**
|
|
* Invalidates and recalculates the cached sizes stored for pass-through cells used in interop mode.
|
|
*/
|
|
- (void)invalidateFlowLayoutDelegateMetrics;
|
|
|
|
- (void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
#endif
|