* Add linter rules for import order and type member delimiters * Remove unneeded group * Group all app/* imports before the internal imports * Move app/ imports before parent imports * Separate @node_modules imports into a different group * Substitute app paths by aliases * Fix @node_modules import order and add test related modules * Add aliases for types and test, and group import types
77 lines
1.9 KiB
JavaScript
77 lines
1.9 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import PropTypes from 'prop-types';
|
|
import React, {PureComponent} from 'react';
|
|
import {
|
|
Keyboard,
|
|
Platform,
|
|
StyleSheet,
|
|
View,
|
|
} from 'react-native';
|
|
|
|
export default class KeyboardLayout extends PureComponent {
|
|
static propTypes = {
|
|
children: PropTypes.node,
|
|
style: PropTypes.oneOfType([PropTypes.object, PropTypes.number, PropTypes.array]),
|
|
testID: PropTypes.string,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.subscriptions = [];
|
|
this.state = {
|
|
keyboardHeight: 0,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
if (Platform.OS === 'ios') {
|
|
this.subscriptions = [
|
|
Keyboard.addListener('keyboardWillShow', this.onKeyboardWillShow),
|
|
Keyboard.addListener('keyboardWillHide', this.onKeyboardWillHide),
|
|
];
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.subscriptions.forEach((sub) => sub.remove());
|
|
}
|
|
|
|
onKeyboardWillHide = () => {
|
|
this.setState({
|
|
keyboardHeight: 0,
|
|
});
|
|
};
|
|
|
|
onKeyboardWillShow = (e) => {
|
|
this.setState({
|
|
keyboardHeight: e?.endCoordinates?.height || 0,
|
|
});
|
|
};
|
|
|
|
render() {
|
|
const layoutStyle = [this.props.style, style.keyboardLayout];
|
|
|
|
if (Platform.OS === 'ios') {
|
|
// iOS doesn't resize the app automatically
|
|
layoutStyle.push({paddingBottom: this.state.keyboardHeight});
|
|
}
|
|
|
|
return (
|
|
<View
|
|
style={layoutStyle}
|
|
testID={this.props.testID}
|
|
>
|
|
{this.props.children}
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const style = StyleSheet.create({
|
|
keyboardLayout: {
|
|
position: 'relative',
|
|
flex: 1,
|
|
},
|
|
});
|