- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
58 lines
1.3 KiB
Plaintext
58 lines
1.3 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 <React/RCTUtils.h>
|
|
|
|
#import <React/RCTAlertController.h>
|
|
|
|
@interface RCTAlertController ()
|
|
|
|
@property (nonatomic, strong) UIWindow *alertWindow;
|
|
|
|
@end
|
|
|
|
@implementation RCTAlertController
|
|
|
|
- (UIWindow *)alertWindow
|
|
{
|
|
if (_alertWindow == nil) {
|
|
_alertWindow = [[UIWindow alloc] initWithWindowScene:RCTKeyWindow().windowScene];
|
|
|
|
if (_alertWindow) {
|
|
_alertWindow.rootViewController = [UIViewController new];
|
|
_alertWindow.windowLevel = UIWindowLevelAlert + 1;
|
|
}
|
|
}
|
|
|
|
return _alertWindow;
|
|
}
|
|
|
|
- (void)show:(BOOL)animated completion:(void (^)(void))completion
|
|
{
|
|
UIUserInterfaceStyle style = self.overrideUserInterfaceStyle;
|
|
if (style == UIUserInterfaceStyleUnspecified) {
|
|
UIUserInterfaceStyle overriddenStyle = RCTKeyWindow().overrideUserInterfaceStyle;
|
|
style = overriddenStyle ? overriddenStyle : UIUserInterfaceStyleUnspecified;
|
|
}
|
|
|
|
self.overrideUserInterfaceStyle = style;
|
|
|
|
[self.alertWindow makeKeyAndVisible];
|
|
[self.alertWindow.rootViewController presentViewController:self animated:animated completion:completion];
|
|
}
|
|
|
|
- (void)hide
|
|
{
|
|
[_alertWindow setHidden:YES];
|
|
|
|
_alertWindow.windowScene = nil;
|
|
|
|
_alertWindow = nil;
|
|
}
|
|
|
|
@end
|