- 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>
148 lines
3.7 KiB
Plaintext
148 lines
3.7 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 "RCTAppearance.h"
|
|
|
|
#import <FBReactNativeSpec/FBReactNativeSpec.h>
|
|
#import <React/RCTConstants.h>
|
|
#import <React/RCTEventEmitter.h>
|
|
#import <React/RCTUtils.h>
|
|
|
|
#import "CoreModulesPlugins.h"
|
|
|
|
using namespace facebook::react;
|
|
|
|
NSString *const RCTAppearanceColorSchemeLight = @"light";
|
|
NSString *const RCTAppearanceColorSchemeDark = @"dark";
|
|
|
|
static BOOL sAppearancePreferenceEnabled = YES;
|
|
void RCTEnableAppearancePreference(BOOL enabled)
|
|
{
|
|
sAppearancePreferenceEnabled = enabled;
|
|
}
|
|
|
|
static NSString *sColorSchemeOverride = nil;
|
|
void RCTOverrideAppearancePreference(NSString *const colorSchemeOverride)
|
|
{
|
|
sColorSchemeOverride = colorSchemeOverride;
|
|
}
|
|
|
|
NSString *RCTCurrentOverrideAppearancePreference()
|
|
{
|
|
return sColorSchemeOverride;
|
|
}
|
|
|
|
NSString *RCTColorSchemePreference(UITraitCollection *traitCollection)
|
|
{
|
|
static NSDictionary *appearances;
|
|
static dispatch_once_t onceToken;
|
|
|
|
if (sColorSchemeOverride) {
|
|
return sColorSchemeOverride;
|
|
}
|
|
|
|
dispatch_once(&onceToken, ^{
|
|
appearances = @{
|
|
@(UIUserInterfaceStyleLight) : RCTAppearanceColorSchemeLight,
|
|
@(UIUserInterfaceStyleDark) : RCTAppearanceColorSchemeDark
|
|
};
|
|
});
|
|
|
|
if (!sAppearancePreferenceEnabled) {
|
|
// Return the default if the app doesn't allow different color schemes.
|
|
return RCTAppearanceColorSchemeLight;
|
|
}
|
|
|
|
return appearances[@(traitCollection.userInterfaceStyle)] ?: RCTAppearanceColorSchemeLight;
|
|
}
|
|
|
|
@interface RCTAppearance () <NativeAppearanceSpec>
|
|
@end
|
|
|
|
@implementation RCTAppearance {
|
|
NSString *_currentColorScheme;
|
|
}
|
|
|
|
- (instancetype)init
|
|
{
|
|
if ((self = [super init])) {
|
|
UITraitCollection *traitCollection = RCTKeyWindow().traitCollection;
|
|
_currentColorScheme = RCTColorSchemePreference(traitCollection);
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(appearanceChanged:)
|
|
name:RCTUserInterfaceStyleDidChangeNotification
|
|
object:nil];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
RCT_EXPORT_MODULE(Appearance)
|
|
|
|
+ (BOOL)requiresMainQueueSetup
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (dispatch_queue_t)methodQueue
|
|
{
|
|
return dispatch_get_main_queue();
|
|
}
|
|
|
|
- (std::shared_ptr<TurboModule>)getTurboModule:(const ObjCTurboModule::InitParams &)params
|
|
{
|
|
return std::make_shared<NativeAppearanceSpecJSI>(params);
|
|
}
|
|
|
|
RCT_EXPORT_METHOD(setColorScheme : (NSString *)style)
|
|
{
|
|
UIUserInterfaceStyle userInterfaceStyle = [RCTConvert UIUserInterfaceStyle:style];
|
|
NSArray<__kindof UIWindow *> *windows = RCTSharedApplication().windows;
|
|
|
|
for (UIWindow *window in windows) {
|
|
window.overrideUserInterfaceStyle = userInterfaceStyle;
|
|
}
|
|
}
|
|
|
|
RCT_EXPORT_SYNCHRONOUS_TYPED_METHOD(NSString *, getColorScheme)
|
|
{
|
|
return _currentColorScheme;
|
|
}
|
|
|
|
- (void)appearanceChanged:(NSNotification *)notification
|
|
{
|
|
NSDictionary *userInfo = [notification userInfo];
|
|
UITraitCollection *traitCollection = nil;
|
|
if (userInfo) {
|
|
traitCollection = userInfo[RCTUserInterfaceStyleDidChangeNotificationTraitCollectionKey];
|
|
}
|
|
NSString *newColorScheme = RCTColorSchemePreference(traitCollection);
|
|
if (![_currentColorScheme isEqualToString:newColorScheme]) {
|
|
_currentColorScheme = newColorScheme;
|
|
[self sendEventWithName:@"appearanceChanged" body:@{@"colorScheme" : newColorScheme}];
|
|
}
|
|
}
|
|
|
|
#pragma mark - RCTEventEmitter
|
|
|
|
- (NSArray<NSString *> *)supportedEvents
|
|
{
|
|
return @[ @"appearanceChanged" ];
|
|
}
|
|
|
|
- (void)invalidate
|
|
{
|
|
[super invalidate];
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
}
|
|
|
|
@end
|
|
|
|
Class RCTAppearanceCls(void)
|
|
{
|
|
return RCTAppearance.class;
|
|
}
|