Skip to content

Commit

Permalink
fix: noOptionText form hospit and pregnancy
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehdi-BOUYAHIA committed Apr 24, 2024
1 parent cd4435b commit bee0c0b
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable max-statements */
import React, { useEffect, useState } from 'react'

import { Autocomplete, FormLabel, TextField } from '@mui/material'
Expand Down Expand Up @@ -334,6 +335,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer 'oui' ou 'non'"
id="in-utero-transfer-autocomplete"
options={criteriaData.data.inUteroTransfer || []}
getOptionLabel={(option) => option.label}
Expand All @@ -350,6 +352,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer 'oui' ou 'non'"
id="pregnancy-monitoring-autocomplete"
options={criteriaData.data.pregnancyMonitoring || []}
getOptionLabel={(option) => option.label}
Expand All @@ -366,6 +369,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer des valeurs de VME"
id="vme-autocomplete"
options={criteriaData.data.vme || []}
getOptionLabel={(option) => option.label}
Expand All @@ -382,6 +386,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer 'oui' ou 'non'"
id="maturation-corticotherapie-autocomplete"
options={criteriaData.data.maturationCorticotherapie || []}
getOptionLabel={(option) => option.label}
Expand All @@ -397,6 +402,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un type de geste ou de chirurgie"
id="chirurgical-gesture-autocomplete"
options={criteriaData.data.chirurgicalGesture || []}
getOptionLabel={(option) => option.label}
Expand All @@ -416,6 +422,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer 'oui' ou 'non'"
id="childbirth-autocomplete"
options={criteriaData.data.childbirth || []}
getOptionLabel={(option) => option.label}
Expand All @@ -432,6 +439,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer 'oui' ou 'non'"
id="hospital-childbirth-place-autocomplete"
options={criteriaData.data.hospitalChildBirthPlace || []}
getOptionLabel={(option) => option.label}
Expand All @@ -450,6 +458,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer 'oui' ou 'non'"
id="other-hospital-childbirth-place-autocomplete"
options={criteriaData.data.otherHospitalChildBirthPlace || []}
getOptionLabel={(option) => option.label}
Expand All @@ -466,6 +475,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer 'oui' ou 'non'"
id="home-childbirth-place-autocomplete"
options={criteriaData.data.homeChildBirthPlace || []}
getOptionLabel={(option) => option.label}
Expand All @@ -482,6 +492,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un mode de mise en travail"
id="childbirth-mode-autocomplete"
options={criteriaData.data.childbirthMode || []}
getOptionLabel={(option) => option.label}
Expand All @@ -498,6 +509,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un motif(s) de maturation / déclenchement"
id="maturation-reason-autocomplete"
options={criteriaData.data.maturationReason || []}
getOptionLabel={(option) => option.label}
Expand All @@ -514,6 +526,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer une modalités de maturation cervicale initiale"
id="maturation-modality-autocomplete"
options={criteriaData.data.maturationModality || []}
getOptionLabel={(option) => option.label}
Expand All @@ -530,6 +543,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer une indication de l'IMG"
id="img-indication-autocomplete"
options={criteriaData.data.imgIndication || []}
getOptionLabel={(option) => option.label}
Expand All @@ -546,6 +560,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer une présentation à l'entrée en travail ou en début de césarienne"
id="labor-or-cesarean-entry-autocomplete"
options={criteriaData.data.laborOrCesareanEntry || []}
getOptionLabel={(option) => option.label}
Expand All @@ -564,6 +579,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer une pathologie pendant le travail"
id="pathology-during-labor-autocomplete"
options={criteriaData.data.pathologyDuringLabor || []}
getOptionLabel={(option) => option.label}
Expand All @@ -580,6 +596,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un geste ou manoeuvre obstétricale pendant le travail"
id="obstetrical-gesture-during-labor-autocomplete"
options={criteriaData.data.obstetricalGestureDuringLabor || []}
getOptionLabel={(option) => option.label}
Expand All @@ -601,6 +618,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un type d'Analgésie / Anesthésie - Type"
id="analgesie-type-autocomplete"
options={criteriaData.data.analgesieType || []}
getOptionLabel={(option) => option.label}
Expand Down Expand Up @@ -663,6 +681,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer une voie d’accouchement"
id="birth-delivery-way-autocomplete"
options={criteriaData.data.birthDeliveryWay || []}
getOptionLabel={(option) => option.label}
Expand All @@ -680,6 +699,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un type d'instrument"
id="instrument-type-autocomplete"
options={criteriaData.data.instrumentType || []}
getOptionLabel={(option) => option.label}
Expand All @@ -697,6 +717,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer une modalités de la césarienne"
id="c-section-modality-autocomplete"
options={criteriaData.data.cSectionModality || []}
getOptionLabel={(option) => option.label}
Expand All @@ -715,6 +736,7 @@ const HospitForm = ({

<Autocomplete
multiple
noOptionsText="Veuillez entrer une présentation à l'accouchement"
id="presentation-at-delivery-autocomplete"
options={criteriaData.data.presentationAtDelivery || []}
getOptionLabel={(option) => option.label}
Expand Down Expand Up @@ -844,6 +866,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un statut vital à la naissance"
id="birth-status-autocomplete"
options={criteriaData.data.birthStatus || []}
getOptionLabel={(option) => option.label}
Expand All @@ -861,6 +884,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer 'oui' ou 'non'"
id="Postpartum-hemorrhage-autocomplete"
options={criteriaData.data.postpartumHemorrhage || []}
getOptionLabel={(option) => option.label}
Expand All @@ -878,6 +902,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un état du Périnée"
id="condition-of-the-perineum-autocomplete"
options={criteriaData.data.conditionPerineum || []}
getOptionLabel={(option) => option.label}
Expand All @@ -894,6 +919,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un type de lieu de sortie"
id="exit-place-type-autocomplete"
options={criteriaData.data.exitPlaceType || []}
getOptionLabel={(option) => option.label}
Expand All @@ -914,6 +940,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un type d'allaitement"
id="feeding-type-autocomplete"
options={criteriaData.data.feedingType || []}
getOptionLabel={(option) => option.label}
Expand All @@ -929,6 +956,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer 'oui' ou 'non'"
id="complication-autocomplete"
options={criteriaData.data.complication || []}
getOptionLabel={(option) => option.label}
Expand All @@ -948,6 +976,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un mode d'allaitement à la sortie"
id="exit-feeding-mode-autocomplete"
options={criteriaData.data.exitFeedingMode || []}
getOptionLabel={(option) => option.label}
Expand All @@ -963,6 +992,7 @@ const HospitForm = ({
</FormLabel>
<Autocomplete
multiple
noOptionsText="Veuillez entrer un diagnostic de sortie"
id="exit-diagnostic-autocomplete"
options={criteriaData.data.exitDiagnostic || []}
getOptionLabel={(option) => option.label}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ const PregnantForm = ({
multiple
id="pregnancy-mode-autocomplete"
options={criteriaData.data.pregnancyMode || []}
noOptionsText="Veuillez entrer un mode d'obtention de la grossesse"
getOptionLabel={(option) => option.label}
isOptionEqualToValue={(option, value) => option.id === value.id}
value={pregnancyMode}
Expand Down Expand Up @@ -266,6 +267,7 @@ const PregnantForm = ({
multiple
id="maternal-risks-autocomplete"
options={criteriaData.data.maternalRisks || []}
noOptionsText="Veuillez entrer un risques liés aux antécédents maternels"
getOptionLabel={(option) => option.label}
isOptionEqualToValue={(option, value) => option.id === value.id}
value={maternalRisks}
Expand All @@ -287,6 +289,7 @@ const PregnantForm = ({
multiple
id="risks-related-to-obstetric-history-autocomplete"
options={criteriaData.data.risksRelatedToObstetricHistory || []}
noOptionsText="Veuillez entrer un risques liés aux antécédents obstétricaux"
getOptionLabel={(option) => option.label}
isOptionEqualToValue={(option, value) => option.id === value.id}
value={risksRelatedToObstetricHistory}
Expand Down Expand Up @@ -314,6 +317,7 @@ const PregnantForm = ({
multiple
id="ultrasound-monitoring-autocomplete"
options={criteriaData.data.prenatalDiagnosis || []}
noOptionsText="Veuillez entrer 'oui' ou 'non'"
getOptionLabel={(option) => option.label}
isOptionEqualToValue={(option, value) => option.id === value.id}
value={ultrasoundMonitoring}
Expand All @@ -329,6 +333,7 @@ const PregnantForm = ({
multiple
id="corticotherapie-autocomplete"
options={criteriaData.data.prenatalDiagnosis || []}
noOptionsText="Veuillez entrer 'oui' ou 'non'"
getOptionLabel={(option) => option.label}
isOptionEqualToValue={(option, value) => option.id === value.id}
value={corticotherapie}
Expand All @@ -349,6 +354,7 @@ const PregnantForm = ({
multiple
id="risks-or-complications-of-pregnancy-autocomplete"
options={criteriaData.data.risksOrComplicationsOfPregnancy || []}
noOptionsText="Veuillez entrer un risques ou complications de la grossesse"
getOptionLabel={(option) => option.label}
isOptionEqualToValue={(option, value) => option.id === value.id}
value={risksOrComplicationsOfPregnancy}
Expand All @@ -375,6 +381,7 @@ const PregnantForm = ({
multiple
id="prenatal-diagnosis-autocomplete"
options={criteriaData.data.prenatalDiagnosis || []}
noOptionsText="Veuillez entrer 'oui' ou 'non'"
getOptionLabel={(option) => option.label}
isOptionEqualToValue={(option, value) => option.id === value.id}
value={prenatalDiagnosis}
Expand Down

0 comments on commit bee0c0b

Please sign in to comment.