Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 8478 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 8478 Rev 15062
Línea 1... Línea 1...
1
import React, { useState } from 'react'
1
import React, { useState } from 'react'
2
import IndustryModal from './IndustryModal';
2
import IndustryModal from './IndustryModal'
Línea 3... Línea 3...
3
 
3
 
Línea 4... Línea 4...
4
const Industry = ({ industry, industryUrl }) => {
4
const Industry = ({ industry, industryUrl, title }) => {
5
 
5
 
Línea 6... Línea 6...
6
    const [isShowModal, setIsShowModal] = useState(false);
6
	const [isShowModal, setIsShowModal] = useState(false)
7
    const [industryState, setIndustryState] = useState(industry);
7
	const [industryState, setIndustryState] = useState(industry)
Línea 8... Línea 8...
8
 
8
 
9
    const closeModal = () => setIsShowModal(false)
9
	const closeModal = () => setIsShowModal(false)
10
    const showModal = () => setIsShowModal(true)
10
	const showModal = () => setIsShowModal(true)
11
 
11
 
12
    return (
12
	return (
13
        <>
13
		<>
14
            <div className="user-profile-ov">
14
			<div className="user-profile-ov">
15
                <h3>
15
				<h3>
16
                    Industria
16
					{title}
17
                    <button
17
					<button
18
                        className="btn btn-industry-edit"
18
						className="btn btn-industry-edit"
19
                        onClick={showModal}
19
						onClick={showModal}
20
                    >
20
					>
21
                        <i className="fa fa-pencil" />
21
						<i className="fa fa-pencil" />
22
                    </button>
22
					</button>
23
                </h3>
23
				</h3>
24
                <span id="overview-industry">{industryState}</span>
24
				<span id="overview-industry">{industryState}</span>
25
            </div>
25
			</div>
26
            <IndustryModal
26
			<IndustryModal
27
                action={setIndustryState}
27
				action={setIndustryState}
28
                editUrl={industryUrl}
28
				editUrl={industryUrl}
29
                closeModal={closeModal}
29
				closeModal={closeModal}
30
                isOpen={isShowModal}
30
				isOpen={isShowModal}
Línea 31... Línea 31...
31
            />
31
			/>
32
        </>
32
		</>