* 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>
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
/* eslint-disable new-cap */
|
|
|
|
import React, {PureComponent} from 'react';
|
|
import {TouchableNativeFeedback, TouchableOpacity, TouchableWithoutFeedback, View} from 'react-native';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import CustomPropTypes from '@constants/custom_prop_types';
|
|
|
|
export default class TouchableWithFeedbackAndroid extends PureComponent {
|
|
static propTypes = {
|
|
testID: PropTypes.string,
|
|
children: CustomPropTypes.Children,
|
|
underlayColor: PropTypes.string,
|
|
type: PropTypes.oneOf(['native', 'opacity', 'none']),
|
|
};
|
|
|
|
static defaultProps = {
|
|
type: 'native',
|
|
};
|
|
|
|
render() {
|
|
const {testID, children, underlayColor, type, ...props} = this.props;
|
|
|
|
switch (type) {
|
|
case 'native':
|
|
return (
|
|
<TouchableNativeFeedback
|
|
testID={testID}
|
|
{...props}
|
|
background={TouchableNativeFeedback.Ripple(underlayColor || '#000', false)}
|
|
>
|
|
<View>
|
|
{children}
|
|
</View>
|
|
</TouchableNativeFeedback>
|
|
);
|
|
case 'opacity':
|
|
return (
|
|
<TouchableOpacity
|
|
testID={testID}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</TouchableOpacity>
|
|
);
|
|
case 'none':
|
|
return (
|
|
<TouchableWithoutFeedback
|
|
testID={testID}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</TouchableWithoutFeedback>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|