clean up code a little
This commit is contained in:
parent
5e4dc43e02
commit
2ad4f34bd0
|
@ -27,7 +27,6 @@ const RegistroComunicado = () => {
|
||||||
listaComunis();
|
listaComunis();
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
|
|
||||||
const [comunicado, setComunicado] = useState(emptyComunicado);
|
const [comunicado, setComunicado] = useState(emptyComunicado);
|
||||||
const [comunicados, setComunicados] = useState([]);
|
const [comunicados, setComunicados] = useState([]);
|
||||||
const [comunicadoId, setComunicadoId] = useState(null);
|
const [comunicadoId, setComunicadoId] = useState(null);
|
||||||
|
@ -44,7 +43,6 @@ const RegistroComunicado = () => {
|
||||||
console.log(comunicadosRes.message);
|
console.log(comunicadosRes.message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
const saveComunicado = () => {
|
const saveComunicado = () => {
|
||||||
var data = {
|
var data = {
|
||||||
post: document.getElementById('txt_comunicado').value,
|
post: document.getElementById('txt_comunicado').value,
|
||||||
|
@ -59,28 +57,20 @@ const RegistroComunicado = () => {
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json'
|
'Content-Type': 'application/json'
|
||||||
}
|
}
|
||||||
})
|
}).then((response) => {
|
||||||
.then(
|
if (response.status != 201)
|
||||||
function(response) {
|
console.log('Ocurrió un error con el servicio: ' + response.status);
|
||||||
if (response.status != 201)
|
else
|
||||||
console.log('Ocurrió un error con el servicio: ' + response.status);
|
return response.json();
|
||||||
else
|
}).then((_response) => {
|
||||||
return response.json();
|
|
||||||
}
|
|
||||||
)
|
|
||||||
.then(
|
|
||||||
function(response) {
|
|
||||||
|
|
||||||
}
|
}).catch(
|
||||||
)
|
err => console.log('Ocurrió un error con el fetch', err)
|
||||||
.catch(
|
);
|
||||||
err => console.log('Ocurrió un error con el fetch', err)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const header = (
|
const header = (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
|
|
||||||
<div className="flex flex-column md:flex-row md:justify-content-between md:align-items-center">
|
<div className="flex flex-column md:flex-row md:justify-content-between md:align-items-center">
|
||||||
<h5 className="m-0">Comunicados de la comunidad</h5>
|
<h5 className="m-0">Comunicados de la comunidad</h5>
|
||||||
<span className="block mt-2 md:mt-0 p-input-icon-left">
|
<span className="block mt-2 md:mt-0 p-input-icon-left">
|
||||||
|
@ -131,7 +121,6 @@ const RegistroComunicado = () => {
|
||||||
globalFilter={globalFilter} emptyMessage="No hay administradores de comunidades registrados.">
|
globalFilter={globalFilter} emptyMessage="No hay administradores de comunidades registrados.">
|
||||||
<Column selectionMode="multiple" headerStyle={{ width: '3rem' }}></Column>
|
<Column selectionMode="multiple" headerStyle={{ width: '3rem' }}></Column>
|
||||||
<Column field="post" sortable header={headerPost} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}></Column>
|
<Column field="post" sortable header={headerPost} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}></Column>
|
||||||
|
|
||||||
</DataTable>
|
</DataTable>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue