Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/react-native-svg/apple/Elements/RNSVGMask.mm
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

161 lines
3.5 KiB
Plaintext

/**
* Copyright (c) 2015-present, Horcrux.
* All rights reserved.
*
* This source code is licensed under the MIT-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#import "RNSVGMask.h"
#import "RNSVGBrushType.h"
#import "RNSVGNode.h"
#import "RNSVGPainter.h"
#ifdef RCT_NEW_ARCH_ENABLED
#import <React/RCTConversions.h>
#import <React/RCTFabricComponentsPlugins.h>
#import <react/renderer/components/rnsvg/ComponentDescriptors.h>
#import <react/renderer/components/view/conversions.h>
#import "RNSVGFabricConversions.h"
#endif // RCT_NEW_ARCH_ENABLED
@implementation RNSVGMask
#ifdef RCT_NEW_ARCH_ENABLED
using namespace facebook::react;
- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
static const auto defaultProps = std::make_shared<const RNSVGMaskProps>();
_props = defaultProps;
}
return self;
}
#pragma mark - RCTComponentViewProtocol
+ (ComponentDescriptorProvider)componentDescriptorProvider
{
return concreteComponentDescriptorProvider<RNSVGMaskComponentDescriptor>();
}
- (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const &)oldProps
{
const auto &newProps = static_cast<const RNSVGMaskProps &>(*props);
id x = RNSVGConvertFollyDynamicToId(newProps.x);
if (x != nil) {
self.x = [RCTConvert RNSVGLength:x];
}
id y = RNSVGConvertFollyDynamicToId(newProps.y);
if (y != nil) {
self.y = [RCTConvert RNSVGLength:y];
}
id maskheight = RNSVGConvertFollyDynamicToId(newProps.height);
if (maskheight != nil) {
self.maskheight = [RCTConvert RNSVGLength:maskheight];
}
id maskwidth = RNSVGConvertFollyDynamicToId(newProps.width);
if (maskwidth != nil) {
self.maskwidth = [RCTConvert RNSVGLength:maskwidth];
}
self.maskUnits = newProps.maskUnits == 0 ? kRNSVGUnitsObjectBoundingBox : kRNSVGUnitsUserSpaceOnUse;
self.maskContentUnits = newProps.maskUnits == 0 ? kRNSVGUnitsObjectBoundingBox : kRNSVGUnitsUserSpaceOnUse;
setCommonGroupProps(newProps, self);
_props = std::static_pointer_cast<RNSVGMaskProps const>(props);
}
- (void)prepareForRecycle
{
[super prepareForRecycle];
_x = nil;
_y = nil;
_maskheight = nil;
_maskwidth = nil;
_maskUnits = kRNSVGUnitsObjectBoundingBox;
_maskContentUnits = kRNSVGUnitsObjectBoundingBox;
}
#endif // RCT_NEW_ARCH_ENABLED
- (RNSVGPlatformView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
return nil;
}
- (void)parseReference
{
self.dirty = false;
[self.svgView defineMask:self maskName:self.name];
}
- (void)setX:(RNSVGLength *)x
{
if ([x isEqualTo:_x]) {
return;
}
_x = x;
[self invalidate];
}
- (void)setY:(RNSVGLength *)y
{
if ([y isEqualTo:_y]) {
return;
}
_y = y;
[self invalidate];
}
- (void)setMaskwidth:(RNSVGLength *)maskwidth
{
if ([maskwidth isEqualTo:_maskwidth]) {
return;
}
_maskwidth = maskwidth;
[self invalidate];
}
- (void)setMaskheight:(RNSVGLength *)maskheight
{
if ([maskheight isEqualTo:_maskheight]) {
return;
}
_maskheight = maskheight;
[self invalidate];
}
- (void)setMaskUnits:(RNSVGUnits)maskUnits
{
if (maskUnits == _maskUnits) {
return;
}
_maskUnits = maskUnits;
[self invalidate];
}
- (void)setMaskContentUnits:(RNSVGUnits)maskContentUnits
{
if (maskContentUnits == _maskContentUnits) {
return;
}
_maskContentUnits = maskContentUnits;
[self invalidate];
}
@end
#ifdef RCT_NEW_ARCH_ENABLED
Class<RCTComponentViewProtocol> RNSVGMaskCls(void)
{
return RNSVGMask.class;
}
#endif // RCT_NEW_ARCH_ENABLED