2015-01-30 01:10:49 +00:00
|
|
|
/**
|
2015-03-23 22:07:33 +00: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 16:26:16 +00:00
|
|
|
* @flow
|
2015-03-23 22:07:33 +00:00
|
|
|
*/
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-02-22 22:54:11 +00:00
|
|
|
const NativeModules = require('NativeModules');
|
|
|
|
|
2016-12-19 14:26:07 +00:00
|
|
|
const Platform = {
|
2015-01-30 01:10:49 +00:00
|
|
|
OS: 'ios',
|
2016-10-27 11:17:41 +00:00
|
|
|
get Version() {
|
2017-02-22 22:54:11 +00:00
|
|
|
const constants = NativeModules.PlatformConstants;
|
|
|
|
return constants && constants.osVersion;
|
|
|
|
},
|
|
|
|
get isPad() {
|
|
|
|
const constants = NativeModules.PlatformConstants;
|
|
|
|
return constants ? constants.interfaceIdiom === 'pad' : false;
|
2016-12-19 14:26:07 +00:00
|
|
|
},
|
|
|
|
get isTVOS() {
|
2017-02-22 22:54:11 +00:00
|
|
|
const constants = NativeModules.PlatformConstants;
|
|
|
|
return constants ? constants.interfaceIdiom === 'tv' : false;
|
2016-10-27 11:17:41 +00:00
|
|
|
},
|
2017-01-18 20:24:53 +00:00
|
|
|
get isTesting(): boolean {
|
2017-02-22 22:54:11 +00:00
|
|
|
const constants = NativeModules.PlatformConstants;
|
2017-01-18 20:24:53 +00:00
|
|
|
return constants && constants.isTesting;
|
|
|
|
},
|
2017-02-07 12:26:45 +00:00
|
|
|
select: (obj: Object) => 'ios' in obj ? obj.ios : obj.default,
|
2015-01-30 01:10:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Platform;
|