react-navigation-tabs
Version:
Tab Navigation components for React Navigation
72 lines (61 loc) • 2.22 kB
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
import * as React from 'react';
import { Dimensions } from 'react-native';
import hoistNonReactStatic from 'hoist-non-react-statics';
export const isOrientationLandscape = ({
width,
height
}) => width > height;
export default function withDimensions(WrappedComponent) {
class EnhancedComponent extends React.Component {
constructor(props) {
super(props);
_defineProperty(this, "handleOrientationChange", ({
window
}) => {
const {
width,
height
} = window;
this.setState({
dimensions: {
width,
height
},
isLandscape: isOrientationLandscape({
width,
height
})
});
});
const {
width: _width,
height: _height
} = Dimensions.get('window');
this.state = {
dimensions: {
width: _width,
height: _height
},
isLandscape: isOrientationLandscape({
width: _width,
height: _height
})
};
}
componentDidMount() {
Dimensions.addEventListener('change', this.handleOrientationChange);
}
componentWillUnmount() {
Dimensions.removeEventListener('change', this.handleOrientationChange);
}
render() {
// @ts-ignore
return /*#__PURE__*/React.createElement(WrappedComponent, _extends({}, this.props, this.state));
}
} // @ts-ignore
_defineProperty(EnhancedComponent, "displayName", "withDimensions(".concat(WrappedComponent.displayName, ")"));
return hoistNonReactStatic(EnhancedComponent, WrappedComponent);
}
//# sourceMappingURL=withDimensions.js.map