Skip to content

Commit

Permalink
feat: add load method
Browse files Browse the repository at this point in the history
  • Loading branch information
WoLewicki committed Aug 22, 2024
1 parent e5b1ca5 commit 9428b5f
Show file tree
Hide file tree
Showing 31 changed files with 181 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXAtmosphereComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXAtmosphereComponentView {
RNMBXAtmosphere *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXBackgroundLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXBackgroundLayerComponentView {
RNMBXBackgroundLayer *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXCalloutComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ @implementation RNMBXCalloutComponentView {
RNMBXCallout *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXCameraComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ @implementation RNMBXCameraComponentView {
RNMBXCamera *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXCircleLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXCircleLayerComponentView {
RNMBXCircleLayer *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXCustomLocationProviderComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXCustomLocationProviderComponentView {
RNMBXCustomLocationProvider *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXFillExtrusionLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXFillExtrusionLayerComponentView {
RNMBXFillExtrusionLayer *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXFillLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXFillLayerComponentView {
RNMBXFillLayer *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXHeatmapLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXHeatmapLayerComponentView {
RNMBXHeatmapLayer *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
5 changes: 5 additions & 0 deletions ios/RNMBX/RNMBXImageComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ @implementation RNMBXImageComponentView {
RNMBXImage *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXImageSourceComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ @implementation RNMBXImageSourceComponentView {
RNMBXImageSource *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXImagesComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ @implementation RNMBXImagesComponentView {
RNMBXImages *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXLightComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXLightComponentView {
RNMBXLight *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXLineLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXLineLayerComponentView {
RNMBXLineLayer *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXMapViewComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ @implementation RNMBXMapViewEventDispatcher {
RNMBXMapViewComponentView* _componentView;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithComponentView:(RNMBXMapViewComponentView*)componentView {
if (self = [super init]) {
_componentView = componentView;
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXMarkerViewComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ @implementation RNMBXMarkerViewComponentView {
RNMBXMarkerView *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXMarkerViewContentComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXMarkerViewContentComponentView {
CGRect _frame;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXModelLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXModelLayerComponentView {
RNMBXModelLayer *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXModelsComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ @implementation RNMBXModelsComponentView {
RNMBXModels *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXNativeUserLocationComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXNativeUserLocationComponentView {
RNMBXNativeUserLocation *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXPointAnnotationComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ @implementation RNMBXPointAnnotationComponentView {
RNMBXPointAnnotation *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
5 changes: 5 additions & 0 deletions ios/RNMBX/RNMBXRasterDemSourceComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ @implementation RNMBXRasterDemSourceComponentView {
RNMBXRasterDemSource *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXRasterLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXRasterLayerComponentView {
RNMBXRasterLayer *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
5 changes: 5 additions & 0 deletions ios/RNMBX/RNMBXRasterSourceComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ @implementation RNMBXRasterSourceComponentView {
RNMBXRasterSource *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
Expand Down
5 changes: 5 additions & 0 deletions ios/RNMBX/RNMBXShapeSourceComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ @implementation RNMBXShapeSourceComponentView {
RNMBXShapeSource *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXSkyLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXSkyLayerComponentView {
RNMBXSkyLayer *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXStyleImportComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ @implementation RNMBXStyleImportComponentView {
RNMBXStyleImport *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXSymbolLayerComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXSymbolLayerComponentView {
RNMBXSymbolLayer *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXTerrainComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ @implementation RNMBXTerrainComponentView {
RNMBXTerrain *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down
5 changes: 5 additions & 0 deletions ios/RNMBX/RNMBXVectorSourceComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ @implementation RNMBXVectorSourceComponentView {
RNMBXVectorSource *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
Expand Down
6 changes: 6 additions & 0 deletions ios/RNMBX/RNMBXViewportComponentView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ @implementation RNMBXViewportComponentView {
RNMBXViewport *_view;
}

// Needed because of this: https://github.com/facebook/react-native/pull/37274
+ (void)load
{
[super load];
}

- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
Expand Down

0 comments on commit 9428b5f

Please sign in to comment.