Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 8516 | Rev 8520 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 8516 Rev 8519
Línea 5... Línea 5...
5
import { getData } from '../../../helpers/fetchHelpers'
5
import { getData } from '../../../helpers/fetchHelpers'
Línea 6... Línea 6...
6
 
6
 
7
const IndustryModal = ({
7
const IndustryModal = ({
8
    isOpen,
8
    isOpen,
9
    closeModal,
9
    closeModal,
10
    editUrl,
10
    companySizeUrl,
11
    action
11
    action
Línea 12... Línea 12...
12
}) => {
12
}) => {
13
 
13
 
14
    const { handleSubmit, register } = useForm()
14
    const { handleSubmit, register } = useForm()
15
    const [error, setError] = useState(null);
15
    const [error, setError] = useState(null);
Línea 16... Línea 16...
16
    const [industries, setIndustries] = useState([]);
16
    const [industries, setIndustries] = useState([]);
17
    const [currentIndustry, setCurrentIndustry] = useState("");
-
 
18
 
17
    const [currentIndustry, setCurrentIndustry] = useState("");
19
    const onSubmit = ({ industry }) => {
18
 
Línea 20... Línea 19...
20
 
19
    const onSubmit = ({ industry }) => {
21
        const data = new FormData()
20
        const data = new FormData()
Línea 34... Línea 33...
34
            })
33
            })
35
            .catch((err) => console.log(err))
34
            .catch((err) => console.log(err))
36
    }
35
    }
Línea 37... Línea 36...
37
 
36
 
38
    useEffect(() => {
37
    useEffect(() => {
39
        getData(editUrl)
38
        getData(companySizeUrl)
40
            .then(({ industries, industry_id }) => {
39
            .then(({ industries, industry_id }) => {
41
                Object.entries(industries).map(([key, value]) => {
40
                Object.entries(industries).map(([key, value]) => {
42
                    setIndustries(prev => [...prev, { value: key, name: value }])
41
                    setIndustries(prev => [...prev, { value: key, name: value }])