[FIX] Navigation object undefined when tapping sidebar's user header on tablet (#2259)

This commit is contained in:
Diego Mello 2020-07-08 16:40:10 -03:00 committed by GitHub
parent b8f87f7006
commit afb0707028
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 2 deletions

View File

@ -144,6 +144,14 @@ class Sidebar extends Component {
return state?.routeNames[state?.index];
}
onPressUser = () => {
const { navigation, isMasterDetail } = this.props;
if (isMasterDetail) {
return;
}
navigation.closeDrawer();
}
renderAdmin = () => {
const { isAdmin } = this.state;
const { theme, isMasterDetail } = this.props;
@ -210,7 +218,7 @@ class Sidebar extends Component {
render() {
const {
user, Site_Name, baseUrl, useRealName, allowStatusMessage, isMasterDetail, theme, navigation
user, Site_Name, baseUrl, useRealName, allowStatusMessage, isMasterDetail, theme
} = this.props;
if (!user) {
@ -229,7 +237,7 @@ class Sidebar extends Component {
]}
{...scrollPersistTaps}
>
<TouchableWithoutFeedback onPress={() => navigation.closeDrawer()} testID='sidebar-close-drawer'>
<TouchableWithoutFeedback onPress={this.onPressUser} testID='sidebar-close-drawer'>
<View style={styles.header} theme={theme}>
<Avatar
text={user.username}