Skip to content

Commit 81aaebc

Browse files
authored
fix(ios): revert "feat: remove unneeded view controller (#74)" (#78)
This reverts commit fb78459.
1 parent ad2cdc1 commit 81aaebc

4 files changed

+78
-33
lines changed

ios/RNSimpleToast.mm

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#import "RNSimpleToast.h"
22

33
#import "UIView+Toast.h"
4+
#import "RNToastViewController.h"
45
#import <React/RCTConvert.h>
56
#import "RNToastView.h"
6-
#import "RNToastWindow.h"
77

88
static double defaultPositionId = 2.0;
99

@@ -106,17 +106,18 @@ - (void)_show:(NSString *)msg
106106

107107
NSString *positionString = RNToastPositionMap[@(position)] ?: CSToastPositionBottom;
108108
dispatch_async(dispatch_get_main_queue(), ^{
109-
UIWindow *window = [RNToastWindow new];
109+
RNToastViewController *controller = [RNToastViewController new];
110+
[controller show];
110111
BOOL kbdAvoidEnabled = [CSToastPositionBottom isEqualToString:positionString];
111-
UIView *view = [[RNToastView alloc] initWithFrame:window.bounds kbdHeight:self->_kbdHeight kbdAvoidEnabled:kbdAvoidEnabled];
112-
[window addSubview:view];
112+
UIView *view = [[RNToastView alloc] initWithFrame:controller.toastWindow.bounds kbdHeight:self->_kbdHeight kbdAvoidEnabled:kbdAvoidEnabled];
113+
[controller.toastWindow addSubview:view];
113114
UIView __weak *weakView = view;
114115

115116
UIView *toast = [view toastViewForMessage:msg title:nil image:nil style:style];
116117

117118
void (^completion)(BOOL) = ^(BOOL didTap) {
118119
[weakView removeFromSuperview];
119-
[window setHidden:YES];
120+
[controller hide];
120121
};
121122
// CSToastManager state is shared among toasts, and is used when toast is shown
122123
// so modifications to it should happen in the dispatch_get_main_queue block

ios/RNToastViewController.h

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#import <UIKit/UIKit.h>
2+
3+
@interface RNToastViewController : NSObject
4+
5+
@property(nonatomic, strong) UIWindow *toastWindow;
6+
7+
- (void)show;
8+
- (void)hide;
9+
10+
@end

ios/RNToastViewController.m

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
2+
#import "RNToastViewController.h"
3+
#import <React/RCTUtils.h>
4+
#import "RNToastWindow.h"
5+
6+
@implementation RNToastViewController
7+
8+
- (UIWindow *)toastWindow
9+
{
10+
if (_toastWindow == nil) {
11+
_toastWindow = [self getUIWindowFromScene];
12+
13+
if (_toastWindow == nil) {
14+
UIWindow *keyWindow = RCTSharedApplication().keyWindow;
15+
if (keyWindow) {
16+
_toastWindow = [[RNToastWindow alloc] initWithFrame:keyWindow.bounds];
17+
} else {
18+
// keyWindow is nil, so we cannot create and initialize _toastWindow
19+
NSLog(@"Unable to create alert window: keyWindow is nil");
20+
}
21+
}
22+
}
23+
24+
return _toastWindow;
25+
}
26+
27+
- (void)show {
28+
[self.toastWindow setHidden:NO];
29+
}
30+
31+
- (void)hide {
32+
[_toastWindow setHidden:YES];
33+
34+
if (@available(iOS 13, *)) {
35+
_toastWindow.windowScene = nil;
36+
}
37+
38+
_toastWindow = nil;
39+
}
40+
41+
- (UIWindow *)getUIWindowFromScene
42+
{
43+
if (@available(iOS 13.0, *)) {
44+
for (UIScene *scene in RCTSharedApplication().connectedScenes) {
45+
if (scene.activationState == UISceneActivationStateForegroundActive &&
46+
[scene isKindOfClass:[UIWindowScene class]]) {
47+
return [[RNToastWindow alloc] initWithWindowScene:(UIWindowScene *)scene];
48+
}
49+
}
50+
}
51+
return nil;
52+
}
53+
54+
@end

ios/RNToastWindow.m

+8-28
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,16 @@
11
#import "RNToastWindow.h"
2-
#import <React/RCTUtils.h>
32

43
@implementation RNToastWindow
54

6-
- (instancetype)init
7-
{
8-
if (@available(iOS 13.0, *)) {
9-
for (UIScene *scene in RCTSharedApplication().connectedScenes) {
10-
if (scene.activationState == UISceneActivationStateForegroundActive &&
11-
[scene isKindOfClass:[UIWindowScene class]]) {
12-
self = [super initWithWindowScene:(UIWindowScene *)scene];
13-
}
14-
}
15-
}
16-
if (!self) {
17-
UIWindow *keyWindow = RCTSharedApplication().keyWindow;
18-
if (keyWindow) {
19-
self = [super initWithFrame:keyWindow.bounds];
20-
} else {
21-
// keyWindow is nil, so we cannot create and initialize _toastWindow
22-
NSLog(@"Unable to create alert window: keyWindow is nil");
23-
}
5+
- (instancetype)initWithFrame:(CGRect)frame {
6+
if (self = [super initWithFrame:frame]) {
7+
self.windowLevel = UIWindowLevelAlert + 1;
248
}
25-
if (self) {
26-
[self setHidden:NO];
9+
return self;
10+
}
11+
12+
- (instancetype)initWithWindowScene:(UIWindowScene *)windowScene {
13+
if (self = [super initWithWindowScene:windowScene]) {
2714
self.windowLevel = UIWindowLevelAlert + 1;
2815
}
2916
return self;
@@ -35,11 +22,4 @@ - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
3522
else return hitView;
3623
}
3724

38-
- (void)dealloc
39-
{
40-
if (@available(iOS 13, *)) {
41-
self.windowScene = nil;
42-
}
43-
}
44-
4525
@end

0 commit comments

Comments
 (0)