Farmer.js (11649B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | import { useContext, useState, useRef } from "react"; import { Alert, ScrollView, Text, TextInput, TouchableOpacity, View, } from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; import ScreenHeader from "../components/ScreenHeader"; import ActionButton from "../components/ActionButton"; import Scanner from "../components/Scanner"; import LocationPicker from "../components/LocationPicker"; import QRModal from "../components/QRModal"; import ImageUploader from "../components/ImageUploader"; import DatePicker from "../components/DatePicker"; import TransferOwnershipForm from "../components/TransferOwnershipForm"; import { api } from "../services/api"; import styles from "../styles"; import { AuthContext } from "../AuthContext"; export default function FarmerScreen({ navigation, route }) { const { user } = useContext(AuthContext); const userId = route.params?.userId || user?.id; const token = user?.token; const [active, setActive] = useState(null); const imageUploaderRef = useRef(null); const [produceId, setProduceId] = useState(""); const [location, setLocation] = useState(""); const [pricePerUnit, setPricePerUnit] = useState(""); const [storageConditions, setStorageConditions] = useState(""); const [certification, setCertification] = useState(""); const [cropType, setCropType] = useState(""); const [qty, setQty] = useState(""); const [qtyUnit, setQtyUnit] = useState("KG"); const [harvestDate, setHarvestDate] = useState(""); const [quality, setQuality] = useState(""); const [expiryDate, setExpiryDate] = useState(""); const [splitQty, setSplitQty] = useState(""); const [qrVisible, setQrVisible] = useState(false); const [lastProduceId, setLastProduceId] = useState(null); const resetRegisterForm = () => { setCropType(""); setQty(""); setQtyUnit("KG"); setPricePerUnit(""); setHarvestDate(""); setQuality(""); setExpiryDate(""); setStorageConditions(""); setCertification(""); setLocation(""); imageUploaderRef.current?.reset(); }; const resetCommon = () => { setProduceId(""); }; const registerProduce = async () => { try { const imageUrl = await imageUploaderRef.current?.upload(); const { produce } = await api.registerProduce( { farmerId: userId, details: { imageUrl, cropType, qty: parseFloat(qty) || 0, qtyUnit, pricePerUnit: parseFloat(pricePerUnit) || 0, harvestDate, quality, expiryDate, storageConditions: storageConditions ? storageConditions.split(",").map((c) => c.trim()) : [], certification: certification ? certification.split(",").map((c) => c.trim()) : [], location, }, }, token ); setLastProduceId(produce.id); setQrVisible(true); resetRegisterForm(); setActive(null); } catch (err) { Alert.alert("Error", err.message); } }; const updateDetails = async () => { if (!produceId) return Alert.alert("Error", "Please enter Produce ID"); try { await api.updateDetails( { produceId, actorId: userId, details: { pricePerUnit: pricePerUnit ? parseFloat(pricePerUnit) : undefined, storageConditions: storageConditions ? storageConditions.split(",").map((c) => c.trim()) : undefined, certification: certification ? certification.split(",").map((c) => c.trim()) : undefined, }, }, token ); Alert.alert("Updated", "Produce details updated successfully"); resetCommon(); setPricePerUnit(""); setStorageConditions(""); setCertification(""); setActive(null); } catch (err) { Alert.alert("Error", err.message); } }; const splitProduce = async () => { if (!produceId || !splitQty) return Alert.alert("Error", "Please enter Produce ID and quantity"); try { await api.splitProduce( { produceId, qty: parseFloat(splitQty), ownerId: userId, }, token ); Alert.alert("Split", "Produce split successfully"); setSplitQty(""); resetCommon(); setActive(null); } catch (err) { Alert.alert("Error", err.message); } }; const updateLocation = async () => { if (!produceId || !location) return Alert.alert("Error", "Please enter Produce ID and location"); try { await api.updateLocation( { produceId, actorId: userId, newLocation: location, }, token ); Alert.alert("Moved", "Location updated successfully"); resetCommon(); setLocation(""); setActive(null); } catch (err) { Alert.alert("Error", err.message); } }; const transferOwnership = async ({ produceId, newOwnerId, qty, salePrice, onComplete, }) => { if (!produceId || !newOwnerId || !qty) return Alert.alert( "Error", "Please provide Produce ID, New Owner ID, and Quantity." ); try { await api.transferOwnership( { produceId, newOwnerId, qty: parseFloat(qty), salePrice: salePrice ? parseFloat(salePrice) : 0, }, token ); Alert.alert("Transferred", "Ownership transferred successfully"); onComplete(); setActive(null); } catch (err) { Alert.alert("Error", err.message); } }; return ( <SafeAreaView style={styles.container}> <ScreenHeader title="Farmer Dashboard" navigation={navigation} role="Farmer" /> <ScrollView> <View style={styles.actionGrid}> <ActionButton icon="plus" text="Register Produce" onPress={() => setActive("register")} /> <ActionButton icon="update" text="Update Details" onPress={() => setActive("update")} /> <ActionButton icon="call-split" text="Split Produce" onPress={() => setActive("split")} /> <ActionButton icon="map-marker" text="Update Location" onPress={() => setActive("location")} /> <ActionButton icon="cash" text="Transfer Ownership" onPress={() => setActive("transfer")} /> </View> {active === "register" && ( <View> <TextInput style={styles.input} placeholder="Crop Type" value={cropType} onChangeText={setCropType} /> <TextInput style={styles.input} placeholder="Quantity" keyboardType="numeric" value={qty} onChangeText={setQty} /> <TextInput style={styles.input} placeholder="Unit (KG/Number)" value={qtyUnit} onChangeText={setQtyUnit} /> <TextInput style={styles.input} placeholder="Price Per Unit" keyboardType="numeric" value={pricePerUnit} onChangeText={setPricePerUnit} /> <DatePicker label="Harvest Date" value={harvestDate} onChange={setHarvestDate} /> <TextInput style={styles.input} placeholder="Quality" value={quality} onChangeText={setQuality} /> <DatePicker label="Expiry Date" value={expiryDate} onChange={setExpiryDate} /> <TextInput style={styles.input} placeholder="Storage Conditions (comma separated)" value={storageConditions} onChangeText={setStorageConditions} /> <TextInput style={styles.input} placeholder="Certifications (comma separated)" value={certification} onChangeText={setCertification} /> <LocationPicker value={location} onChange={setLocation} /> <ImageUploader ref={imageUploaderRef} token={token} /> <TouchableOpacity style={styles.primaryButton} onPress={registerProduce} > <Text style={styles.buttonText}>Register Produce</Text> </TouchableOpacity> </View> )} {active === "update" && ( <View> <Scanner value={produceId} onChange={setProduceId} /> <TextInput style={styles.input} placeholder="New Price Per Unit" keyboardType="numeric" value={pricePerUnit} onChangeText={setPricePerUnit} /> <TextInput style={styles.input} placeholder="Storage Conditions (comma separated)" value={storageConditions} onChangeText={setStorageConditions} /> <TextInput style={styles.input} placeholder="Certifications (comma separated)" value={certification} onChangeText={setCertification} /> <TouchableOpacity style={styles.primaryButton} onPress={updateDetails} > <Text style={styles.buttonText}>Update Details</Text> </TouchableOpacity> </View> )} {active === "split" && ( <View> <Scanner value={produceId} onChange={setProduceId} /> <TextInput style={styles.input} placeholder="Quantity to Split" keyboardType="numeric" value={splitQty} onChangeText={setSplitQty} /> <TouchableOpacity style={styles.primaryButton} onPress={splitProduce} > <Text style={styles.buttonText}>Split Produce</Text> </TouchableOpacity> </View> )} {active === "location" && ( <View> <Scanner value={produceId} onChange={setProduceId} /> <LocationPicker value={location} onChange={setLocation} /> <TouchableOpacity style={styles.primaryButton} onPress={updateLocation} > <Text style={styles.buttonText}>Update Location</Text> </TouchableOpacity> </View> )} {active === "transfer" && ( <TransferOwnershipForm onSubmit={transferOwnership} /> )} </ScrollView> <QRModal visible={qrVisible} onClose={() => setQrVisible(false)} value={lastProduceId || ""} /> <View style={{ padding: 12 }}> <TouchableOpacity style={styles.secondaryButton} onPress={() => navigation.navigate("Inventory", { userId: userId, role: "Farmer" }) } > <Text style={styles.secondaryButtonText}>View Inventory</Text> </TouchableOpacity> </View> </SafeAreaView> ); } |