Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.2 hu codificacion queries #29

Merged
merged 2 commits into from
May 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GomezMorinFrontEnd/src/components/DataGridComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { DataGrid } from "@mui/x-data-grid";
*/
const DataGridComponent = ({ rows, columns }) => {
return (
<div style={{ height: 300, width: "100%" }}>
<div style={{ height: 500, width: "100%" }}>
<DataGrid rows={rows} columns={columns} />
</div>
);
Expand Down
54 changes: 28 additions & 26 deletions GomezMorinFrontEnd/src/pages/RequestAll/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@
* The RequestAll component displays a table with data that represents incoming requests.
* It includes an image title, a search bar, and a data grid component.
*/
import React from "react";
import React, { useEffect, useState } from "react";
import ImageTitle from "../../components/ImageTiTle";
import SearchBar from "../../components/SearchBar";
import DataGridComponent from "../../components/DataGridComponent";
import ImageTitleImage from "../../../public/images/ImageTitleImage.png";
import EditModal from "../../components/EditModal";
import { getAllForms } from "../../queries/queryRequestForm";

const userId = localStorage.getItem("id");
const RequestAll = () => {
const [rows, setRows] = useState([]);
// Define columns to be displayed in the data grid component
const columns = [
{ field: "fecha", headerName: "Fecha", width: 200 },
Expand All @@ -27,28 +30,31 @@ const RequestAll = () => {
];

// Define rows to be displayed in the data grid component
const rows = [
{
id: 1,
fecha: "01/01/2021",
folio: "1",
tipo: "Persona física",
evento: "Evento 1",
nombre: "Nombre 1",
estatus: "Estatus 1",
renderCell: () => <EditModal />,
},
{
id: 2,
fecha: "01/01/2021",
folio: "1",
tipo: "Persona moral",
evento: "-",
nombre: "Nombre 1",
estatus: "Estatus 1",

const transformData = (data) => {
return data.map((item) => ({
id: item._id,
fecha: item.requestDate,
folio: item.folio,
tipo: item.membretatedLetterDoc ? "Persona moral" : "Persona física",
evento: item.membretatedLetterDoc ? "-" : item.typeEvent,
nombre: item.membretatedLetterDoc
? item.membretatedLetterDoc
: item.nameEvent,
estatus: item.status,
renderCell: () => <EditModal />,
},
];
}));
};

useEffect(() => {
/**
* Calls the getAllForms function to fetch data from the server and updates the component's state with the transformed data.
*/
getAllForms(userId).then((res) => {
const data = transformData(res);
setRows(data);
});
}, []);

// Render the RequestAll component
return (
Expand All @@ -57,10 +63,6 @@ const RequestAll = () => {
{/* Display an image title with the "Bandeja de Entrada" title and an image */}
<ImageTitle title={"Bandeja de Entrada"} image={ImageTitleImage} />
</div>
<div className="w-3/4">
{/* Display a search bar */}
<SearchBar />
</div>
<div className="flex flex-col justify-center w-full pl-8 pr-8 ">
{/* Display the data grid component with the columns and rows */}
<DataGridComponent columns={columns} rows={rows} />
Expand Down
21 changes: 21 additions & 0 deletions GomezMorinFrontEnd/src/queries/queryRequestForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,3 +201,24 @@ export const getForm = async (userPtr, queryParams = {}) => {
return Promise.reject(err);
}
};

/**
* Function to retrieve all forms of a given user from the server
*
* @param {string} userId - The ID of the user
* @returns {Promise} A Promise that resolves to an array of forms or rejects with an error
*/
export const getAllForms = async (userId) => {
try {
const body = {
id: userId,
};
const response = await axios.post(
`${baseURL}/solicitudes/request-all`,
body
);
return response.data;
} catch (err) {
return Promise.reject(err);
}
};