Feat: fix add chantier (continuer la page)
This commit is contained in:
@@ -1,10 +1,8 @@
|
|||||||
import { useChantier } from "@/app/ContextChantier";
|
import { useChantier } from "@/app/ContextChantier";
|
||||||
import { Chantier } from "@/class/class";
|
import { Chantier } from "@/class/class";
|
||||||
import { getChantiers } from "@/services/ressourcesService";
|
import { getChantiers } from "@/services/ressourcesService";
|
||||||
import { useRouter } from "expo-router";
|
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import {
|
import {
|
||||||
ActivityIndicator,
|
|
||||||
Dimensions,
|
Dimensions,
|
||||||
Image,
|
Image,
|
||||||
Pressable,
|
Pressable,
|
||||||
@@ -31,37 +29,48 @@ const { width, height } = Dimensions.get("window");
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export default function SelectChantier() {
|
export default function SelectChantier(props: {
|
||||||
|
data?: any[];
|
||||||
|
multiple?: boolean;
|
||||||
|
selected?: string[] | string | null;
|
||||||
|
onChange?: (val: any) => void;
|
||||||
|
placeholder?: string;
|
||||||
|
}) {
|
||||||
|
const { data: propData, multiple = false, selected, onChange, placeholder } = props || {};
|
||||||
const { chantier, setChantier } = useChantier();
|
const { chantier, setChantier } = useChantier();
|
||||||
const [search, setSearch] = useState("");
|
const [search, setSearch] = useState("");
|
||||||
const [isOpen, setIsOpen] = useState(false);
|
const [isOpen, setIsOpen] = useState(false);
|
||||||
const [isLoaded, setIsLoaded] = useState(false);
|
const [chantiers, setChantiers] = useState<any[]>([]);
|
||||||
const [chantiers, setChantiers] = useState<Chantier[]>([]);
|
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
|
const AnimatedThemedView = Animated.createAnimatedComponent(ThemedView);
|
||||||
// cast to any to avoid strict Animated typing issues for custom props like `lvl`/`border`
|
const AnimatedThemedText = Animated.createAnimatedComponent(ThemedText);
|
||||||
const AnimatedThemedView: any = Animated.createAnimatedComponent(ThemedView as any);
|
const AnimatedThemedButton = Animated.createAnimatedComponent(ThemedButton);
|
||||||
const AnimatedThemedText: any = Animated.createAnimatedComponent(ThemedText as any);
|
const AnimatedThemedTextInput =
|
||||||
const AnimatedThemedButton: any = Animated.createAnimatedComponent(ThemedButton as any);
|
Animated.createAnimatedComponent(ThemedTextInput);
|
||||||
const AnimatedThemedTextInput: any = Animated.createAnimatedComponent(ThemedTextInput as any);
|
|
||||||
|
|
||||||
async function onPressOpen(){
|
async function onPressOpen(){
|
||||||
setIsLoaded(false);
|
|
||||||
setIsOpen(!isOpen);
|
setIsOpen(!isOpen);
|
||||||
if(!isOpen){
|
if(!isOpen){
|
||||||
const updatedChantiers = await getChantiers();
|
if (propData && propData.length) {
|
||||||
setIsLoaded(true);
|
setChantiers(propData as any[]);
|
||||||
setChantiers(updatedChantiers)
|
} else {
|
||||||
|
const updatedChantiers = await getChantiers();
|
||||||
|
setChantiers(updatedChantiers);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function onPressAddChantier(){
|
function onPressAddChantier(){
|
||||||
router.push('/(tabs)/ajoute_chantier')
|
|
||||||
setIsOpen(false)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
// If parent provided data, use it. Otherwise fetch chantiers.
|
||||||
|
if (propData && propData.length) {
|
||||||
|
setChantiers(propData as any[]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
async function loadChantiers() {
|
async function loadChantiers() {
|
||||||
const list = await getChantiers();
|
const list = await getChantiers();
|
||||||
setChantiers(list);
|
setChantiers(list);
|
||||||
@@ -70,22 +79,56 @@ export default function SelectChantier() {
|
|||||||
loadChantiers();
|
loadChantiers();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
function selectChantier(chantier: Chantier): void {
|
function getId(item: any) {
|
||||||
setChantier(chantier);
|
return (item && (item.id ?? item._id ?? item.uid ?? item.key)) ?? String(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getLabel(item: any) {
|
||||||
|
if (!item) return String(item);
|
||||||
|
if (item.adresse) return item.adresse;
|
||||||
|
if (item.nom) return item.nom;
|
||||||
|
if (item.name && item.last_name) return `${item.last_name} ${item.name}`;
|
||||||
|
if (item.name) return item.name;
|
||||||
|
if (item.label) return item.label;
|
||||||
|
if (typeof item === 'string') return item;
|
||||||
|
return JSON.stringify(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
function selectChantier(item: any): void {
|
||||||
|
const id = String(getId(item));
|
||||||
|
if (multiple) {
|
||||||
|
// for multiple selection toggle id in selected array
|
||||||
|
const current = Array.isArray(selected) ? [...selected] : [];
|
||||||
|
const idx = current.indexOf(id);
|
||||||
|
if (idx >= 0) current.splice(idx, 1);
|
||||||
|
else current.push(id);
|
||||||
|
onChange?.(current);
|
||||||
|
// keep menu open for multiple selection
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// single selection
|
||||||
|
if (onChange) {
|
||||||
|
onChange(id);
|
||||||
|
} else {
|
||||||
|
// fallback behavior for old usage: if selecting a Chantier, update context
|
||||||
|
setChantier(item as Chantier);
|
||||||
|
}
|
||||||
setIsOpen(false);
|
setIsOpen(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
const renderChantier = (chantier: Chantier, index: number) => {
|
const renderChantier = (item: any, index: number) => {
|
||||||
|
const label = getLabel(item);
|
||||||
|
const id = String(getId(item));
|
||||||
|
const isSelected = Array.isArray(selected) ? selected.includes(id) : selected === id;
|
||||||
return (
|
return (
|
||||||
<Pressable key={index} onPress={() => selectChantier(chantier)}>
|
<Pressable key={index} onPress={() => selectChantier(item)}>
|
||||||
<ThemedView lvl={4} style={styles.chantier}>
|
<ThemedView lvl={4} style={[styles.chantier, isSelected ? { borderWidth: 1 } : {}]}>
|
||||||
<View>
|
<View>
|
||||||
<Image source={{ uri:"https://cdn.discordapp.com/attachments/1425108443571945644/1427207643180826757/raw.png?ex=69392bb2&is=6937da32&hm=dcc09e76d3dca89d2418947b46efbd38673b9dc559027724b2e51d493b173bc9&" /*chantier.urlImg*/ }} style={styles.image} />
|
<Image source={{ uri: "https://cdn.discordapp.com/attachments/1425108443571945644/1427207643180826757/raw.png?ex=69392bb2&is=6937da32&hm=dcc09e76d3dca89d2418947b46efbd38673b9dc559027724b2e51d493b173bc9&" }} style={styles.image} />
|
||||||
</View>
|
</View>
|
||||||
<View>
|
<View>
|
||||||
<ThemedText>Adresse: {chantier.adresse}</ThemedText>
|
<ThemedText>{label}</ThemedText>
|
||||||
<ThemedText>Chef de chantier: {chantier.chef.last_name}{" "}{chantier.chef.name}</ThemedText>
|
|
||||||
<ThemedText>État: {chantier.etat}</ThemedText>
|
|
||||||
</View>
|
</View>
|
||||||
</ThemedView>
|
</ThemedView>
|
||||||
</Pressable>
|
</Pressable>
|
||||||
@@ -98,7 +141,19 @@ export default function SelectChantier() {
|
|||||||
<AnimatedThemedView layout={LinearTransition.duration(200)} lvl={2} shadow={true} style={styles.window}>
|
<AnimatedThemedView layout={LinearTransition.duration(200)} lvl={2} shadow={true} style={styles.window}>
|
||||||
<AnimatedThemedButton style={isOpen ? styles.buttonOpen : styles.buttonClose} lvl={isOpen ? 1 : 1} onPress={() => onPressOpen()}>
|
<AnimatedThemedButton style={isOpen ? styles.buttonOpen : styles.buttonClose} lvl={isOpen ? 1 : 1} onPress={() => onPressOpen()}>
|
||||||
<ThemedText style={styles.buttonText}>
|
<ThemedText style={styles.buttonText}>
|
||||||
{isOpen ? "Fermer" : (chantier!=null ? chantier.adresse : "Chantier")}
|
{isOpen
|
||||||
|
? "Fermer"
|
||||||
|
: (multiple
|
||||||
|
? (Array.isArray(selected) && selected.length ? `${selected.length} sélectionnés` : (placeholder ?? "Sélectionner"))
|
||||||
|
: (selected ? (() => {
|
||||||
|
// show label of selected single item if provided in propData
|
||||||
|
if (selected && propData) {
|
||||||
|
const found = propData.find((it: any) => String(getId(it)) === String(selected));
|
||||||
|
return found ? getLabel(found) : (chantier ? (chantier.adresse ?? getLabel(chantier)) : (placeholder ?? "Chantier"));
|
||||||
|
}
|
||||||
|
return chantier ? (chantier.adresse ?? getLabel(chantier)) : (placeholder ?? "Chantier");
|
||||||
|
})() : (placeholder ?? "Chantier"))
|
||||||
|
)}
|
||||||
</ThemedText>
|
</ThemedText>
|
||||||
</AnimatedThemedButton>
|
</AnimatedThemedButton>
|
||||||
{isOpen && (
|
{isOpen && (
|
||||||
@@ -111,16 +166,14 @@ export default function SelectChantier() {
|
|||||||
+
|
+
|
||||||
</ThemedText>
|
</ThemedText>
|
||||||
</ThemedButton>
|
</ThemedButton>
|
||||||
<View style={styles.list}>
|
|
||||||
{isLoaded?
|
<ThemedView lvl={2} style={styles.list}>
|
||||||
<ScrollView contentContainerStyle={styles.chantiersList}>
|
<ScrollView contentContainerStyle={styles.chantiersList}>
|
||||||
{chantiers.map((chantier, index) =>
|
{chantiers.map((chantier, index) =>
|
||||||
renderChantier(chantier, index)
|
renderChantier(chantier, index)
|
||||||
)}
|
)}
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
: <ActivityIndicator style={{height:"100%"}} color="#808080" size="large" />}
|
</ThemedView>
|
||||||
</View>
|
|
||||||
|
|
||||||
</View>
|
</View>
|
||||||
)}
|
)}
|
||||||
</AnimatedThemedView>
|
</AnimatedThemedView>
|
||||||
@@ -223,8 +276,5 @@ const styles = StyleSheet.create({
|
|||||||
buttonAdd:{
|
buttonAdd:{
|
||||||
borderRadius: 10,
|
borderRadius: 10,
|
||||||
marginBottom: 10,
|
marginBottom: 10,
|
||||||
height: 30,
|
|
||||||
alignItems: 'center',
|
|
||||||
justifyContent: 'center',
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user