react-native-macos/Libraries/Utilities/Platform.ios.js

55 строки
1.1 KiB
JavaScript

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow
*/
'use strict';
import NativePlatformConstantsIOS from './NativePlatformConstantsIOS';
export type PlatformSelectSpec<D, I> = {
default?: D,
ios?: I,
};
const Platform = {
__constants: null,
OS: 'ios',
get Version() {
return this.constants.osVersion;
},
get constants() {
if (this.__constants == null) {
this.__constants = NativePlatformConstantsIOS.getConstants();
}
return this.__constants;
},
get isPad() {
return this.constants.interfaceIdiom === 'pad';
},
/**
* Deprecated, use `isTV` instead.
*/
get isTVOS() {
return Platform.isTV;
},
get isTV() {
return this.constants.interfaceIdiom === 'tv';
},
get isTesting(): boolean {
if (__DEV__) {
return this.constants.isTesting;
}
return false;
},
select: <D, I>(spec: PlatformSelectSpec<D, I>): D | I =>
'ios' in spec ? spec.ios : spec.default,
};
module.exports = Platform;