2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-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.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import "RCTView.h"
|
|
|
|
|
|
|
|
#import "RCTAutoInsetsProtocol.h"
|
2015-05-28 15:52:46 +00:00
|
|
|
#import "RCTBorderDrawing.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTConvert.h"
|
|
|
|
#import "RCTLog.h"
|
2015-04-27 10:50:07 +00:00
|
|
|
#import "RCTUtils.h"
|
2015-03-26 09:58:06 +00:00
|
|
|
#import "UIView+React.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-04-02 17:04:58 +00:00
|
|
|
static UIView *RCTViewHitTest(UIView *view, CGPoint point, UIEvent *event)
|
|
|
|
{
|
|
|
|
for (UIView *subview in [view.subviews reverseObjectEnumerator]) {
|
|
|
|
if (!subview.isHidden && subview.isUserInteractionEnabled && subview.alpha > 0) {
|
|
|
|
CGPoint convertedPoint = [subview convertPoint:point fromView:view];
|
|
|
|
UIView *subviewHitTestView = [subview hitTest:convertedPoint withEvent:event];
|
|
|
|
if (subviewHitTestView != nil) {
|
|
|
|
return subviewHitTestView;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2015-03-11 02:03:59 +00:00
|
|
|
@implementation UIView (RCTViewUnmounting)
|
|
|
|
|
|
|
|
- (void)react_remountAllSubviews
|
|
|
|
{
|
|
|
|
// Normal views don't support unmounting, so all
|
|
|
|
// this does is forward message to our subviews,
|
|
|
|
// in case any of those do support it
|
|
|
|
|
|
|
|
for (UIView *subview in self.subviews) {
|
|
|
|
[subview react_remountAllSubviews];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)react_updateClippedSubviewsWithClipRect:(CGRect)clipRect relativeToView:(UIView *)clipView
|
|
|
|
{
|
|
|
|
// Even though we don't support subview unmounting
|
|
|
|
// we do support clipsToBounds, so if that's enabled
|
|
|
|
// we'll update the clipping
|
|
|
|
|
|
|
|
if (self.clipsToBounds && [self.subviews count] > 0) {
|
|
|
|
clipRect = [clipView convertRect:clipRect toView:self];
|
|
|
|
clipRect = CGRectIntersection(clipRect, self.bounds);
|
|
|
|
clipView = self;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Normal views don't support unmounting, so all
|
|
|
|
// this does is forward message to our subviews,
|
|
|
|
// in case any of those do support it
|
|
|
|
|
|
|
|
for (UIView *subview in self.subviews) {
|
|
|
|
[subview react_updateClippedSubviewsWithClipRect:clipRect relativeToView:clipView];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (UIView *)react_findClipView
|
|
|
|
{
|
|
|
|
UIView *testView = self;
|
|
|
|
UIView *clipView = nil;
|
|
|
|
CGRect clipRect = self.bounds;
|
|
|
|
while (testView) {
|
|
|
|
if (testView.clipsToBounds) {
|
|
|
|
if (clipView) {
|
|
|
|
CGRect testRect = [clipView convertRect:clipRect toView:testView];
|
|
|
|
if (!CGRectContainsRect(testView.bounds, testRect)) {
|
|
|
|
clipView = testView;
|
|
|
|
clipRect = CGRectIntersection(testView.bounds, testRect);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
clipView = testView;
|
|
|
|
clipRect = [self convertRect:self.bounds toView:clipView];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
testView = testView.superview;
|
|
|
|
}
|
|
|
|
return clipView ?: self.window;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
static NSString *RCTRecursiveAccessibilityLabel(UIView *view)
|
|
|
|
{
|
|
|
|
NSMutableString *str = [NSMutableString stringWithString:@""];
|
|
|
|
for (UIView *subview in view.subviews) {
|
|
|
|
NSString *label = [subview accessibilityLabel];
|
|
|
|
if (label) {
|
|
|
|
[str appendString:@" "];
|
|
|
|
[str appendString:label];
|
|
|
|
} else {
|
|
|
|
[str appendString:RCTRecursiveAccessibilityLabel(subview)];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
@implementation RCTView
|
2015-03-11 02:03:59 +00:00
|
|
|
{
|
|
|
|
NSMutableArray *_reactSubviews;
|
2015-04-27 10:50:07 +00:00
|
|
|
UIColor *_backgroundColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
|
|
{
|
|
|
|
if ((self = [super initWithFrame:frame])) {
|
|
|
|
_borderWidth = -1;
|
|
|
|
_borderTopWidth = -1;
|
|
|
|
_borderRightWidth = -1;
|
|
|
|
_borderBottomWidth = -1;
|
|
|
|
_borderLeftWidth = -1;
|
2015-05-13 15:22:21 +00:00
|
|
|
_borderTopLeftRadius = -1;
|
|
|
|
_borderTopRightRadius = -1;
|
|
|
|
_borderBottomLeftRadius = -1;
|
|
|
|
_borderBottomRightRadius = -1;
|
2015-04-27 10:50:07 +00:00
|
|
|
|
|
|
|
_backgroundColor = [super backgroundColor];
|
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2015-06-15 14:53:45 +00:00
|
|
|
RCT_NOT_IMPLEMENTED(-initWithCoder:unused)
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
- (NSString *)accessibilityLabel
|
|
|
|
{
|
2015-03-01 23:33:55 +00:00
|
|
|
if (super.accessibilityLabel) {
|
|
|
|
return super.accessibilityLabel;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
return RCTRecursiveAccessibilityLabel(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setPointerEvents:(RCTPointerEvents)pointerEvents
|
|
|
|
{
|
|
|
|
_pointerEvents = pointerEvents;
|
|
|
|
self.userInteractionEnabled = (pointerEvents != RCTPointerEventsNone);
|
|
|
|
if (pointerEvents == RCTPointerEventsBoxNone) {
|
2015-03-26 08:43:17 +00:00
|
|
|
self.accessibilityViewIsModal = NO;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
|
|
|
|
{
|
|
|
|
switch (_pointerEvents) {
|
|
|
|
case RCTPointerEventsNone:
|
|
|
|
return nil;
|
|
|
|
case RCTPointerEventsUnspecified:
|
2015-04-02 17:04:58 +00:00
|
|
|
return RCTViewHitTest(self, point, event) ?: [super hitTest:point withEvent:event];
|
2015-02-20 04:10:52 +00:00
|
|
|
case RCTPointerEventsBoxOnly:
|
|
|
|
return [super hitTest:point withEvent:event] ? self: nil;
|
|
|
|
case RCTPointerEventsBoxNone:
|
2015-04-02 17:04:58 +00:00
|
|
|
return RCTViewHitTest(self, point, event);
|
2015-02-20 04:10:52 +00:00
|
|
|
default:
|
|
|
|
RCTLogError(@"Invalid pointer-events specified %zd on %@", _pointerEvents, self);
|
|
|
|
return [super hitTest:point withEvent:event];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-20 15:33:16 +00:00
|
|
|
- (BOOL)accessibilityActivate
|
|
|
|
{
|
|
|
|
if (self.accessibilityTapHandler) {
|
|
|
|
self.accessibilityTapHandler(self);
|
|
|
|
return YES;
|
|
|
|
} else {
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-19 13:21:52 +00:00
|
|
|
- (BOOL)accessibilityPerformMagicTap
|
|
|
|
{
|
|
|
|
if (self.magicTapHandler) {
|
|
|
|
self.magicTapHandler(self);
|
|
|
|
return YES;
|
|
|
|
} else {
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-15 19:05:04 +00:00
|
|
|
- (NSString *)description
|
|
|
|
{
|
|
|
|
NSString *superDescription = super.description;
|
|
|
|
NSRange semicolonRange = [superDescription rangeOfString:@";"];
|
|
|
|
NSString *replacement = [NSString stringWithFormat:@"; reactTag: %@;", self.reactTag];
|
|
|
|
return [superDescription stringByReplacingCharactersInRange:semicolonRange withString:replacement];
|
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
#pragma mark - Statics for dealing with layoutGuides
|
|
|
|
|
|
|
|
+ (void)autoAdjustInsetsForView:(UIView<RCTAutoInsetsProtocol> *)parentView
|
|
|
|
withScrollView:(UIScrollView *)scrollView
|
|
|
|
updateOffset:(BOOL)updateOffset
|
|
|
|
{
|
|
|
|
UIEdgeInsets baseInset = parentView.contentInset;
|
|
|
|
CGFloat previousInsetTop = scrollView.contentInset.top;
|
|
|
|
CGPoint contentOffset = scrollView.contentOffset;
|
2015-03-01 23:33:55 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
if (parentView.automaticallyAdjustContentInsets) {
|
|
|
|
UIEdgeInsets autoInset = [self contentInsetsForView:parentView];
|
|
|
|
baseInset.top += autoInset.top;
|
|
|
|
baseInset.bottom += autoInset.bottom;
|
|
|
|
baseInset.left += autoInset.left;
|
|
|
|
baseInset.right += autoInset.right;
|
|
|
|
}
|
|
|
|
[scrollView setContentInset:baseInset];
|
|
|
|
[scrollView setScrollIndicatorInsets:baseInset];
|
2015-03-01 23:33:55 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
if (updateOffset) {
|
|
|
|
// If we're adjusting the top inset, then let's also adjust the contentOffset so that the view
|
|
|
|
// elements above the top guide do not cover the content.
|
|
|
|
// This is generally only needed when your views are initially laid out, for
|
|
|
|
// manual changes to contentOffset, you can optionally disable this step
|
|
|
|
CGFloat currentInsetTop = scrollView.contentInset.top;
|
|
|
|
if (currentInsetTop != previousInsetTop) {
|
|
|
|
contentOffset.y -= (currentInsetTop - previousInsetTop);
|
|
|
|
scrollView.contentOffset = contentOffset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (UIEdgeInsets)contentInsetsForView:(UIView *)view
|
|
|
|
{
|
|
|
|
while (view) {
|
2015-03-06 00:36:41 +00:00
|
|
|
UIViewController *controller = view.backingViewController;
|
2015-02-20 04:10:52 +00:00
|
|
|
if (controller) {
|
|
|
|
return (UIEdgeInsets){
|
|
|
|
controller.topLayoutGuide.length, 0,
|
|
|
|
controller.bottomLayoutGuide.length, 0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
view = view.superview;
|
|
|
|
}
|
|
|
|
return UIEdgeInsetsZero;
|
|
|
|
}
|
|
|
|
|
2015-03-11 02:03:59 +00:00
|
|
|
#pragma mark - View unmounting
|
|
|
|
|
|
|
|
- (void)react_remountAllSubviews
|
|
|
|
{
|
|
|
|
if (_reactSubviews) {
|
2015-06-15 14:53:45 +00:00
|
|
|
NSUInteger index = 0;
|
2015-03-11 02:03:59 +00:00
|
|
|
for (UIView *view in _reactSubviews) {
|
|
|
|
if (view.superview != self) {
|
2015-06-15 14:53:45 +00:00
|
|
|
if (index < self.subviews.count) {
|
2015-03-11 02:03:59 +00:00
|
|
|
[self insertSubview:view atIndex:index];
|
|
|
|
} else {
|
|
|
|
[self addSubview:view];
|
|
|
|
}
|
|
|
|
[view react_remountAllSubviews];
|
|
|
|
}
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// If react_subviews is nil, we must already be showing all subviews
|
|
|
|
[super react_remountAllSubviews];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)remountSubview:(UIView *)view
|
|
|
|
{
|
|
|
|
// Calculate insertion index for view
|
|
|
|
NSInteger index = 0;
|
|
|
|
for (UIView *subview in _reactSubviews) {
|
|
|
|
if (subview == view) {
|
|
|
|
[self insertSubview:view atIndex:index];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (subview.superview) {
|
|
|
|
// View is mounted, so bump the index
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)mountOrUnmountSubview:(UIView *)view withClipRect:(CGRect)clipRect relativeToView:(UIView *)clipView
|
|
|
|
{
|
|
|
|
if (view.clipsToBounds) {
|
|
|
|
|
|
|
|
// View has cliping enabled, so we can easily test if it is partially
|
|
|
|
// or completely within the clipRect, and mount or unmount it accordingly
|
|
|
|
|
2015-06-02 08:40:43 +00:00
|
|
|
if (!CGRectIsEmpty(CGRectIntersection(clipRect, view.frame))) {
|
2015-03-11 02:03:59 +00:00
|
|
|
|
|
|
|
// View is at least partially visible, so remount it if unmounted
|
|
|
|
if (view.superview == nil) {
|
|
|
|
[self remountSubview:view];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Then test its subviews
|
|
|
|
if (CGRectContainsRect(clipRect, view.frame)) {
|
|
|
|
[view react_remountAllSubviews];
|
|
|
|
} else {
|
|
|
|
[view react_updateClippedSubviewsWithClipRect:clipRect relativeToView:clipView];
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (view.superview) {
|
|
|
|
|
|
|
|
// View is completely outside the clipRect, so unmount it
|
|
|
|
[view removeFromSuperview];
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// View has clipping disabled, so there's no way to tell if it has
|
|
|
|
// any visible subviews without an expensive recursive test, so we'll
|
|
|
|
// just add it.
|
|
|
|
|
|
|
|
if (view.superview == nil) {
|
|
|
|
[self remountSubview:view];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if subviews need to be mounted/unmounted
|
|
|
|
[view react_updateClippedSubviewsWithClipRect:clipRect relativeToView:clipView];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)react_updateClippedSubviewsWithClipRect:(CGRect)clipRect relativeToView:(UIView *)clipView
|
|
|
|
{
|
|
|
|
// TODO (#5906496): for scrollviews (the primary use-case) we could
|
|
|
|
// optimize this by only doing a range check along the scroll axis,
|
|
|
|
// instead of comparing the whole frame
|
|
|
|
|
|
|
|
if (_reactSubviews == nil) {
|
|
|
|
// Use default behavior if unmounting is disabled
|
|
|
|
return [super react_updateClippedSubviewsWithClipRect:clipRect relativeToView:clipView];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ([_reactSubviews count] == 0) {
|
|
|
|
// Do nothing if we have no subviews
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CGSizeEqualToSize(self.bounds.size, CGSizeZero)) {
|
|
|
|
// Do nothing if layout hasn't happened yet
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert clipping rect to local coordinates
|
|
|
|
clipRect = [clipView convertRect:clipRect toView:self];
|
|
|
|
clipView = self;
|
|
|
|
if (self.clipsToBounds) {
|
|
|
|
clipRect = CGRectIntersection(clipRect, self.bounds);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mount / unmount views
|
|
|
|
for (UIView *view in _reactSubviews) {
|
|
|
|
[self mountOrUnmountSubview:view withClipRect:clipRect relativeToView:clipView];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setRemoveClippedSubviews:(BOOL)removeClippedSubviews
|
|
|
|
{
|
|
|
|
if (removeClippedSubviews && !_reactSubviews) {
|
|
|
|
_reactSubviews = [self.subviews mutableCopy];
|
|
|
|
} else if (!removeClippedSubviews && _reactSubviews) {
|
|
|
|
[self react_remountAllSubviews];
|
|
|
|
_reactSubviews = nil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)removeClippedSubviews
|
|
|
|
{
|
|
|
|
return _reactSubviews != nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)insertReactSubview:(UIView *)view atIndex:(NSInteger)atIndex
|
|
|
|
{
|
|
|
|
if (_reactSubviews == nil) {
|
|
|
|
[self insertSubview:view atIndex:atIndex];
|
|
|
|
} else {
|
|
|
|
[_reactSubviews insertObject:view atIndex:atIndex];
|
|
|
|
|
|
|
|
// Find a suitable view to use for clipping
|
|
|
|
UIView *clipView = [self react_findClipView];
|
|
|
|
if (clipView) {
|
|
|
|
|
|
|
|
// If possible, don't add subviews if they are clipped
|
|
|
|
[self mountOrUnmountSubview:view withClipRect:clipView.bounds relativeToView:clipView];
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Fallback if we can't find a suitable clipView
|
|
|
|
[self remountSubview:view];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)removeReactSubview:(UIView *)subview
|
|
|
|
{
|
|
|
|
[_reactSubviews removeObject:subview];
|
|
|
|
[subview removeFromSuperview];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSArray *)reactSubviews
|
|
|
|
{
|
|
|
|
// The _reactSubviews array is only used when we have hidden
|
|
|
|
// offscreen views. If _reactSubviews is nil, we can assume
|
|
|
|
// that [self reactSubviews] and [self subviews] are the same
|
|
|
|
|
|
|
|
return _reactSubviews ?: [self subviews];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)updateClippedSubviews
|
|
|
|
{
|
|
|
|
// Find a suitable view to use for clipping
|
|
|
|
UIView *clipView = [self react_findClipView];
|
|
|
|
if (clipView) {
|
|
|
|
[self react_updateClippedSubviewsWithClipRect:clipView.bounds relativeToView:clipView];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)layoutSubviews
|
|
|
|
{
|
|
|
|
// TODO (#5906496): this a nasty performance drain, but necessary
|
|
|
|
// to prevent gaps appearing when the loading spinner disappears.
|
|
|
|
// We might be able to fix this another way by triggering a call
|
|
|
|
// to updateClippedSubviews manually after loading
|
|
|
|
|
|
|
|
[super layoutSubviews];
|
2015-03-26 08:43:17 +00:00
|
|
|
|
2015-03-11 02:03:59 +00:00
|
|
|
if (_reactSubviews) {
|
|
|
|
[self updateClippedSubviews];
|
|
|
|
}
|
2015-03-26 08:43:17 +00:00
|
|
|
}
|
|
|
|
|
2015-04-27 10:50:07 +00:00
|
|
|
#pragma mark - Borders
|
|
|
|
|
|
|
|
- (UIColor *)backgroundColor
|
2015-03-26 08:43:17 +00:00
|
|
|
{
|
2015-04-27 10:50:07 +00:00
|
|
|
return _backgroundColor;
|
|
|
|
}
|
2015-03-26 08:43:17 +00:00
|
|
|
|
2015-04-27 10:50:07 +00:00
|
|
|
- (void)setBackgroundColor:(UIColor *)backgroundColor
|
|
|
|
{
|
|
|
|
if ([_backgroundColor isEqual:backgroundColor]) {
|
|
|
|
return;
|
2015-03-26 08:43:17 +00:00
|
|
|
}
|
2015-05-26 09:12:28 +00:00
|
|
|
|
2015-04-27 10:50:07 +00:00
|
|
|
_backgroundColor = backgroundColor;
|
|
|
|
[self.layer setNeedsDisplay];
|
2015-03-26 08:43:17 +00:00
|
|
|
}
|
|
|
|
|
2015-05-28 15:52:46 +00:00
|
|
|
- (UIEdgeInsets)bordersAsInsets
|
2015-03-26 08:43:17 +00:00
|
|
|
{
|
2015-04-27 10:50:07 +00:00
|
|
|
const CGFloat borderWidth = MAX(0, _borderWidth);
|
2015-03-26 08:43:17 +00:00
|
|
|
|
2015-05-28 15:52:46 +00:00
|
|
|
return (UIEdgeInsets) {
|
|
|
|
_borderTopWidth >= 0 ? _borderTopWidth : borderWidth,
|
|
|
|
_borderLeftWidth >= 0 ? _borderLeftWidth : borderWidth,
|
|
|
|
_borderBottomWidth >= 0 ? _borderBottomWidth : borderWidth,
|
|
|
|
_borderRightWidth >= 0 ? _borderRightWidth : borderWidth,
|
|
|
|
};
|
|
|
|
}
|
2015-03-26 08:43:17 +00:00
|
|
|
|
2015-05-28 15:52:46 +00:00
|
|
|
- (RCTCornerRadii)cornerRadii
|
|
|
|
{
|
|
|
|
const CGRect bounds = self.bounds;
|
|
|
|
const CGFloat maxRadius = MIN(bounds.size.height, bounds.size.width);
|
|
|
|
const CGFloat radius = MAX(0, _borderRadius);
|
2015-05-26 09:12:28 +00:00
|
|
|
|
2015-05-28 15:52:46 +00:00
|
|
|
return (RCTCornerRadii){
|
|
|
|
MIN(_borderTopLeftRadius >= 0 ? _borderTopLeftRadius : radius, maxRadius),
|
|
|
|
MIN(_borderTopRightRadius >= 0 ? _borderTopRightRadius : radius, maxRadius),
|
|
|
|
MIN(_borderBottomLeftRadius >= 0 ? _borderBottomLeftRadius : radius, maxRadius),
|
|
|
|
MIN(_borderBottomRightRadius >= 0 ? _borderBottomRightRadius : radius, maxRadius),
|
|
|
|
};
|
|
|
|
}
|
2015-04-27 10:50:07 +00:00
|
|
|
|
2015-05-28 15:52:46 +00:00
|
|
|
- (RCTBorderColors)borderColors
|
|
|
|
{
|
|
|
|
return (RCTBorderColors){
|
|
|
|
_borderTopColor ?: _borderColor,
|
|
|
|
_borderLeftColor ?: _borderColor,
|
|
|
|
_borderBottomColor ?: _borderColor,
|
2015-07-14 11:53:54 +00:00
|
|
|
_borderRightColor ?: _borderColor,
|
2015-05-28 15:52:46 +00:00
|
|
|
};
|
2015-03-26 08:43:17 +00:00
|
|
|
}
|
|
|
|
|
2015-04-27 10:50:07 +00:00
|
|
|
- (void)displayLayer:(CALayer *)layer
|
2015-03-26 08:43:17 +00:00
|
|
|
{
|
2015-05-28 15:52:46 +00:00
|
|
|
const RCTCornerRadii cornerRadii = [self cornerRadii];
|
|
|
|
const UIEdgeInsets borderInsets = [self bordersAsInsets];
|
|
|
|
const RCTBorderColors borderColors = [self borderColors];
|
|
|
|
|
|
|
|
BOOL useIOSBorderRendering =
|
|
|
|
!RCTRunningInTestEnvironment() &&
|
|
|
|
RCTCornerRadiiAreEqual(cornerRadii) &&
|
|
|
|
RCTBorderInsetsAreEqual(borderInsets) &&
|
2015-06-23 13:43:55 +00:00
|
|
|
RCTBorderColorsAreEqual(borderColors) &&
|
2015-05-28 15:52:46 +00:00
|
|
|
|
2015-06-23 13:43:55 +00:00
|
|
|
// iOS draws borders in front of the content whereas CSS draws them behind
|
|
|
|
// the content. For this reason, only use iOS border drawing when clipping
|
|
|
|
// or when the border is hidden.
|
|
|
|
|
|
|
|
(borderInsets.top == 0 || CGColorGetAlpha(borderColors.top) == 0 || self.clipsToBounds);
|
|
|
|
|
|
|
|
// iOS clips to the outside of the border, but CSS clips to the inside. To
|
|
|
|
// solve this, we'll need to add a container view inside the main view to
|
|
|
|
// correctly clip the subviews.
|
2015-05-28 15:52:46 +00:00
|
|
|
|
|
|
|
if (useIOSBorderRendering) {
|
|
|
|
layer.cornerRadius = cornerRadii.topLeft;
|
|
|
|
layer.borderColor = borderColors.left;
|
|
|
|
layer.borderWidth = borderInsets.left;
|
|
|
|
layer.backgroundColor = _backgroundColor.CGColor;
|
|
|
|
layer.contents = nil;
|
|
|
|
layer.needsDisplayOnBoundsChange = NO;
|
|
|
|
layer.mask = nil;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
UIImage *image = RCTGetBorderImage([self cornerRadii],
|
|
|
|
[self bordersAsInsets],
|
|
|
|
[self borderColors],
|
|
|
|
_backgroundColor.CGColor,
|
|
|
|
self.clipsToBounds);
|
|
|
|
|
|
|
|
const CGRect contentsCenter = ({
|
|
|
|
CGSize size = image.size;
|
|
|
|
UIEdgeInsets insets = image.capInsets;
|
|
|
|
CGRectMake(
|
|
|
|
insets.left / size.width,
|
|
|
|
insets.top / size.height,
|
|
|
|
1.0 / size.width,
|
|
|
|
1.0 / size.height
|
|
|
|
);
|
|
|
|
});
|
2015-03-26 08:43:17 +00:00
|
|
|
|
2015-05-28 15:52:46 +00:00
|
|
|
if (RCTRunningInTestEnvironment()) {
|
2015-04-27 10:50:07 +00:00
|
|
|
const CGSize size = self.bounds.size;
|
|
|
|
UIGraphicsBeginImageContextWithOptions(size, NO, image.scale);
|
|
|
|
[image drawInRect:(CGRect){CGPointZero, size}];
|
|
|
|
image = UIGraphicsGetImageFromCurrentImageContext();
|
|
|
|
UIGraphicsEndImageContext();
|
|
|
|
}
|
2015-03-26 08:43:17 +00:00
|
|
|
|
2015-05-28 15:52:46 +00:00
|
|
|
layer.backgroundColor = NULL;
|
2015-04-27 10:50:07 +00:00
|
|
|
layer.contents = (id)image.CGImage;
|
|
|
|
layer.contentsCenter = contentsCenter;
|
2015-05-28 15:52:46 +00:00
|
|
|
layer.contentsScale = image.scale;
|
2015-04-27 10:50:07 +00:00
|
|
|
layer.magnificationFilter = kCAFilterNearest;
|
2015-05-28 15:52:46 +00:00
|
|
|
layer.needsDisplayOnBoundsChange = YES;
|
2015-05-26 09:12:28 +00:00
|
|
|
|
|
|
|
[self updateClippingForLayer:layer];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)updateClippingForLayer:(CALayer *)layer
|
|
|
|
{
|
|
|
|
CALayer *mask = nil;
|
|
|
|
CGFloat cornerRadius = 0;
|
|
|
|
|
|
|
|
if (self.clipsToBounds) {
|
|
|
|
|
2015-05-28 15:52:46 +00:00
|
|
|
const RCTCornerRadii cornerRadii = [self cornerRadii];
|
|
|
|
if (RCTCornerRadiiAreEqual(cornerRadii)) {
|
2015-05-26 09:12:28 +00:00
|
|
|
|
2015-05-28 15:52:46 +00:00
|
|
|
cornerRadius = cornerRadii.topLeft;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
CAShapeLayer *shapeLayer = [CAShapeLayer layer];
|
|
|
|
CGPathRef path = RCTPathCreateWithRoundedRect(self.bounds, RCTGetCornerInsets(cornerRadii, UIEdgeInsetsZero), NULL);
|
|
|
|
shapeLayer.path = path;
|
|
|
|
CGPathRelease(path);
|
|
|
|
mask = shapeLayer;
|
2015-05-26 09:12:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
layer.cornerRadius = cornerRadius;
|
|
|
|
layer.mask = mask;
|
2015-03-26 08:43:17 +00:00
|
|
|
}
|
|
|
|
|
2015-04-27 10:50:07 +00:00
|
|
|
#pragma mark Border Color
|
2015-03-26 08:43:17 +00:00
|
|
|
|
2015-07-14 11:53:54 +00:00
|
|
|
#define setBorderColor(side) \
|
|
|
|
- (void)setBorder##side##Color:(CGColorRef)color \
|
|
|
|
{ \
|
|
|
|
if (CGColorEqualToColor(_border##side##Color, color)) { \
|
|
|
|
return; \
|
|
|
|
} \
|
|
|
|
CGColorRelease(_border##side##Color); \
|
|
|
|
_border##side##Color = CGColorRetain(color); \
|
|
|
|
[self.layer setNeedsDisplay]; \
|
2015-04-27 10:50:07 +00:00
|
|
|
}
|
2015-03-26 08:43:17 +00:00
|
|
|
|
2015-04-27 10:50:07 +00:00
|
|
|
setBorderColor()
|
|
|
|
setBorderColor(Top)
|
|
|
|
setBorderColor(Right)
|
|
|
|
setBorderColor(Bottom)
|
|
|
|
setBorderColor(Left)
|
2015-03-26 08:43:17 +00:00
|
|
|
|
2015-04-27 10:50:07 +00:00
|
|
|
#pragma mark - Border Width
|
|
|
|
|
2015-07-14 11:53:54 +00:00
|
|
|
#define setBorderWidth(side) \
|
|
|
|
- (void)setBorder##side##Width:(CGFloat)width \
|
|
|
|
{ \
|
|
|
|
if (_border##side##Width == width) { \
|
|
|
|
return; \
|
|
|
|
} \
|
|
|
|
_border##side##Width = width; \
|
|
|
|
[self.layer setNeedsDisplay]; \
|
2015-03-26 08:43:17 +00:00
|
|
|
}
|
|
|
|
|
2015-04-27 10:50:07 +00:00
|
|
|
setBorderWidth()
|
|
|
|
setBorderWidth(Top)
|
|
|
|
setBorderWidth(Right)
|
|
|
|
setBorderWidth(Bottom)
|
|
|
|
setBorderWidth(Left)
|
|
|
|
|
2015-07-14 11:53:54 +00:00
|
|
|
#define setBorderRadius(side) \
|
|
|
|
- (void)setBorder##side##Radius:(CGFloat)radius \
|
|
|
|
{ \
|
|
|
|
if (_border##side##Radius == radius) { \
|
|
|
|
return; \
|
|
|
|
} \
|
|
|
|
_border##side##Radius = radius; \
|
|
|
|
[self.layer setNeedsDisplay]; \
|
2015-05-13 15:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setBorderRadius()
|
|
|
|
setBorderRadius(TopLeft)
|
|
|
|
setBorderRadius(TopRight)
|
|
|
|
setBorderRadius(BottomLeft)
|
|
|
|
setBorderRadius(BottomRight)
|
|
|
|
|
2015-07-14 11:53:54 +00:00
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
CGColorRelease(_borderColor);
|
|
|
|
CGColorRelease(_borderTopColor);
|
|
|
|
CGColorRelease(_borderRightColor);
|
|
|
|
CGColorRelease(_borderBottomColor);
|
|
|
|
CGColorRelease(_borderLeftColor);
|
|
|
|
}
|
|
|
|
|
2015-04-27 10:50:07 +00:00
|
|
|
@end
|