* 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
135 lines
3.4 KiB
JavaScript
135 lines
3.4 KiB
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 {
|
|
Switch,
|
|
Text,
|
|
View,
|
|
} from 'react-native';
|
|
|
|
import CompassIcon from '@components/compass_icon';
|
|
import FormattedText from '@components/formatted_text';
|
|
import TouchableWithFeedback from '@components/touchable_with_feedback';
|
|
import {makeStyleSheetFromTheme} from '@utils/theme';
|
|
|
|
const createStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
container: {
|
|
backgroundColor: theme.centerChannelBg,
|
|
paddingHorizontal: 15,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
},
|
|
detail: {
|
|
marginHorizontal: 15,
|
|
color: 'rgba(0, 0, 0, 0.5)',
|
|
fontSize: 15,
|
|
},
|
|
label: {
|
|
flex: 1,
|
|
marginLeft: 6,
|
|
fontSize: 15,
|
|
fontWeight: '600',
|
|
paddingVertical: 15,
|
|
color: theme.buttonBg,
|
|
},
|
|
leftIcon: {
|
|
color: theme.buttonBg,
|
|
},
|
|
rightIcon: {
|
|
color: theme.centerChannelColor,
|
|
opacity: 0.7,
|
|
},
|
|
wrapper: {
|
|
backgroundColor: '#ddd',
|
|
},
|
|
};
|
|
});
|
|
|
|
function createTouchableComponent(children, action, testID) {
|
|
return (
|
|
<TouchableWithFeedback
|
|
onPress={action}
|
|
testID={testID}
|
|
>
|
|
{children}
|
|
</TouchableWithFeedback>
|
|
);
|
|
}
|
|
|
|
function userProfileRow(props) {
|
|
const {action, defaultMessage, detail, icon, textId, togglable, theme, iconSize, shouldRender = true, testID} = props;
|
|
|
|
if (!shouldRender) {
|
|
return null;
|
|
}
|
|
|
|
const style = createStyleSheet(theme);
|
|
|
|
const iconComponent = (
|
|
<CompassIcon
|
|
name={icon}
|
|
size={iconSize}
|
|
style={style.leftIcon}
|
|
/>
|
|
);
|
|
|
|
const RowComponent = (
|
|
<View
|
|
style={style.wrapper}
|
|
testID={`${testID}.row`}
|
|
>
|
|
<View style={style.container}>
|
|
{iconComponent}
|
|
<FormattedText
|
|
style={[style.label]}
|
|
id={textId}
|
|
defaultMessage={defaultMessage}
|
|
/>
|
|
<Text style={style.detail}>{detail}</Text>
|
|
{togglable &&
|
|
<Switch
|
|
onValueChange={action}
|
|
value={detail}
|
|
/>
|
|
}
|
|
</View>
|
|
</View>
|
|
);
|
|
|
|
if (togglable) {
|
|
return RowComponent;
|
|
}
|
|
|
|
return createTouchableComponent(RowComponent, action, testID);
|
|
}
|
|
|
|
userProfileRow.propTypes = {
|
|
action: PropTypes.func.isRequired,
|
|
defaultMessage: PropTypes.string.isRequired,
|
|
detail: PropTypes.oneOfType([
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
PropTypes.bool,
|
|
]),
|
|
icon: PropTypes.string.isRequired,
|
|
iconColor: PropTypes.string,
|
|
iconSize: PropTypes.number,
|
|
textId: PropTypes.string.isRequired,
|
|
togglable: PropTypes.bool,
|
|
textColor: PropTypes.string,
|
|
theme: PropTypes.object.isRequired,
|
|
testID: PropTypes.string,
|
|
};
|
|
|
|
userProfileRow.defaultProps = {
|
|
iconColor: 'rgba(0, 0, 0, 0.7)',
|
|
iconSize: 15,
|
|
textColor: '#000',
|
|
togglable: false,
|
|
testID: 'user_profile.row',
|
|
};
|
|
|
|
export default userProfileRow;
|