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