mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-07 05:02:56 +00:00
* Simplify applying layout transition in preparation for bigger layout transition API work * Change from apply to complete in if layout transitions are involved and _applyLayout: to _setCalculatedLayout: for layout * Change to applySubnodeInsertions and applySubnodeRemovals * Change from completeTransition to commitTransition and flip logic around when to trampoline to the main thread for implicit hierarchy management * More internal API improvements * Fix merge conflicts * Rename _layout to _calculatedLayout
63 lines
1.7 KiB
Objective-C
63 lines
1.7 KiB
Objective-C
//
|
|
// ASLayoutTransition.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Huy Nguyen on 3/8/16.
|
|
//
|
|
// Copyright (c) 2014-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 "ASDimension.h"
|
|
#import "_ASTransitionContext.h"
|
|
|
|
@class ASDisplayNode;
|
|
@class ASLayout;
|
|
|
|
@interface ASLayoutTransition : NSObject <_ASTransitionContextLayoutDelegate>
|
|
|
|
/**
|
|
* Node to apply layout transition on
|
|
*/
|
|
@property (nonatomic, readonly, weak) ASDisplayNode *node;
|
|
|
|
/**
|
|
* Previous layout to transition from
|
|
*/
|
|
@property (nonatomic, readonly, strong) ASLayout *previousLayout;
|
|
|
|
/**
|
|
* Pending layout to transition to
|
|
*/
|
|
@property (nonatomic, readonly, strong) ASLayout *pendingLayout;
|
|
|
|
/**
|
|
* Returns if the layout transition needs to happen synchronously
|
|
*/
|
|
@property (nonatomic, readonly, assign) BOOL isSynchronous;
|
|
|
|
/**
|
|
* Returns a newly initialized layout transition
|
|
*/
|
|
- (instancetype)initWithNode:(ASDisplayNode *)node pendingLayout:(ASLayout *)pendingLayout previousLayout:(ASLayout *)previousLayout NS_DESIGNATED_INITIALIZER;
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
/**
|
|
* Insert and remove subnodes that where added or removed between the previousLayout and the pendingLayout
|
|
*/
|
|
- (void)commitTransition;
|
|
|
|
/**
|
|
* Insert all new subnodes that where added between the previous layout and the pending layout
|
|
*/
|
|
- (void)applySubnodeInsertions;
|
|
|
|
/**
|
|
* Remove all subnodes that are removed between the previous layout and the pending layout
|
|
*/
|
|
- (void)applySubnodeRemovals;
|
|
|
|
@end
|