mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
74de9526ab
Summary: Recently, I've introduced `RCTReactNativeFactory` in this PR: https://github.com/facebook/react-native/issues/46298, which is a good successor for `RCTAppDelegate`. ### Why? `RCTAppDelegate` introduced strong coupling between React Native and AppDelegate pattern. From iOS 13+ there is a newer equivalent (Scene Delegate) which is not possible to achieve with current architecture. The proposed solution involves migration to a `RCTReactNativeFactory` a class that encapsulates initialization logic of React Native. This migration will make brownfield initialization easier by making it more flexible and simpler to integrate into already established apps. ### Deprecation plan The plan I've discussed with cipolleschi involves: - Deprecation of `RCTAppDelegate` in 0.79 (current main) - Migration off `RCTAppDelegate` to SceneDelegate + `RCTReactNativeFactory` in 0.80 ## Changelog: [IOS] [DEPRECATED] - deprecate RCTAppDelegate Pull Request resolved: https://github.com/facebook/react-native/pull/49078 Test Plan: Not needed Reviewed By: cortinico Differential Revision: D69061022 Pulled By: cipolleschi fbshipit-source-id: b02a0ff3f26be9320da749f38c9cf083804f9f30
113 lines
3.0 KiB
Plaintext
113 lines
3.0 KiB
Plaintext
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "FlexibleSizeExampleView.h"
|
|
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTRootView.h>
|
|
#import <React/RCTRootViewDelegate.h>
|
|
#import <React/RCTViewManager.h>
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
@interface FlexibleSizeExampleViewManager : RCTViewManager
|
|
|
|
@end
|
|
|
|
@implementation FlexibleSizeExampleViewManager
|
|
|
|
RCT_EXPORT_MODULE();
|
|
|
|
- (UIView *)view
|
|
{
|
|
return [FlexibleSizeExampleView new];
|
|
}
|
|
|
|
@end
|
|
|
|
@interface FlexibleSizeExampleView () <RCTRootViewDelegate>
|
|
|
|
@end
|
|
|
|
@implementation FlexibleSizeExampleView {
|
|
RCTRootView *_resizableRootView;
|
|
UITextView *_currentSizeTextView;
|
|
BOOL _sizeUpdated;
|
|
}
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
{
|
|
if ((self = [super initWithFrame:frame])) {
|
|
_sizeUpdated = NO;
|
|
|
|
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
|
|
|
|
_resizableRootView = (RCTRootView *)[appDelegate.reactNativeFactory.rootViewFactory
|
|
viewWithModuleName:@"RootViewSizeFlexibilityExampleApp"];
|
|
|
|
[_resizableRootView setSizeFlexibility:RCTRootViewSizeFlexibilityHeight];
|
|
|
|
_currentSizeTextView = [UITextView new];
|
|
#ifndef TARGET_OS_TV
|
|
_currentSizeTextView.editable = NO;
|
|
#endif
|
|
_currentSizeTextView.text = @"Resizable view has not been resized yet";
|
|
_currentSizeTextView.textColor = [UIColor blackColor];
|
|
_currentSizeTextView.backgroundColor = [UIColor whiteColor];
|
|
_currentSizeTextView.font = [UIFont boldSystemFontOfSize:10];
|
|
|
|
_resizableRootView.delegate = self;
|
|
|
|
[self addSubview:_currentSizeTextView];
|
|
[self addSubview:_resizableRootView];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)layoutSubviews
|
|
{
|
|
float textViewHeight = 60;
|
|
float spacingHeight = 10;
|
|
[_resizableRootView
|
|
setFrame:CGRectMake(
|
|
0, textViewHeight + spacingHeight, self.frame.size.width, _resizableRootView.frame.size.height)];
|
|
[_currentSizeTextView setFrame:CGRectMake(0, 0, self.frame.size.width, textViewHeight)];
|
|
}
|
|
|
|
- (NSArray<UIView<RCTComponent> *> *)reactSubviews
|
|
{
|
|
// this is to avoid unregistering our RCTRootView when the component is removed from RN hierarchy
|
|
(void)[super reactSubviews];
|
|
return @[];
|
|
}
|
|
|
|
#pragma mark - RCTRootViewDelegate
|
|
|
|
- (void)rootViewDidChangeIntrinsicSize:(RCTRootView *)rootView
|
|
{
|
|
CGRect newFrame = rootView.frame;
|
|
newFrame.size = rootView.intrinsicContentSize;
|
|
|
|
if (!_sizeUpdated) {
|
|
_sizeUpdated = TRUE;
|
|
_currentSizeTextView.text = [NSString
|
|
stringWithFormat:
|
|
@"RCTRootViewDelegate: content with initially unknown size has appeared, updating root view's size so the content fits."];
|
|
|
|
} else {
|
|
_currentSizeTextView.text =
|
|
[NSString stringWithFormat:
|
|
@"RCTRootViewDelegate: content size has been changed to (%ld, %ld), updating root view's size.",
|
|
(long)newFrame.size.width,
|
|
(long)newFrame.size.height];
|
|
}
|
|
|
|
rootView.frame = newFrame;
|
|
}
|
|
|
|
@end
|