56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import { Text, View } from 'react-native';
|
|
import Touchable from 'react-native-platform-touchable';
|
|
import FastImage from 'react-native-fast-image';
|
|
|
|
import { textParser } from '../utils';
|
|
import { CustomIcon } from '../../CustomIcon';
|
|
import styles from './styles';
|
|
import { IItemData } from '.';
|
|
import { useTheme } from '../../../theme';
|
|
|
|
interface IChip {
|
|
item: IItemData;
|
|
onSelect: (item: IItemData) => void;
|
|
style?: object;
|
|
}
|
|
|
|
interface IChips {
|
|
items: IItemData[];
|
|
onSelect: (item: IItemData) => void;
|
|
style?: object;
|
|
}
|
|
|
|
const keyExtractor = (item: IItemData) => item.value.toString();
|
|
|
|
const Chip = ({ item, onSelect, style }: IChip) => {
|
|
const { colors } = useTheme();
|
|
return (
|
|
<Touchable
|
|
key={item.value}
|
|
onPress={() => onSelect(item)}
|
|
style={[styles.chip, { backgroundColor: colors.auxiliaryBackground }, style]}
|
|
background={Touchable.Ripple(colors.bannerBackground)}
|
|
>
|
|
<>
|
|
{item.imageUrl ? <FastImage style={styles.chipImage} source={{ uri: item.imageUrl }} /> : null}
|
|
<Text numberOfLines={1} style={[styles.chipText, { color: colors.titleText }]}>
|
|
{textParser([item.text])}
|
|
</Text>
|
|
<CustomIcon name='close' size={16} color={colors.auxiliaryText} />
|
|
</>
|
|
</Touchable>
|
|
);
|
|
};
|
|
Chip.propTypes = {};
|
|
|
|
const Chips = ({ items, onSelect, style }: IChips) => (
|
|
<View style={styles.chips}>
|
|
{items.map(item => (
|
|
<Chip key={keyExtractor(item)} item={item} onSelect={onSelect} style={style} />
|
|
))}
|
|
</View>
|
|
);
|
|
|
|
export default Chips;
|