2015-01-29 17:10:49 -08:00
|
|
|
/**
|
2015-03-23 15:07:33 -07:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*
|
|
|
|
* @providesModule Platform
|
2015-03-24 09:26:16 -07:00
|
|
|
* @flow
|
2015-03-23 15:07:33 -07:00
|
|
|
*/
|
2015-01-29 17:10:49 -08:00
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-02-22 14:54:11 -08:00
|
|
|
const NativeModules = require('NativeModules');
|
|
|
|
|
2016-12-19 06:26:07 -08:00
|
|
|
const Platform = {
|
2015-01-29 17:10:49 -08:00
|
|
|
OS: 'ios',
|
2016-10-27 04:17:41 -07:00
|
|
|
get Version() {
|
2017-02-22 14:54:11 -08:00
|
|
|
const constants = NativeModules.PlatformConstants;
|
|
|
|
return constants && constants.osVersion;
|
|
|
|
},
|
|
|
|
get isPad() {
|
|
|
|
const constants = NativeModules.PlatformConstants;
|
|
|
|
return constants ? constants.interfaceIdiom === 'pad' : false;
|
2016-12-19 06:26:07 -08:00
|
|
|
},
|
|
|
|
get isTVOS() {
|
2017-02-22 14:54:11 -08:00
|
|
|
const constants = NativeModules.PlatformConstants;
|
|
|
|
return constants ? constants.interfaceIdiom === 'tv' : false;
|
2016-10-27 04:17:41 -07:00
|
|
|
},
|
2017-01-18 12:24:53 -08:00
|
|
|
get isTesting(): boolean {
|
2017-02-22 14:54:11 -08:00
|
|
|
const constants = NativeModules.PlatformConstants;
|
2017-01-18 12:24:53 -08:00
|
|
|
return constants && constants.isTesting;
|
|
|
|
},
|
2017-02-07 04:26:45 -08:00
|
|
|
select: (obj: Object) => 'ios' in obj ? obj.ios : obj.default,
|
2015-01-29 17:10:49 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Platform;
|