2020-09-11 17:10:16 +00:00
|
|
|
import React from 'react';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { StyleSheet, Text, View } from 'react-native';
|
2020-09-11 17:10:16 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { BorderlessButton } from 'react-native-gesture-handler';
|
|
|
|
|
|
|
|
import { themes } from '../../../constants/colors';
|
|
|
|
import { CustomIcon } from '../../../lib/Icons';
|
|
|
|
import sharedStyles from '../../Styles';
|
|
|
|
import Touch from '../../../utils/touch';
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
height: 56,
|
|
|
|
paddingHorizontal: 15,
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
content: {
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'column'
|
|
|
|
},
|
|
|
|
server: {
|
|
|
|
...sharedStyles.textMedium,
|
|
|
|
fontSize: 16
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
const Item = ({ item, theme, onPress, onDelete }) => (
|
|
|
|
<Touch style={styles.container} onPress={() => onPress(item.url)} theme={theme} testID={`server-history-${item.url}`}>
|
2020-09-11 17:10:16 +00:00
|
|
|
<View style={styles.content}>
|
2021-09-13 20:41:05 +00:00
|
|
|
<Text numberOfLines={1} style={[styles.server, { color: themes[theme].bodyText }]}>
|
|
|
|
{item.url}
|
|
|
|
</Text>
|
|
|
|
<Text numberOfLines={1} style={[styles.username, { color: themes[theme].auxiliaryText }]}>
|
|
|
|
{item.username}
|
|
|
|
</Text>
|
2020-09-11 17:10:16 +00:00
|
|
|
</View>
|
2021-09-13 20:41:05 +00:00
|
|
|
<BorderlessButton onPress={() => onDelete(item)} testID={`server-history-delete-${item.url}`}>
|
2020-09-11 17:10:16 +00:00
|
|
|
<CustomIcon name='delete' size={24} color={themes[theme].auxiliaryText} />
|
|
|
|
</BorderlessButton>
|
|
|
|
</Touch>
|
|
|
|
);
|
|
|
|
|
|
|
|
Item.propTypes = {
|
|
|
|
item: PropTypes.object,
|
|
|
|
theme: PropTypes.string,
|
|
|
|
onPress: PropTypes.func,
|
|
|
|
onDelete: PropTypes.func
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Item;
|