package.json
{
"name": "MakeItCluster",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"react": "15.4.1",
"react-native": "0.39.2",
"react-native-orientation-listener": "0.0.4",
"react-native-vector-icons": "^3.0.0"
},
"devDependencies": {
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "18.1.0",
"react-test-renderer": "15.4.1"
},
"jest": {
"preset": "react-native"
}
}
Component:
'use strict';
import React from 'react';
var Orientation = require('react-native-orientation-listener');
var Item = React.createClass({
componentWillMount: function() {
this._maintainDimensions();
},
render: function() {
// ...
},
_maintainDimensions: function() {
console.log(Orientation);
Orientation.getOrientation(function(err, orientation) {
// doing something here
}.bind(this));
}
});
module.exports = Item;
When I print to console the value of "Orientation" I see:
{
addListener:addListener(callback)
getOrientation: getOrientation(callback)
removeListener: removeListener(listener)
__proto__: Object
}
But on the next line when I call Orientation.getOrientation(), Orientation is undefined!
I am using it in different ways and its working fine for me, please check code below: