mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-02 02:43:07 +00:00
* Fixed license * Update all licenses * Update Dangerfile for new license * Update already updated licenses * Closer… * Closer… * Closer… * Closer… * Closer… * Closer… * Closer… * Closer… * Closer… * Closer… * Closer…
113 lines
4.8 KiB
Plaintext
113 lines
4.8 KiB
Plaintext
//
|
|
// ASRelativeLayoutSpec.mm
|
|
// Texture
|
|
//
|
|
// 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 /ASDK-Licenses directory of this source tree. An additional
|
|
// grant of patent rights can be found in the PATENTS file in the same directory.
|
|
//
|
|
// Modifications to this file made after 4/13/2017 are: Copyright (c) 2017-present,
|
|
// Pinterest, Inc. Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
|
|
#import <AsyncDisplayKit/ASRelativeLayoutSpec.h>
|
|
|
|
#import <AsyncDisplayKit/ASLayoutSpec+Subclasses.h>
|
|
|
|
#import <AsyncDisplayKit/ASInternalHelpers.h>
|
|
|
|
@implementation ASRelativeLayoutSpec
|
|
|
|
- (instancetype)initWithHorizontalPosition:(ASRelativeLayoutSpecPosition)horizontalPosition verticalPosition:(ASRelativeLayoutSpecPosition)verticalPosition sizingOption:(ASRelativeLayoutSpecSizingOption)sizingOption child:(id<ASLayoutElement>)child
|
|
{
|
|
if (!(self = [super init])) {
|
|
return nil;
|
|
}
|
|
ASDisplayNodeAssertNotNil(child, @"Child cannot be nil");
|
|
_horizontalPosition = horizontalPosition;
|
|
_verticalPosition = verticalPosition;
|
|
_sizingOption = sizingOption;
|
|
[self setChild:child];
|
|
return self;
|
|
}
|
|
|
|
+ (instancetype)relativePositionLayoutSpecWithHorizontalPosition:(ASRelativeLayoutSpecPosition)horizontalPosition verticalPosition:(ASRelativeLayoutSpecPosition)verticalPosition sizingOption:(ASRelativeLayoutSpecSizingOption)sizingOption child:(id<ASLayoutElement>)child
|
|
{
|
|
return [[self alloc] initWithHorizontalPosition:horizontalPosition verticalPosition:verticalPosition sizingOption:sizingOption child:child];
|
|
}
|
|
|
|
- (void)setHorizontalPosition:(ASRelativeLayoutSpecPosition)horizontalPosition
|
|
{
|
|
ASDisplayNodeAssert(self.isMutable, @"Cannot set properties when layout spec is not mutable");
|
|
_horizontalPosition = horizontalPosition;
|
|
}
|
|
|
|
- (void)setVerticalPosition:(ASRelativeLayoutSpecPosition)verticalPosition {
|
|
ASDisplayNodeAssert(self.isMutable, @"Cannot set properties when layout spec is not mutable");
|
|
_verticalPosition = verticalPosition;
|
|
}
|
|
|
|
- (void)setSizingOption:(ASRelativeLayoutSpecSizingOption)sizingOption
|
|
{
|
|
ASDisplayNodeAssert(self.isMutable, @"Cannot set properties when layout spec is not mutable");
|
|
_sizingOption = sizingOption;
|
|
}
|
|
|
|
- (ASLayout *)calculateLayoutThatFits:(ASSizeRange)constrainedSize
|
|
{
|
|
// If we have a finite size in any direction, pass this so that the child can resolve percentages against it.
|
|
// Otherwise pass ASLayoutElementParentDimensionUndefined as the size will depend on the content
|
|
CGSize size = {
|
|
ASPointsValidForSize(constrainedSize.max.width) == NO ? ASLayoutElementParentDimensionUndefined : constrainedSize.max.width,
|
|
ASPointsValidForSize(constrainedSize.max.height) == NO ? ASLayoutElementParentDimensionUndefined : constrainedSize.max.height
|
|
};
|
|
|
|
// Layout the child
|
|
const CGSize minChildSize = {
|
|
(_horizontalPosition != ASRelativeLayoutSpecPositionNone) ? 0 : constrainedSize.min.width,
|
|
(_verticalPosition != ASRelativeLayoutSpecPositionNone) ? 0 : constrainedSize.min.height,
|
|
};
|
|
ASLayout *sublayout = [self.child layoutThatFits:ASSizeRangeMake(minChildSize, constrainedSize.max) parentSize:size];
|
|
|
|
// If we have an undetermined height or width, use the child size to define the layout size
|
|
size = ASSizeRangeClamp(constrainedSize, {
|
|
isfinite(size.width) == NO ? sublayout.size.width : size.width,
|
|
isfinite(size.height) == NO ? sublayout.size.height : size.height
|
|
});
|
|
|
|
// If minimum size options are set, attempt to shrink the size to the size of the child
|
|
size = ASSizeRangeClamp(constrainedSize, {
|
|
MIN(size.width, (_sizingOption & ASRelativeLayoutSpecSizingOptionMinimumWidth) != 0 ? sublayout.size.width : size.width),
|
|
MIN(size.height, (_sizingOption & ASRelativeLayoutSpecSizingOptionMinimumHeight) != 0 ? sublayout.size.height : size.height)
|
|
});
|
|
|
|
// Compute the position for the child on each axis according to layout parameters
|
|
CGFloat xPosition = [self proportionOfAxisForAxisPosition:_horizontalPosition];
|
|
CGFloat yPosition = [self proportionOfAxisForAxisPosition:_verticalPosition];
|
|
|
|
sublayout.position = {
|
|
ASRoundPixelValue((size.width - sublayout.size.width) * xPosition),
|
|
ASRoundPixelValue((size.height - sublayout.size.height) * yPosition)
|
|
};
|
|
|
|
return [ASLayout layoutWithLayoutElement:self size:size sublayouts:@[sublayout]];
|
|
}
|
|
|
|
- (CGFloat)proportionOfAxisForAxisPosition:(ASRelativeLayoutSpecPosition)position
|
|
{
|
|
if (position == ASRelativeLayoutSpecPositionCenter) {
|
|
return 0.5f;
|
|
} else if (position == ASRelativeLayoutSpecPositionEnd) {
|
|
return 1.0f;
|
|
} else {
|
|
return 0.0f;
|
|
}
|
|
}
|
|
|
|
@end
|