/* This file provided by Facebook is for non-commercial testing and evaluation * purposes only. Facebook reserves all rights not expressly granted. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #import "PostNode.h" #import "SlowpokeShareNode.h" #import "SlowpokeTextNode.h" #import @interface PostNode () { SlowpokeTextNode *_textNode; SlowpokeShareNode *_needyChildNode; // this node slows down display } @end @implementation PostNode // turn on to demo that the parent displays a placeholder even if it takes the longest //+ (void)drawRect:(CGRect)bounds withParameters:(id)parameters isCancelled:(asdisplaynode_iscancelled_block_t)isCancelledBlock isRasterizing:(BOOL)isRasterizing //{ // usleep( (long)(1.2 * USEC_PER_SEC) ); // artificial delay of 1.2s // // // demonstrates that the parent node should also adhere to the placeholder // [[UIColor colorWithWhite:0.95 alpha:1.0] setFill]; // UIRectFill(bounds); //} - (instancetype)init { if (!(self = [super init])) return nil; _textNode = [[SlowpokeTextNode alloc] init]; _textNode.placeholderInsets = UIEdgeInsetsMake(3.0, 0.0, 3.0, 0.0); _textNode.placeholderEnabled = YES; NSString *text = @"Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh."; NSDictionary *attributes = @{ NSFontAttributeName: [UIFont systemFontOfSize:17.0] }; _textNode.attributedString = [[NSAttributedString alloc] initWithString:text attributes:attributes]; _needyChildNode = [[SlowpokeShareNode alloc] init]; _needyChildNode.opaque = NO; [self addSubnode:_textNode]; [self addSubnode:_needyChildNode]; return self; } - (UIImage *)placeholderImage { CGSize size = self.calculatedSize; UIGraphicsBeginImageContext(size); [[UIColor colorWithWhite:0.9 alpha:1] setFill]; UIRectFill((CGRect){CGPointZero, size}); UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image; } - (CGSize)calculateSizeThatFits:(CGSize)constrainedSize { CGSize textSize = [_textNode measure:constrainedSize]; CGSize shareSize = [_needyChildNode measure:constrainedSize]; return CGSizeMake(constrainedSize.width, textSize.height + 10.0 + shareSize.height); } - (void)layout { CGSize textSize = _textNode.calculatedSize; CGSize needyChildSize = _needyChildNode.calculatedSize; _textNode.frame = (CGRect){CGPointZero, textSize}; _needyChildNode.frame = (CGRect){0.0, CGRectGetMaxY(_textNode.frame) + 10.0, needyChildSize}; } @end