Swiftgram/Source/Private/_ASCollectionGalleryLayoutInfo.m
Huy Nguyen fdc1f0468c Improvements in ASCollectionGalleryLayoutDelegate (#496)
* Improvements in ASCollectionGalleryLayoutDelegate
- It now can handle section inset, as well as interitem and line spacings
- Other small changes

* Fix build failure and update file licenses

* Update CHANGELOG

* Minor change

* Another assertion on scrollable directions of gallery layout delegate
2017-08-08 19:11:40 +01:00

73 lines
1.8 KiB
Objective-C

//
// _ASCollectionGalleryLayoutInfo.m
// Texture
//
// Copyright (c) 2017-present, Pinterest, Inc. All rights reserved.
// 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/_ASCollectionGalleryLayoutInfo.h>
#import <AsyncDisplayKit/ASHashing.h>
@implementation _ASCollectionGalleryLayoutInfo
- (instancetype)initWithItemSize:(CGSize)itemSize
minimumLineSpacing:(CGFloat)minimumLineSpacing
minimumInteritemSpacing:(CGFloat)minimumInteritemSpacing
sectionInset:(UIEdgeInsets)sectionInset
{
self = [super init];
if (self) {
_itemSize = itemSize;
_minimumLineSpacing = minimumLineSpacing;
_minimumInteritemSpacing = minimumInteritemSpacing;
_sectionInset = sectionInset;
}
return self;
}
- (BOOL)isEqualToInfo:(_ASCollectionGalleryLayoutInfo *)info
{
if (info == nil) {
return NO;
}
return CGSizeEqualToSize(_itemSize, info.itemSize)
&& _minimumLineSpacing == info.minimumLineSpacing
&& _minimumInteritemSpacing == info.minimumInteritemSpacing
&& UIEdgeInsetsEqualToEdgeInsets(_sectionInset, info.sectionInset);
}
- (BOOL)isEqual:(id)other
{
if (self == other) {
return YES;
}
if (! [other isKindOfClass:[_ASCollectionGalleryLayoutInfo class]]) {
return NO;
}
return [self isEqualToInfo:other];
}
- (NSUInteger)hash
{
struct {
CGSize itemSize;
CGFloat minimumLineSpacing;
CGFloat minimumInteritemSpacing;
UIEdgeInsets sectionInset;
} data = {
_itemSize,
_minimumLineSpacing,
_minimumInteritemSpacing,
_sectionInset,
};
return ASHashBytes(&data, sizeof(data));
}
@end