* Update dependencies
* Fix lint, use npm@6
* Fix unit tests
* Dowgrade Fastlane
* Fix Fastlane script
* use android:api-29-node ci image
* Infer gradle json file from apk output folder
* Fastlane to Parse new version of gradle output-metadata.json
(cherry picked from commit f8a0f29237)
Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
29 lines
794 B
JavaScript
29 lines
794 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import {TouchableOpacity} from 'react-native';
|
|
|
|
import CustomPropTypes from '@constants/custom_prop_types';
|
|
|
|
export default class ConditionalTouchable extends React.PureComponent {
|
|
static propTypes = {
|
|
touchable: PropTypes.bool,
|
|
children: CustomPropTypes.Children,
|
|
};
|
|
|
|
render() {
|
|
const {touchable, children, ...otherProps} = this.props;
|
|
|
|
if (touchable) {
|
|
return (
|
|
<TouchableOpacity {...otherProps}>
|
|
{children}
|
|
</TouchableOpacity>
|
|
);
|
|
}
|
|
|
|
return React.Children.only(children);
|
|
}
|
|
}
|