2015-04-29 22:28:18 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-04-29 22:28:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import "ARTNode.h"
|
|
|
|
|
|
|
|
#import "ARTContainer.h"
|
|
|
|
|
|
|
|
@implementation ARTNode
|
|
|
|
|
2016-06-08 07:06:08 +00:00
|
|
|
- (void)insertReactSubview:(UIView *)subview atIndex:(NSInteger)atIndex
|
2015-04-29 22:28:18 +00:00
|
|
|
{
|
2016-06-08 07:06:08 +00:00
|
|
|
[super insertReactSubview:subview atIndex:atIndex];
|
|
|
|
[self insertSubview:subview atIndex:atIndex];
|
2015-04-29 22:28:18 +00:00
|
|
|
[self invalidate];
|
|
|
|
}
|
|
|
|
|
2016-06-08 07:06:08 +00:00
|
|
|
- (void)removeReactSubview:(UIView *)subview
|
2015-04-29 22:28:18 +00:00
|
|
|
{
|
2016-06-08 07:06:08 +00:00
|
|
|
[super removeReactSubview:subview];
|
2015-04-29 22:28:18 +00:00
|
|
|
[self invalidate];
|
2016-06-08 07:06:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)didUpdateReactSubviews
|
|
|
|
{
|
|
|
|
// Do nothing, as subviews are inserted by insertReactSubview:
|
2015-04-29 22:28:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setOpacity:(CGFloat)opacity
|
|
|
|
{
|
|
|
|
[self invalidate];
|
|
|
|
_opacity = opacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setTransform:(CGAffineTransform)transform
|
|
|
|
{
|
|
|
|
[self invalidate];
|
|
|
|
super.transform = transform;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)invalidate
|
|
|
|
{
|
|
|
|
id<ARTContainer> container = (id<ARTContainer>)self.superview;
|
|
|
|
[container invalidate];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)renderTo:(CGContextRef)context
|
|
|
|
{
|
|
|
|
if (self.opacity <= 0) {
|
|
|
|
// Nothing to paint
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (self.opacity >= 1) {
|
|
|
|
// Just paint at full opacity
|
|
|
|
CGContextSaveGState(context);
|
|
|
|
CGContextConcatCTM(context, self.transform);
|
|
|
|
CGContextSetAlpha(context, 1);
|
|
|
|
[self renderLayerTo:context];
|
|
|
|
CGContextRestoreGState(context);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// This needs to be painted on a layer before being composited.
|
|
|
|
CGContextSaveGState(context);
|
|
|
|
CGContextConcatCTM(context, self.transform);
|
|
|
|
CGContextSetAlpha(context, self.opacity);
|
|
|
|
CGContextBeginTransparencyLayer(context, NULL);
|
|
|
|
[self renderLayerTo:context];
|
|
|
|
CGContextEndTransparencyLayer(context);
|
|
|
|
CGContextRestoreGState(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)renderLayerTo:(CGContextRef)context
|
|
|
|
{
|
|
|
|
// abstract
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|