mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
91f139b941
Reviewed By: panagosg7 Differential Revision: D16657770 fbshipit-source-id: 4e260842c838a35317515044c54ccf55a083da33
67 lines
1.4 KiB
JavaScript
67 lines
1.4 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(): $FlowFixMe {
|
|
return this.constants.osVersion;
|
|
},
|
|
get constants(): {|
|
|
forceTouchAvailable: boolean,
|
|
interfaceIdiom: string,
|
|
isTesting: boolean,
|
|
osVersion: string,
|
|
reactNativeVersion: {|
|
|
major: number,
|
|
minor: number,
|
|
patch: number,
|
|
prerelease: ?number,
|
|
|},
|
|
systemName: string,
|
|
|} {
|
|
if (this.__constants == null) {
|
|
this.__constants = NativePlatformConstantsIOS.getConstants();
|
|
}
|
|
return this.__constants;
|
|
},
|
|
get isPad(): boolean {
|
|
return this.constants.interfaceIdiom === 'pad';
|
|
},
|
|
/**
|
|
* Deprecated, use `isTV` instead.
|
|
*/
|
|
get isTVOS(): boolean {
|
|
return Platform.isTV;
|
|
},
|
|
get isTV(): boolean {
|
|
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;
|