2020-02-11 14:01:35 +00:00
|
|
|
import React from 'react';
|
2020-03-30 19:50:27 +00:00
|
|
|
import { Text, View } from 'react-native';
|
2020-02-11 14:01:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Touchable from 'react-native-platform-touchable';
|
2020-07-17 17:39:06 +00:00
|
|
|
import FastImage from '@rocket.chat/react-native-fast-image';
|
2020-02-11 14:01:35 +00:00
|
|
|
|
|
|
|
import { themes } from '../../../constants/colors';
|
|
|
|
import { textParser } from '../utils';
|
|
|
|
import { CustomIcon } from '../../../lib/Icons';
|
|
|
|
|
|
|
|
import styles from './styles';
|
|
|
|
|
|
|
|
const keyExtractor = item => item.value.toString();
|
|
|
|
|
2020-05-08 17:36:10 +00:00
|
|
|
const Chip = ({
|
|
|
|
item, onSelect, style, theme
|
|
|
|
}) => (
|
2020-02-11 14:01:35 +00:00
|
|
|
<Touchable
|
|
|
|
key={item.value}
|
|
|
|
onPress={() => onSelect(item)}
|
2020-05-08 17:36:10 +00:00
|
|
|
style={[styles.chip, { backgroundColor: themes[theme].auxiliaryBackground }, style]}
|
2020-02-11 14:01:35 +00:00
|
|
|
background={Touchable.Ripple(themes[theme].bannerBackground)}
|
|
|
|
>
|
|
|
|
<>
|
2020-03-30 19:50:27 +00:00
|
|
|
{item.imageUrl ? <FastImage style={styles.chipImage} source={{ uri: item.imageUrl }} /> : null}
|
2020-03-06 14:19:03 +00:00
|
|
|
<Text numberOfLines={1} style={[styles.chipText, { color: themes[theme].titleText }]}>{textParser([item.text])}</Text>
|
2020-07-27 19:53:33 +00:00
|
|
|
<CustomIcon name='close' size={16} color={themes[theme].auxiliaryText} />
|
2020-02-11 14:01:35 +00:00
|
|
|
</>
|
|
|
|
</Touchable>
|
|
|
|
);
|
|
|
|
Chip.propTypes = {
|
|
|
|
item: PropTypes.object,
|
|
|
|
onSelect: PropTypes.func,
|
2020-05-08 17:36:10 +00:00
|
|
|
style: PropTypes.object,
|
2020-02-11 14:01:35 +00:00
|
|
|
theme: PropTypes.string
|
|
|
|
};
|
|
|
|
|
2020-05-08 17:36:10 +00:00
|
|
|
const Chips = ({
|
|
|
|
items, onSelect, style, theme
|
|
|
|
}) => (
|
2020-02-11 14:01:35 +00:00
|
|
|
<View style={styles.chips}>
|
2020-05-08 17:36:10 +00:00
|
|
|
{items.map(item => <Chip key={keyExtractor(item)} item={item} onSelect={onSelect} style={style} theme={theme} />)}
|
2020-02-11 14:01:35 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
Chips.propTypes = {
|
|
|
|
items: PropTypes.array,
|
|
|
|
onSelect: PropTypes.func,
|
2020-05-08 17:36:10 +00:00
|
|
|
style: PropTypes.object,
|
2020-02-11 14:01:35 +00:00
|
|
|
theme: PropTypes.string
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Chips;
|