PHP WebShell

Текущая директория: /usr/lib/node_modules/bitgo/node_modules/react-native/React/DevSupport

Просмотр файла: RCTInspectorUtils.mm

/*
 * 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 "RCTInspectorUtils.h"

#import <React/RCTConstants.h>
#import <React/RCTVersion.h>
#import <UIKit/UIKit.h>

@implementation CommonHostMetadata
@end

@implementation RCTInspectorUtils

+ (CommonHostMetadata *)getHostMetadata
{
#if TARGET_OS_IPHONE
  UIDevice *device = [UIDevice currentDevice];
  NSString *deviceName = [device name];
#else
  // macOS does not support UIDevice. Use System Configuration. This API
  // returns a nullable value, but is non-blocking (compared with
  // `[NSHost currentHost]`) and is ideal since deviceName is optional.
  NSString *deviceName = (__bridge NSString *)SCDynamicStoreCopyComputerName(nil, nil);
#endif // TARGET_OS_IPHONE

  auto version = RCTGetReactNativeVersion();

  CommonHostMetadata *metadata = [[CommonHostMetadata alloc] init];

  metadata.appDisplayName = [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString *)kCFBundleNameKey];
  metadata.appIdentifier = [[NSBundle mainBundle] bundleIdentifier];
  metadata.platform = RCTPlatformName;
  metadata.deviceName = deviceName;
  metadata.reactNativeVersion = [NSString stringWithFormat:@"%i.%i.%i%@",
                                                           [version[@"major"] intValue],
                                                           [version[@"minor"] intValue],
                                                           [version[@"patch"] intValue],
                                                           [version[@"prerelease"] isKindOfClass:[NSNull class]]
                                                               ? @""
                                                               : [@"-" stringByAppendingString:version[@"prerelease"]]];

  return metadata;
}

@end

Выполнить команду


Для локальной разработки. Не используйте в интернете!