├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ ├── ci_cd_dev.yml │ ├── ci_cd_main.yml │ └── ci_cd_test.yml ├── .gitignore ├── .prettierrc ├── Dockerfile ├── README.md ├── craco.config.js ├── jsconfig.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo.png ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.jsx ├── __test__ │ ├── __snapshots__ │ │ └── button.test.js.snap │ ├── button.test.js │ ├── page.test.js │ └── private-route.test.js ├── components │ ├── Accordion.jsx │ ├── ButtonLoading.jsx │ ├── Dropdown.jsx │ ├── Input.jsx │ ├── PrivateComponent.jsx │ ├── PrivateRoute.jsx │ └── Sidebar.jsx ├── context │ ├── authContext.js │ ├── objContext.js │ ├── projectQueryContext.js │ └── userContext.js ├── graphql │ ├── auth │ │ └── mutations.js │ ├── avances │ │ ├── mutations.js │ │ └── queries.js │ ├── inscripciones │ │ ├── mutaciones.js │ │ └── queries.js │ ├── proyectos │ │ ├── mutations.js │ │ └── queries.js │ └── usuarios │ │ ├── mutations.js │ │ └── queries.js ├── hooks │ ├── useActiveRoute.js │ └── useFormData.js ├── index.js ├── layouts │ ├── AuthLayout.jsx │ └── PrivateLayout.jsx ├── logo.svg ├── pages │ ├── Index.jsx │ ├── Page2.jsx │ ├── auth │ │ ├── login.jsx │ │ └── register.jsx │ ├── avances │ │ └── index.jsx │ ├── category1 │ │ ├── CategoryPage1.jsx │ │ └── Index.jsx │ ├── inscripciones │ │ └── index.jsx │ ├── profile.jsx │ ├── proyectos │ │ ├── Index.jsx │ │ └── NuevoProyecto.jsx │ └── usuarios │ │ ├── editar.jsx │ │ └── index.jsx ├── reportWebVitals.js ├── setupTests.js ├── styles │ ├── globals.css │ └── tabla.css └── utils │ ├── enums.js │ └── uploadFormData.js ├── tailwind.config.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci_cd_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/.github/workflows/ci_cd_dev.yml -------------------------------------------------------------------------------- /.github/workflows/ci_cd_main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/.github/workflows/ci_cd_main.yml -------------------------------------------------------------------------------- /.github/workflows/ci_cd_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/.github/workflows/ci_cd_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/README.md -------------------------------------------------------------------------------- /craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/craco.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/__test__/__snapshots__/button.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/__test__/__snapshots__/button.test.js.snap -------------------------------------------------------------------------------- /src/__test__/button.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/__test__/button.test.js -------------------------------------------------------------------------------- /src/__test__/page.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/__test__/page.test.js -------------------------------------------------------------------------------- /src/__test__/private-route.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/__test__/private-route.test.js -------------------------------------------------------------------------------- /src/components/Accordion.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/components/Accordion.jsx -------------------------------------------------------------------------------- /src/components/ButtonLoading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/components/ButtonLoading.jsx -------------------------------------------------------------------------------- /src/components/Dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/components/Dropdown.jsx -------------------------------------------------------------------------------- /src/components/Input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/components/Input.jsx -------------------------------------------------------------------------------- /src/components/PrivateComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/components/PrivateComponent.jsx -------------------------------------------------------------------------------- /src/components/PrivateRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/components/PrivateRoute.jsx -------------------------------------------------------------------------------- /src/components/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/components/Sidebar.jsx -------------------------------------------------------------------------------- /src/context/authContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/context/authContext.js -------------------------------------------------------------------------------- /src/context/objContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/context/objContext.js -------------------------------------------------------------------------------- /src/context/projectQueryContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/context/projectQueryContext.js -------------------------------------------------------------------------------- /src/context/userContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/context/userContext.js -------------------------------------------------------------------------------- /src/graphql/auth/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/graphql/auth/mutations.js -------------------------------------------------------------------------------- /src/graphql/avances/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/graphql/avances/mutations.js -------------------------------------------------------------------------------- /src/graphql/avances/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/graphql/avances/queries.js -------------------------------------------------------------------------------- /src/graphql/inscripciones/mutaciones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/graphql/inscripciones/mutaciones.js -------------------------------------------------------------------------------- /src/graphql/inscripciones/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/graphql/inscripciones/queries.js -------------------------------------------------------------------------------- /src/graphql/proyectos/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/graphql/proyectos/mutations.js -------------------------------------------------------------------------------- /src/graphql/proyectos/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/graphql/proyectos/queries.js -------------------------------------------------------------------------------- /src/graphql/usuarios/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/graphql/usuarios/mutations.js -------------------------------------------------------------------------------- /src/graphql/usuarios/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/graphql/usuarios/queries.js -------------------------------------------------------------------------------- /src/hooks/useActiveRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/hooks/useActiveRoute.js -------------------------------------------------------------------------------- /src/hooks/useFormData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/hooks/useFormData.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/index.js -------------------------------------------------------------------------------- /src/layouts/AuthLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/layouts/AuthLayout.jsx -------------------------------------------------------------------------------- /src/layouts/PrivateLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/layouts/PrivateLayout.jsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/Index.jsx -------------------------------------------------------------------------------- /src/pages/Page2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/Page2.jsx -------------------------------------------------------------------------------- /src/pages/auth/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/auth/login.jsx -------------------------------------------------------------------------------- /src/pages/auth/register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/auth/register.jsx -------------------------------------------------------------------------------- /src/pages/avances/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/avances/index.jsx -------------------------------------------------------------------------------- /src/pages/category1/CategoryPage1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/category1/CategoryPage1.jsx -------------------------------------------------------------------------------- /src/pages/category1/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/category1/Index.jsx -------------------------------------------------------------------------------- /src/pages/inscripciones/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/inscripciones/index.jsx -------------------------------------------------------------------------------- /src/pages/profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/profile.jsx -------------------------------------------------------------------------------- /src/pages/proyectos/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/proyectos/Index.jsx -------------------------------------------------------------------------------- /src/pages/proyectos/NuevoProyecto.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/proyectos/NuevoProyecto.jsx -------------------------------------------------------------------------------- /src/pages/usuarios/editar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/usuarios/editar.jsx -------------------------------------------------------------------------------- /src/pages/usuarios/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/pages/usuarios/index.jsx -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/styles/tabla.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/styles/tabla.css -------------------------------------------------------------------------------- /src/utils/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/utils/enums.js -------------------------------------------------------------------------------- /src/utils/uploadFormData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/src/utils/uploadFormData.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciclo-4-Mision-TIC-UdeA/gestion-proyectos-front/HEAD/yarn.lock --------------------------------------------------------------------------------