Línea 84... |
Línea 84... |
84 |
})
|
84 |
})
|
85 |
}, [modalToShow])
|
85 |
}, [modalToShow])
|
Línea 86... |
Línea 86... |
86 |
|
86 |
|
87 |
const ModalOptions = {
|
87 |
const ModalOptions = {
|
88 |
'Estatus': <StatusModal title={labels.STATUS} closeModal={closeModal} modalData={itemsData.status} dataLink={itemsRoutes.route_status} />,
|
88 |
'Estatus': <StatusModal title={labels.STATUS} closeModal={closeModal} modalData={itemsData.status} dataLink={itemsRoutes.route_status} />,
|
89 |
'Título': <TitleModal title={labels.TITLE} closeModal={closeModal} modalData={itemsData.title} dataLink={itemsRoutes.route_title} />,
|
89 |
'Titulo': <TitleModal title={labels.TITLE} closeModal={closeModal} modalData={itemsData.title} dataLink={itemsRoutes.route_title} />,
|
90 |
'Visión general': <OverviewModal title={labels.OVERVIEW} closeModal={closeModal} modalData={itemsData.description} dataLink={itemsRoutes.route_extended} />,
|
90 |
'Visión general': <OverviewModal title={labels.OVERVIEW} closeModal={closeModal} modalData={itemsData.description} dataLink={itemsRoutes.route_extended} />,
|
91 |
'Último día de aplicación': <LastAplicationDayModal title={labels.LAST_DATE_OF_APPLICATION} closeModal={closeModal} modalData={itemsData.last_date_of_application} dataLink={itemsRoutes.route_last_date_of_application} />,
|
91 |
'Último día de aplicación': <LastAplicationDayModal title={labels.LAST_DATE_OF_APPLICATION} closeModal={closeModal} modalData={itemsData.last_date_of_application} dataLink={itemsRoutes.route_last_date_of_application} />,
|
92 |
'Tipo de empleo': <EmploymentTypeModal title={labels.EMPLOYMENT_TYPE} closeModal={closeModal} modalData={itemsData.employment_type} dataLink={itemsRoutes.route_employment_type} />,
|
92 |
'Tipo de empleo': <EmploymentTypeModal title={labels.EMPLOYMENT_TYPE} closeModal={closeModal} modalData={itemsData.employment_type} dataLink={itemsRoutes.route_employment_type} />,
|
93 |
'Ubicación': <LocationModal title={labels.LOCATION} closeModal={closeModal} modalData={itemsData.location} dataLink={itemsRoutes.route_location} googleApiKey={googleApi} />,
|
93 |
'Ubicación': <LocationModal title={labels.LOCATION} closeModal={closeModal} modalData={itemsData.location} dataLink={itemsRoutes.route_location} googleApiKey={googleApi} />,
|
Línea 133... |
Línea 133... |
133 |
<EditItem title={labels.CATEGORIE} data={itemsData.job_category} showModal={setModalToShow} />
|
133 |
<EditItem title={labels.CATEGORIE} data={itemsData.job_category} showModal={setModalToShow} />
|
134 |
<EditItem title={labels.SKILLS} data={itemsData.skills} showModal={setModalToShow} />
|
134 |
<EditItem title={labels.SKILLS} data={itemsData.skills} showModal={setModalToShow} />
|
135 |
<EditItem title={labels.LANGUAGES} data={itemsData.languages} showModal={setModalToShow} />
|
135 |
<EditItem title={labels.LANGUAGES} data={itemsData.languages} showModal={setModalToShow} />
|
136 |
<EditItem title={labels.DEGREES} data={itemsData.degrees} showModal={setModalToShow} />
|
136 |
<EditItem title={labels.DEGREES} data={itemsData.degrees} showModal={setModalToShow} />
|
137 |
</div>
|
137 |
</div>
|
138 |
{
|
- |
|
139 |
ModalOptions[modalToShow]
|
138 |
{ModalOptions[modalToShow]}
|
140 |
}
|
- |
|
141 |
</div>
|
139 |
</div>
|
142 |
<div className="col-lg-3">
|
140 |
<div className="col-lg-3">
|
143 |
</div>
|
141 |
</div>
|
144 |
</div>
|
142 |
</div>
|
145 |
</div>
|
143 |
</div>
|