From 6d66a783b7e66822935ffd5d2b9ab14cda97fefc Mon Sep 17 00:00:00 2001 From: Eduardo Quiros Date: Mon, 22 Aug 2022 05:59:30 -0600 Subject: [PATCH 01/10] format --- .../src/components/RegistroComunicado.js | 146 +++++++++--------- 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/web-ui/web-react/src/components/RegistroComunicado.js b/web-ui/web-react/src/components/RegistroComunicado.js index e2d756a9..1739f993 100644 --- a/web-ui/web-react/src/components/RegistroComunicado.js +++ b/web-ui/web-react/src/components/RegistroComunicado.js @@ -27,13 +27,13 @@ const RegistroComunicado = () => { community_id: '' }; - useEffect(()=>{ - listaComunis(); - },[]) + useEffect(() => { + listaComunis(); + }, []) const [comunicado, setComunicado] = useState(emptyComunicado); - const [comunicados,setComuicados]=useState([]); + const [comunicados, setComuicados] = useState([]); const [comunicadoId, setComunicadoId] = useState(null); const [submitted, setSubmitted] = useState(false); const toast = useRef(null); @@ -42,103 +42,103 @@ const RegistroComunicado = () => { const [globalFilter, setGlobalFilter] = useState(null); async function listaComunis() { - let comunicadosA=await fetch('http://localhost:4000/post/allPosts', {method:'GET'}); - let comunicadosRes= await comunicadosA.json(); - setComuicados(comunicadosRes.message); - console.log(comunicadosRes.message); - } + let comunicadosA = await fetch('http://localhost:4000/post/allPosts', { method: 'GET' }); + let comunicadosRes = await comunicadosA.json(); + setComuicados(comunicadosRes.message); + console.log(comunicadosRes.message); + } + - const saveComunicado = () => { var data = { post: document.getElementById('txt_comunicado').value, user_id: cookies.id, community_id: cookies.community_id - }; - - fetch('http://localhost:4000/post/createPost', { + }; + + fetch('http://localhost:4000/post/createPost', { cache: 'no-cache', method: 'POST', body: JSON.stringify(data), headers: { - 'Content-Type': 'application/json' + 'Content-Type': 'application/json' } - }) + }) .then( - function (response) { - if (response.status != 201) - console.log('Ocurrió un error con el servicio: ' + response.status); - else - return response.json(); - } + function(response) { + if (response.status != 201) + console.log('Ocurrió un error con el servicio: ' + response.status); + else + return response.json(); + } ) .then( - function (response) { - - } + function(response) { + + } ) .catch( - err => console.log('Ocurrió un error con el fetch', err) + err => console.log('Ocurrió un error con el fetch', err) ); } const header = ( - - -
-
Comunicados de la comunidad
- - - setGlobalFilter(e.target.value)} placeholder="Buscar..." /> - -
-
- ); - const headerPost = ( - <> -

- {' '} - {' '} - Descripción comunicado

- - ) - - const leftToolbarTemplate = () => { - return ( -
-
+
+ ) + } + + const rightToolbarTemplate = () => { + return ( + +