Files
react-native/Libraries/Utilities/Platform.ios.js
T
luancurti d66931987a Fix platform ios get version type (#26639)
Summary:
Fix flow type platform ios get version

## Changelog

[INTERNAL] [FIXED] - Fix flow type platform ios get version

## Test Plan
Pull Request resolved: https://github.com/facebook/react-native/pull/26639

Differential Revision: D17743074

Pulled By: TheSavior

fbshipit-source-id: de97c612dbf615a8ede1905cb158f258c9ce5737
2019-10-03 12:29:47 -07:00

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(): string {
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;