mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 16:34:54 +00:00
172 lines
4.9 KiB
TypeScript
172 lines
4.9 KiB
TypeScript
import { Checkbox, Text, TouchableOpacity, View } from "react-native-ui-lib";
|
|
import React, { useEffect, useState } from "react";
|
|
import { AntDesign } from "@expo/vector-icons";
|
|
import { GroceryCategory, useGroceryContext } from "@/contexts/GroceryContext";
|
|
import EditGroceryFrequency from "./EditGroceryFrequency";
|
|
import EditGroceryItem from "./EditGroceryItem";
|
|
import { ImageBackground, StyleSheet } from "react-native";
|
|
import { IGrocery } from "@/hooks/firebase/types/groceryData";
|
|
import firestore from "@react-native-firebase/firestore";
|
|
import { UserProfile } from "@/hooks/firebase/types/profileTypes";
|
|
|
|
const GroceryItem = ({
|
|
item,
|
|
handleItemApproved,
|
|
}: {
|
|
item: IGrocery;
|
|
handleItemApproved: (id: string, changes: Partial<IGrocery>) => void;
|
|
}) => {
|
|
const { updateGroceryItem } = useGroceryContext();
|
|
|
|
const [openFreqEdit, setOpenFreqEdit] = useState<boolean>(false);
|
|
const [isEditingTitle, setIsEditingTitle] = useState<boolean>(false);
|
|
const [newTitle, setNewTitle] = useState<string>("");
|
|
const [category, setCategory] = useState<GroceryCategory>(
|
|
GroceryCategory.None
|
|
);
|
|
const [itemCreator, setItemCreator] = useState<UserProfile>(null);
|
|
|
|
const handleTitleChange = (newTitle: string) => {
|
|
updateGroceryItem({ id: item?.id, title: newTitle });
|
|
};
|
|
|
|
const handleCategoryChange = (newCategory: GroceryCategory) => {
|
|
updateGroceryItem({ id: item?.id, category: newCategory });
|
|
};
|
|
|
|
useEffect(() => {
|
|
setNewTitle(item.title);
|
|
|
|
getItemCreator(item?.creatorId);
|
|
}, []);
|
|
|
|
const getItemCreator = async (uid: string | undefined) => {
|
|
if (uid) {
|
|
const documentSnapshot = await firestore()
|
|
.collection("Profiles")
|
|
.doc(uid)
|
|
.get();
|
|
|
|
if (documentSnapshot.exists) {
|
|
setItemCreator(documentSnapshot.data() as UserProfile);
|
|
}
|
|
}
|
|
};
|
|
|
|
return (
|
|
<View
|
|
key={item.id}
|
|
style={{ borderRadius: 17, marginVertical: 5 }}
|
|
backgroundColor="white"
|
|
centerV
|
|
paddingH-13
|
|
paddingV-10
|
|
>
|
|
<View row spread>
|
|
<EditGroceryFrequency
|
|
visible={openFreqEdit}
|
|
key={item.id}
|
|
item={item}
|
|
onClose={() => {
|
|
setOpenFreqEdit(false);
|
|
}}
|
|
/>
|
|
{!isEditingTitle ? (
|
|
<View>
|
|
<TouchableOpacity onPress={() => setIsEditingTitle(true)}>
|
|
<Text text70T black style={styles.title}>
|
|
{item.title}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
) : (
|
|
<EditGroceryItem
|
|
editGrocery={{
|
|
id: item.id,
|
|
title: newTitle,
|
|
category: category,
|
|
setTitle: setNewTitle,
|
|
setCategory: setCategory,
|
|
closeEdit: setIsEditingTitle,
|
|
handleEditSubmit: updateGroceryItem
|
|
}}
|
|
/>
|
|
)}
|
|
{!item.approved ? (
|
|
<View row centerV marginB-10>
|
|
<AntDesign
|
|
name="check"
|
|
size={24}
|
|
style={{
|
|
color: item.approved ? "green" : "#aaaaaa",
|
|
marginRight: 15,
|
|
}}
|
|
onPress={() => {
|
|
handleItemApproved(item.id, { approved: true });
|
|
}}
|
|
/>
|
|
<AntDesign
|
|
name="close"
|
|
size={24}
|
|
style={{ color: item.approved ? "#aaaaaa" : "red" }}
|
|
onPress={() => {
|
|
handleItemApproved(item.id, { approved: false });
|
|
}}
|
|
/>
|
|
</View>
|
|
) : (
|
|
<Checkbox
|
|
value={item.bought}
|
|
containerStyle={styles.checkbox}
|
|
hitSlop={20}
|
|
onValueChange={() =>
|
|
updateGroceryItem({ id: item.id, bought: !item.bought })
|
|
}
|
|
/>
|
|
)}
|
|
</View>
|
|
{!item.approved && (
|
|
<View>
|
|
<View centerH>
|
|
<View height={0.7} backgroundColor="#e7e7e7" width={"98%"} />
|
|
</View>
|
|
<View paddingL-0 paddingT-12 flexS row centerV>
|
|
<ImageBackground
|
|
style={{
|
|
width: 22.36,
|
|
aspectRatio: 1,
|
|
borderRadius: 50,
|
|
backgroundColor: "red",
|
|
marginRight: 10,
|
|
overflow: 'hidden'
|
|
}}
|
|
source={require('../../../assets/images/child-picture.png')}
|
|
/>
|
|
<Text color="#858585" style={styles.authorTxt}>
|
|
Requested by {itemCreator?.firstName}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
)}
|
|
</View>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
authorTxt: { fontFamily: "Manrope_500Medium", fontSize: 12 },
|
|
checkbox: {
|
|
borderRadius: 50,
|
|
borderWidth: 0.7,
|
|
color: "#bfbfbf",
|
|
borderColor: "#bfbfbf",
|
|
width: 24.64,
|
|
aspectRatio: 1,
|
|
},
|
|
title: {
|
|
fontFamily: "Manrope_500Medium",
|
|
fontSize: 15,
|
|
},
|
|
});
|
|
|
|
export default GroceryItem;
|