File tree 4 files changed +78
-33
lines changed
4 files changed +78
-33
lines changed Original file line number Diff line number Diff line change 1
1
#import " RNSimpleToast.h"
2
2
3
3
#import " UIView+Toast.h"
4
+ #import " RNToastViewController.h"
4
5
#import < React/RCTConvert.h>
5
6
#import " RNToastView.h"
6
- #import " RNToastWindow.h"
7
7
8
8
static double defaultPositionId = 2.0 ;
9
9
@@ -106,17 +106,18 @@ - (void)_show:(NSString *)msg
106
106
107
107
NSString *positionString = RNToastPositionMap[@(position)] ?: CSToastPositionBottom;
108
108
dispatch_async (dispatch_get_main_queue (), ^{
109
- UIWindow *window = [RNToastWindow new ];
109
+ RNToastViewController *controller = [RNToastViewController new ];
110
+ [controller show ];
110
111
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];
113
114
UIView __weak *weakView = view;
114
115
115
116
UIView *toast = [view toastViewForMessage: msg title: nil image: nil style: style];
116
117
117
118
void (^completion)(BOOL ) = ^(BOOL didTap) {
118
119
[weakView removeFromSuperview ];
119
- [window setHidden: YES ];
120
+ [controller hide ];
120
121
};
121
122
// CSToastManager state is shared among toasts, and is used when toast is shown
122
123
// so modifications to it should happen in the dispatch_get_main_queue block
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
#import " RNToastWindow.h"
2
- #import < React/RCTUtils.h>
3
2
4
3
@implementation RNToastWindow
5
4
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 ;
24
8
}
25
- if (self) {
26
- [self setHidden: NO ];
9
+ return self;
10
+ }
11
+
12
+ - (instancetype )initWithWindowScene : (UIWindowScene *)windowScene {
13
+ if (self = [super initWithWindowScene: windowScene]) {
27
14
self.windowLevel = UIWindowLevelAlert + 1 ;
28
15
}
29
16
return self;
@@ -35,11 +22,4 @@ - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
35
22
else return hitView;
36
23
}
37
24
38
- - (void )dealloc
39
- {
40
- if (@available (iOS 13 , *)) {
41
- self.windowScene = nil ;
42
- }
43
- }
44
-
45
25
@end
You can’t perform that action at this time.
0 commit comments