From f1af15c7f38178fb8a3576c8af92f828dea8a0ed Mon Sep 17 00:00:00 2001 From: Shravya Ramesh Date: Wed, 19 May 2021 16:40:43 -0700 Subject: Add tagg uiser list item --- src/components/common/TaggUserSelectionCell.tsx | 62 +++++++++++++++++++++++++ src/components/common/index.ts | 1 + 2 files changed, 63 insertions(+) create mode 100644 src/components/common/TaggUserSelectionCell.tsx (limited to 'src') diff --git a/src/components/common/TaggUserSelectionCell.tsx b/src/components/common/TaggUserSelectionCell.tsx new file mode 100644 index 00000000..88382119 --- /dev/null +++ b/src/components/common/TaggUserSelectionCell.tsx @@ -0,0 +1,62 @@ +import React, {useState} from 'react'; +import {StyleSheet, View} from 'react-native'; +import {ProfilePreview} from '..'; +import {ProfilePreviewType, ScreenType} from '../../types'; +import {SCREEN_WIDTH} from '../../utils'; +import TaggRadioButton from './TaggRadioButton'; + +interface TaggUserSelectionCellProps { + item: ProfilePreviewType; + selectedUsers: ProfilePreviewType[]; + setSelectedUsers: Function; +} +const TaggUserSelectionCell: React.FC = ({ + item, + selectedUsers, + setSelectedUsers, +}) => { + const [pressed, setPressed] = useState(false); + + const handlePress = () => { + // Add to selected list pf users + if (pressed === false) { + setSelectedUsers([...selectedUsers, item]); + setPressed(true); + } + // Remove item from selected list of users + else { + const filteredSelection = selectedUsers.filter( + (user) => user.id !== item.id, + ); + setSelectedUsers(filteredSelection); + setPressed(false); + } + }; + return ( + + + + + + + ); +}; + +export default TaggUserSelectionCell; + +const styles = StyleSheet.create({ + container: { + marginHorizontal: '3%', + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'center', + }, +}); diff --git a/src/components/common/index.ts b/src/components/common/index.ts index 48abb8b8..44edbe5f 100644 --- a/src/components/common/index.ts +++ b/src/components/common/index.ts @@ -27,3 +27,4 @@ export {default as Avatar} from './Avatar'; export {default as TaggTypeahead} from './TaggTypeahead'; export {default as TaggUserRowCell} from './TaggUserRowCell'; export {default as LikeButton} from './LikeButton'; +export {default as TaggUserSelectionCell} from './TaggUserSelectionCell'; -- cgit v1.2.3-70-g09d2