Files
IGListKit/Source/IGListUpdatingDelegate.h
Ryan Nystrom a15ea08614 Move section controller mutation API to object provided in update block
Summary:
We constantly have random bugs pop up when mutations are made outside of a batch update. This change restricts the mutation API to a batch context object (which is just an `IGListAdapter`) so they can only be done **inside an update block**.

- Fixed open source project
- Confirmed open source examples build
- Updated all of Instagram.app to use this API
- Changelog breaking changes entry

Fixes #392

Reviewed By: jessesquires

Differential Revision: D4754129

fbshipit-source-id: 11d32a0fac3e50c9edbb01e92a8a0c7b8a43cf2d
2017-03-22 12:46:49 -07:00

142 lines
6.0 KiB
Objective-C

/**
* Copyright (c) 2016-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import <UIKit/UIKit.h>
@protocol IGListDiffable;
NS_ASSUME_NONNULL_BEGIN
/**
A completion block to execute when updates are finished.
@param finished Specifies whether or not the update finished.
*/
typedef void (^IGListUpdatingCompletion)(BOOL finished);
/**
A block to be called when the adapter applies changes to the collection view.
@param toObjects The new objects in the collection.
*/
typedef void (^IGListObjectTransitionBlock)(NSArray *toObjects);
/// A block that contains all of the updates.
typedef void (^IGListItemUpdateBlock)();
/// A block to be called when an adapter reloads the collection view.
typedef void (^IGListReloadUpdateBlock)();
/**
Implement this protocol in order to handle both section and row based update events. Implementation should forward or
coalesce these events to a backing store or collection.
*/
@protocol IGListUpdatingDelegate <NSObject>
/**
Asks the delegate for the pointer functions for looking up an object in a collection.
@return Pointer functions for looking up an object in a collection.
@note Since the updating delegate is responsible for transitioning between object sets, it becomes the "source of
truth" for how objects and their corresponding section controllers are mapped. This allows the updater to control if
objects are looked up by pointer, or more traditionally, with `-hash`/`-isEqual`.
For behavior similar to `NSDictionary`, simply return
`+[NSPointerFunctions pointerFunctionsWithOptions:NSPointerFunctionsObjectPersonality]`.
*/
- (NSPointerFunctions *)objectLookupPointerFunctions;
/**
Tells the delegate to perform a section transition from an old array of objects to a new one.
@param collectionView The collection view to perform the transition on.
@param fromObjects The previous objects in the collection view. Objects must conform to `IGListDiffable`.
@param toObjects The new objects in collection view. Objects must conform to `IGListDiffable`.
@param animated A flag indicating if the transition should be animated.
@param objectTransitionBlock A block that must be called when the adapter applies changes to the collection view.
@param completion A completion block to execute when the update is finished.
@note Implementations determine how to transition between objects. You can perform a diff on the objects, reload
each section, or simply call `-reloadData` on the collection view. In the end, the collection view must be setup with a
section for each object in the `toObjects` array.
The `objectTransitionBlock` block should be called prior to making any `UICollectionView` updates, passing in the `toObjects`
that the updater is applying.
*/
- (void)performUpdateWithCollectionView:(UICollectionView *)collectionView
fromObjects:(nullable NSArray<id <IGListDiffable>> *)fromObjects
toObjects:(nullable NSArray<id <IGListDiffable>> *)toObjects
animated:(BOOL)animated
objectTransitionBlock:(IGListObjectTransitionBlock)objectTransitionBlock
completion:(nullable IGListUpdatingCompletion)completion;
/**
Tells the delegate to perform item inserts at the given index paths.
@param collectionView The collection view on which to perform the transition.
@param indexPaths The index paths to insert items into.
*/
- (void)insertItemsIntoCollectionView:(UICollectionView *)collectionView indexPaths:(NSArray <NSIndexPath *> *)indexPaths;
/**
Tells the delegate to perform item deletes at the given index paths.
@param collectionView The collection view on which to perform the transition.
@param indexPaths The index paths to delete items from.
*/
- (void)deleteItemsFromCollectionView:(UICollectionView *)collectionView indexPaths:(NSArray <NSIndexPath *> *)indexPaths;
/**
Tells the delegate to move an item from and to given index paths.
@param collectionView The collection view on which to perform the transition.
@param fromIndexPath The source index path of the item to move.
@param toIndexPath The destination index path of the item to move.
*/
- (void)moveItemInCollectionView:(UICollectionView *)collectionView
fromIndexPath:(NSIndexPath *)fromIndexPath
toIndexPath:(NSIndexPath *)toIndexPath;
/**
Completely reload data in the collection.
@param collectionView The collection view to reload.
@param reloadUpdateBlock A block that must be called when the adapter reloads the collection view.
@param completion A completion block to execute when the reload is finished.
*/
- (void)reloadDataWithCollectionView:(UICollectionView *)collectionView
reloadUpdateBlock:(IGListReloadUpdateBlock)reloadUpdateBlock
completion:(nullable IGListUpdatingCompletion)completion;
/**
Completely reload each section in the collection view.
@param collectionView The collection view to reload.
@param sections The sections to reload.
*/
- (void)reloadCollectionView:(UICollectionView *)collectionView sections:(NSIndexSet *)sections;
/**
Perform an item update block in the collection view.
@param collectionView The collection view to update.
@param animated A flag indicating if the transition should be animated.
@param itemUpdates A block containing all of the updates.
@param completion A completion block to execute when the update is finished.
*/
- (void)performUpdateWithCollectionView:(UICollectionView *)collectionView
animated:(BOOL)animated
itemUpdates:(IGListItemUpdateBlock)itemUpdates
completion:(nullable IGListUpdatingCompletion)completion;
@end
NS_ASSUME_NONNULL_END