Compare commits
28 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3f2a459ba8 | |||
| b0759bcf5c | |||
| 2179ee7d1e | |||
| b150ea3210 | |||
| 1ffcb56863 | |||
| afd4060d20 | |||
| 7e1282a283 | |||
| 597ce41a62 | |||
| 3f23c15239 | |||
| 60a6c6416a | |||
| 48805c093e | |||
| dc75a7b1a7 | |||
| 1de6761d03 | |||
| 13cdfce656 | |||
| 797b3f6815 | |||
| 1219ca1e91 | |||
| 179a968e3e | |||
| bae1f99e5c | |||
| 2dfeea0cb4 | |||
| 811f5e7c0e | |||
| 7b2f33b2b4 | |||
| 6c7be89a01 | |||
| c1a9e5d195 | |||
| 9b203020f6 | |||
| 451915e858 | |||
| 1a0c7917b7 | |||
| 685d513838 | |||
| e698a54dc2 |
@@ -0,0 +1,85 @@
|
|||||||
|
name: Despliegue Automatizado Universal
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- develop
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
get-context:
|
||||||
|
runs-on: host
|
||||||
|
outputs:
|
||||||
|
node_version: ${{ steps.setup.outputs.version }}
|
||||||
|
target_app: ${{ steps.setup.outputs.app }}
|
||||||
|
steps:
|
||||||
|
- name: Resolver Aplicación desde apps.conf
|
||||||
|
id: setup
|
||||||
|
run: |
|
||||||
|
# 1. Obtener el nombre del repositorio actual en Gitea (ej: front-Censo)
|
||||||
|
REPO_NAME="${{ github.event.repository.name }}"
|
||||||
|
|
||||||
|
# 2. Determinar si buscamos un entorno -dev (develop) o producción (master)
|
||||||
|
if [ "${{ github.ref_name }}" = "develop" ]; then
|
||||||
|
SUFFIX="-dev"
|
||||||
|
else
|
||||||
|
SUFFIX=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Buscando qué sección de apps.conf tiene REPO=$REPO_NAME y termina en '$SUFFIX'..."
|
||||||
|
|
||||||
|
# 3. Buscar en /etc/apps.conf el bloque que contenga REPO=nombre_del_repo
|
||||||
|
TARGET_APP=$(awk -v repo="REPO=$REPO_NAME" -v suf="$SUFFIX" '
|
||||||
|
/^\[/ { gsub(/[\[\]]/, "", $0); current_box=$0; next }
|
||||||
|
$0 == repo {
|
||||||
|
if ((suf == "-dev" && current_box ~ /-dev$/) || (suf == "" && current_box !~ /-dev$/)) {
|
||||||
|
print current_box;
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
}
|
||||||
|
' /etc/apps.conf)
|
||||||
|
|
||||||
|
if [ -z "$TARGET_APP" ]; then
|
||||||
|
echo "ERROR: No se encontró ninguna sección en /etc/apps.conf para el repositorio $REPO_NAME con el sufijo correcto."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 4. Leer la versión de Node del bloque encontrado
|
||||||
|
VERSION=$(awk -v app="$TARGET_APP" '
|
||||||
|
$0=="["app"]" { found=1; next }
|
||||||
|
/^\[/ && found { exit }
|
||||||
|
found && /^NODE=/ { split($0, a, "="); print a[2]; exit }
|
||||||
|
' /etc/apps.conf)
|
||||||
|
|
||||||
|
MAJOR_VERSION=$(echo "$VERSION" | tr -d '[:space:]' | grep -oE '[0-9]+' | head -n1)
|
||||||
|
|
||||||
|
echo "-> ID de Aplicación encontrado: $TARGET_APP"
|
||||||
|
echo "-> Versión Mayor de Node resuelta: $MAJOR_VERSION"
|
||||||
|
|
||||||
|
echo "app=${TARGET_APP}" >> $GITHUB_OUTPUT
|
||||||
|
echo "version=${MAJOR_VERSION}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
build:
|
||||||
|
needs: get-context
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Configurar Node.js dinámicamente
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: ${{ needs.get-context.outputs.node_version }}
|
||||||
|
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm run build
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
needs: [get-context, build]
|
||||||
|
runs-on: host
|
||||||
|
steps:
|
||||||
|
- name: Ejecutar Despliegue en Servidor Físico
|
||||||
|
run: |
|
||||||
|
TARGET_APP="${{ needs.get-context.outputs.target_app }}"
|
||||||
|
BRANCH_NAME="${{ github.ref_name }}"
|
||||||
|
|
||||||
|
sudo -u deploy /home/deploy/scripts/deploy-front.sh "$TARGET_APP" "$BRANCH_NAME"
|
||||||
Generated
+996
-61
File diff suppressed because it is too large
Load Diff
+4
-3
@@ -13,18 +13,19 @@
|
|||||||
"@zxing/browser": "^0.1.5",
|
"@zxing/browser": "^0.1.5",
|
||||||
"@zxing/library": "^0.21.3",
|
"@zxing/library": "^0.21.3",
|
||||||
"axios": "^1.13.2",
|
"axios": "^1.13.2",
|
||||||
|
"chart.js": "^4.5.1",
|
||||||
"js-cookie": "^3.0.5",
|
"js-cookie": "^3.0.5",
|
||||||
"jwt-decode": "^4.0.0",
|
"jwt-decode": "^4.0.0",
|
||||||
"leaflet": "^1.9.4",
|
"leaflet": "^1.9.4",
|
||||||
"leaflet.heat": "^0.2.0",
|
"leaflet.heat": "^0.2.0",
|
||||||
"next": "^16.0.7",
|
"next": "^16.0.7",
|
||||||
"react": "19.2.0",
|
"react": "19.2.0",
|
||||||
"react-dom": "19.2.0", "react-hot-toast": "^2.6.0",
|
"react-dom": "19.2.0",
|
||||||
|
"react-hot-toast": "^2.6.0",
|
||||||
"react-leaflet": "^5.0.0",
|
"react-leaflet": "^5.0.0",
|
||||||
"react-select": "^5.10.2",
|
"react-select": "^5.10.2",
|
||||||
"recharts": "^3.8.0"
|
"recharts": "^3.8.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/eslintrc": "^3",
|
"@eslint/eslintrc": "^3",
|
||||||
"@types/js-cookie": "^3.0.6",
|
"@types/js-cookie": "^3.0.6",
|
||||||
|
|||||||
@@ -1,59 +1,17 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { useState } from "react";
|
|
||||||
import DownloadReporteXLSX from "@/components/Dowload/Reporte";
|
|
||||||
import Reporte from "@/components/reporteGraficas/reporte";
|
import Reporte from "@/components/reporteGraficas/reporte";
|
||||||
import Antiguedad from "@/components/AntiguedadEquipo/Antiguedad";
|
|
||||||
|
|
||||||
import "../../styles/layout/reporte.scss";
|
import "../../styles/layout/reporte.scss";
|
||||||
|
|
||||||
type PreguntaKey = "antiguedad" | "adscripcion";
|
|
||||||
|
|
||||||
const LABELS: Record<PreguntaKey, string> = {
|
|
||||||
antiguedad: "Antigüedad",
|
|
||||||
adscripcion: "Antigüedad por Adscripcion"
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
const [activeTab, setActiveTab] = useState<PreguntaKey>("antiguedad");
|
|
||||||
|
|
||||||
const renderPregunta = () => {
|
|
||||||
switch (activeTab) {
|
|
||||||
case "antiguedad":
|
|
||||||
return (
|
|
||||||
<Antiguedad />
|
|
||||||
);
|
|
||||||
case "adscripcion":
|
|
||||||
return (
|
|
||||||
<Reporte />
|
|
||||||
);
|
|
||||||
default:
|
|
||||||
return (
|
|
||||||
<div className="p-6 text-center text-gray-500">
|
|
||||||
Contenido no disponible aún.
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="scanView_reporte">
|
<div className="scanView_reporte">
|
||||||
<div className="container_reporte">
|
<div className="container_reporte">
|
||||||
<div className="main-content_reporte">
|
<div className="main-content_reporte">
|
||||||
<div className="tabs_reporte">
|
<div className={`data-table_reporte`}><Reporte /></div>
|
||||||
{Object.entries(LABELS).map(([key, label]) => (
|
|
||||||
<button
|
|
||||||
key={key}
|
|
||||||
className={`tab_reporte ${activeTab === key ? "active" : ""}`}
|
|
||||||
onClick={() => setActiveTab(key as PreguntaKey)}
|
|
||||||
aria-selected={activeTab === key}
|
|
||||||
role="tab"
|
|
||||||
>
|
|
||||||
{label}
|
|
||||||
</button>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
<div className={`data-table_reporte`}>{renderPregunta()}</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
|
||||||
|
import "../../styles/layout/reporte.scss";
|
||||||
|
import ReportePerifericos from "@/components/reporte_graficas_perifericos/reporte";
|
||||||
|
|
||||||
|
export default function Page() {
|
||||||
|
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="scanView_reporte">
|
||||||
|
<div className="container_reporte">
|
||||||
|
<div className="main-content_reporte">
|
||||||
|
<div className={`data-table_reporte`}><ReportePerifericos /></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -24,7 +24,9 @@ export default function RootLayout({
|
|||||||
<body>
|
<body>
|
||||||
<Header />
|
<Header />
|
||||||
<Toaster position="top-left" reverseOrder={false} />
|
<Toaster position="top-left" reverseOrder={false} />
|
||||||
|
<main>
|
||||||
{children}
|
{children}
|
||||||
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ export default function Login() {
|
|||||||
if (tipo === 2) {
|
if (tipo === 2) {
|
||||||
router.push("/escaner");
|
router.push("/escaner");
|
||||||
} else if (tipo === 1) {
|
} else if (tipo === 1) {
|
||||||
router.push("/equipoComputo");
|
router.push("/reportesGraficas");
|
||||||
} else {
|
} else {
|
||||||
toast.error("Tipo de usuario no válido");
|
toast.error("Tipo de usuario no válido");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,6 +28,33 @@ body {
|
|||||||
color: $color-text;
|
color: $color-text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
main::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
|
||||||
|
width: 200%;
|
||||||
|
height: 200%;
|
||||||
|
|
||||||
|
background-image:
|
||||||
|
linear-gradient(#003f7906 1px, transparent 1px),
|
||||||
|
linear-gradient(90deg, #003f7906 1px, transparent 1px);
|
||||||
|
|
||||||
|
background-size: 48px 48px;
|
||||||
|
pointer-events: none;
|
||||||
|
|
||||||
|
transform: translate(-50%, -50%) rotate(15deg);
|
||||||
|
transform-origin: center;
|
||||||
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
color: #222;
|
color: #222;
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-container {
|
.login-container {
|
||||||
|
|||||||
@@ -1,43 +0,0 @@
|
|||||||
'use client'
|
|
||||||
|
|
||||||
import axios from "axios";
|
|
||||||
import { useEffect, useState } from "react";
|
|
||||||
import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts";
|
|
||||||
|
|
||||||
interface antiguedad{
|
|
||||||
antiguedad:string;
|
|
||||||
total:number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function Antiguedad() {
|
|
||||||
const [antiguedad,setAntiguedad]=useState<antiguedad[]>([])
|
|
||||||
|
|
||||||
useEffect(()=>{
|
|
||||||
const getAntiguedad = async()=>{
|
|
||||||
const response = await axios.get("http://localhost:3001/equipos/grafica")
|
|
||||||
|
|
||||||
setAntiguedad(response.data)
|
|
||||||
}
|
|
||||||
getAntiguedad()
|
|
||||||
},[])
|
|
||||||
|
|
||||||
return (
|
|
||||||
<ResponsiveContainer width="100%" aspect={2}>
|
|
||||||
<BarChart data={antiguedad}
|
|
||||||
width={500}
|
|
||||||
height={300}
|
|
||||||
margin={{
|
|
||||||
top:20,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<CartesianGrid strokeDasharray="3 3"/>
|
|
||||||
<XAxis dataKey="antiguedad"/>
|
|
||||||
<YAxis/>
|
|
||||||
<Tooltip/>
|
|
||||||
<Legend/>
|
|
||||||
<Bar dataKey="total" fill="#0d6efd"/>
|
|
||||||
|
|
||||||
</BarChart>
|
|
||||||
</ResponsiveContainer>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -41,17 +41,17 @@ function BarNavigation() {
|
|||||||
</li> */}
|
</li> */}
|
||||||
<li className="subMenu" onClick={toggleMenu}>
|
<li className="subMenu" onClick={toggleMenu}>
|
||||||
<Link href="/equipoComputo" className="links">
|
<Link href="/equipoComputo" className="links">
|
||||||
<span>Equipo de Computo</span>
|
<span>Equipo de Cómputo</span>
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
<li className="subMenu" onClick={toggleMenu}>
|
<li className="subMenu" onClick={toggleMenu}>
|
||||||
<Link href="/perifericos" className="links">
|
<Link href="/perifericos" className="links">
|
||||||
<span>Perifericos</span>
|
<span>Periféricos</span>
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
<li className="subMenu" onClick={toggleMenu}>
|
<li className="subMenu" onClick={toggleMenu}>
|
||||||
<Link href="/reportesGraficas" className="links">
|
<Link href="/reportesGraficas" className="links">
|
||||||
<span>Reportes y Graficas</span>
|
<span>Reportes y Gráficas</span>
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
<li className="subMenu">
|
<li className="subMenu">
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ export default function DownloadReporteXLSX() {
|
|||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
|
|
||||||
const handleDownload = async () => {
|
const handleDownload = async () => {
|
||||||
setLoading(true); // 🔹 Activa loader
|
setLoading(true);
|
||||||
const token = Cookies.get("token");
|
const token = Cookies.get("token");
|
||||||
const headers = { Authorization: `Bearer ${token}` };
|
const headers = { Authorization: `Bearer ${token}` };
|
||||||
|
|
||||||
@@ -37,7 +37,7 @@ export default function DownloadReporteXLSX() {
|
|||||||
console.error(error);
|
console.error(error);
|
||||||
alert("Hubo un problema al descargar el archivo.");
|
alert("Hubo un problema al descargar el archivo.");
|
||||||
} finally {
|
} finally {
|
||||||
setLoading(false); // 🔹 Reactiva botón y oculta loader
|
setLoading(false);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -45,10 +45,10 @@ export default function DownloadReporteXLSX() {
|
|||||||
<button
|
<button
|
||||||
className={styles.downloadBtn}
|
className={styles.downloadBtn}
|
||||||
onClick={handleDownload}
|
onClick={handleDownload}
|
||||||
disabled={loading} // 🔹 Botón deshabilitado
|
disabled={loading}
|
||||||
>
|
>
|
||||||
{loading ? (
|
{loading ? (
|
||||||
<div className={styles.loader}></div> // 🔹 Icono de cargando
|
<div className={styles.loader}></div>
|
||||||
) : (
|
) : (
|
||||||
<img src="/excel.svg" alt="Excel" className={styles.iconExcel} width={30} height={30}/>
|
<img src="/excel.svg" alt="Excel" className={styles.iconExcel} width={30} height={30}/>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -0,0 +1,73 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import styles from "./style.module.css";
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
import { useState } from "react";
|
||||||
|
import axios from "axios";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
filtros: any;
|
||||||
|
count?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function DownloadTable({ filtros, count }: Props) {
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
|
||||||
|
const handleDownload = async () => {
|
||||||
|
if (!filtros) { return }
|
||||||
|
setLoading(true);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const token = Cookies.get("token");
|
||||||
|
const headers = { Authorization: `Bearer ${token}` };
|
||||||
|
|
||||||
|
const endpoint = count
|
||||||
|
? "/equipos/excel/tabla/count"
|
||||||
|
: "/equipos/excel/tabla";
|
||||||
|
|
||||||
|
const response = await axios.post(
|
||||||
|
`${process.env.NEXT_PUBLIC_API_URL}${endpoint}`,
|
||||||
|
filtros,
|
||||||
|
{
|
||||||
|
headers,
|
||||||
|
responseType: "blob",
|
||||||
|
}
|
||||||
|
);
|
||||||
|
const url = window.URL.createObjectURL(new Blob([response.data]));
|
||||||
|
console.log(url)
|
||||||
|
const a = document.createElement("a");
|
||||||
|
a.href = url;
|
||||||
|
a.download = "reporte.xlsx";
|
||||||
|
document.body.appendChild(a);
|
||||||
|
a.click();
|
||||||
|
a.remove();
|
||||||
|
|
||||||
|
window.URL.revokeObjectURL(url);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
alert("Hubo un problema al descargar el archivo.");
|
||||||
|
} finally {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
className={styles.downloadBtn}
|
||||||
|
onClick={handleDownload}
|
||||||
|
disabled={loading}
|
||||||
|
>
|
||||||
|
{loading ? (
|
||||||
|
<div className={styles.loader}></div>
|
||||||
|
) : (
|
||||||
|
<img
|
||||||
|
src="/excel.svg"
|
||||||
|
alt="Excel"
|
||||||
|
className={styles.iconExcel}
|
||||||
|
width={30}
|
||||||
|
height={30}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -95,7 +95,7 @@ function HeatLayer() {
|
|||||||
|
|
||||||
Object.entries(edificios).forEach(([nombre, coords]: any) => {
|
Object.entries(edificios).forEach(([nombre, coords]: any) => {
|
||||||
L.polygon((coords), {
|
L.polygon((coords), {
|
||||||
color: "#77ee9f",
|
color: "#77ee9f00",
|
||||||
weight: 2,
|
weight: 2,
|
||||||
fillOpacity: 0.25
|
fillOpacity: 0.25
|
||||||
})
|
})
|
||||||
@@ -129,7 +129,7 @@ export default function MapaCalor() {
|
|||||||
<div style={{
|
<div style={{
|
||||||
width: "100%",
|
width: "100%",
|
||||||
height: "650px",
|
height: "650px",
|
||||||
marginTop: "40px",
|
marginTop: "10px",
|
||||||
borderRadius: "12px",
|
borderRadius: "12px",
|
||||||
overflow: "hidden",
|
overflow: "hidden",
|
||||||
boxShadow: "0 6px 25px rgba(0,0,0,0.3)"
|
boxShadow: "0 6px 25px rgba(0,0,0,0.3)"
|
||||||
|
|||||||
@@ -25,12 +25,11 @@ const CATEGORIA_MAP: Record<string, { tabla: number }> = {
|
|||||||
"ESCRITORIO PC": { tabla: 0 },
|
"ESCRITORIO PC": { tabla: 0 },
|
||||||
"ESCRITORIO MAC OS": { tabla: 0 },
|
"ESCRITORIO MAC OS": { tabla: 0 },
|
||||||
"ESCRITORIO MAC OS ": { tabla: 0 },
|
"ESCRITORIO MAC OS ": { tabla: 0 },
|
||||||
|
|
||||||
"ESCRITORIO LINUX": { tabla: 0 },
|
"ESCRITORIO LINUX": { tabla: 0 },
|
||||||
|
|
||||||
"PORTÁTILES WINDOWS": { tabla: 2 },
|
"PORTÁTILES WINDOWS": { tabla: 2 },
|
||||||
|
"PORTÁTILES CHROMEBOOK": { tabla: 2 },
|
||||||
"PORTÁTILES MAC OS": { tabla: 2 },
|
"PORTÁTILES MAC OS": { tabla: 2 },
|
||||||
"PORTÁTILES LINUX": { tabla: 2 },
|
|
||||||
|
|
||||||
"TABLETA IPAD OS": { tabla: 1 },
|
"TABLETA IPAD OS": { tabla: 1 },
|
||||||
"TABLETA ANDROID": { tabla: 1 },
|
"TABLETA ANDROID": { tabla: 1 },
|
||||||
@@ -48,7 +47,7 @@ const TITULOS_TABLAS = [
|
|||||||
const SISTEMAS_POR_TABLA: Record<number, readonly string[]> = {
|
const SISTEMAS_POR_TABLA: Record<number, readonly string[]> = {
|
||||||
0: ["Windows", "Linux", "Mac OS"],
|
0: ["Windows", "Linux", "Mac OS"],
|
||||||
1: ["Android", "iPad OS"],
|
1: ["Android", "iPad OS"],
|
||||||
2: ["Windows", "Linux", "Mac OS"],
|
2: ["Windows", "Chrome OS", "Mac OS"],
|
||||||
3: ["Servidor"],
|
3: ["Servidor"],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -58,7 +57,9 @@ function normalizarSO(soRaw: string): string {
|
|||||||
if (so.includes("WINDOWS")) return "Windows";
|
if (so.includes("WINDOWS")) return "Windows";
|
||||||
if (so.includes("LINUX")) return "Linux";
|
if (so.includes("LINUX")) return "Linux";
|
||||||
if (so.includes("MAC")) return "Mac OS";
|
if (so.includes("MAC")) return "Mac OS";
|
||||||
if (so.includes("CHROME")) return "Chrome OS";
|
if (so.includes("CHROME OS")) return "Chrome OS";
|
||||||
|
if (so.includes("ANDROID")) return "Android";
|
||||||
|
|
||||||
if (so.includes("IOS") || so.includes("IPAD")) return "iPad OS";
|
if (so.includes("IOS") || so.includes("IPAD")) return "iPad OS";
|
||||||
|
|
||||||
if (so.includes("SERVER") || so.includes("UNIX")) return "Servidor";
|
if (so.includes("SERVER") || so.includes("UNIX")) return "Servidor";
|
||||||
@@ -175,9 +176,8 @@ export default function Pregunta1() {
|
|||||||
{valores.map((valor, colIndex) => (
|
{valores.map((valor, colIndex) => (
|
||||||
<td key={colIndex}>
|
<td key={colIndex}>
|
||||||
<div
|
<div
|
||||||
className={`${style["input-contenedor"]} ${
|
className={`${style["input-contenedor"]} ${loading ? "skeleton" : ""
|
||||||
loading ? "skeleton" : ""
|
}`}
|
||||||
}`}
|
|
||||||
>
|
>
|
||||||
{!loading ? (
|
{!loading ? (
|
||||||
<input type="number" value={valor} readOnly />
|
<input type="number" value={valor} readOnly />
|
||||||
@@ -201,9 +201,8 @@ export default function Pregunta1() {
|
|||||||
{totalesColumnas.map((t, i) => (
|
{totalesColumnas.map((t, i) => (
|
||||||
<td key={i}>
|
<td key={i}>
|
||||||
<div
|
<div
|
||||||
className={`${style["input-contenedor"]} ${
|
className={`${style["input-contenedor"]} ${loading ? "skeleton" : ""
|
||||||
loading ? "skeleton" : ""
|
}`}
|
||||||
}`}
|
|
||||||
>
|
>
|
||||||
{!loading && t}
|
{!loading && t}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export default function Ranking() {
|
|||||||
}, [year, api_url]);
|
}, [year, api_url]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section>
|
<section style={{width:'100%'}}>
|
||||||
<div className="year-selector">
|
<div className="year-selector">
|
||||||
<div>
|
<div>
|
||||||
<label>Año:</label>
|
<label>Año:</label>
|
||||||
|
|||||||
@@ -0,0 +1,138 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import axios from "axios";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import {
|
||||||
|
Bar,
|
||||||
|
BarChart,
|
||||||
|
CartesianGrid,
|
||||||
|
Legend,
|
||||||
|
ResponsiveContainer,
|
||||||
|
Tooltip,
|
||||||
|
XAxis,
|
||||||
|
YAxis
|
||||||
|
} from "recharts";
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
filtros: any
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AntiguedadData {
|
||||||
|
adscripcion: string
|
||||||
|
antiguedad: string
|
||||||
|
total: number
|
||||||
|
}
|
||||||
|
|
||||||
|
const colores = [
|
||||||
|
"#818CF8",
|
||||||
|
"#34D399",
|
||||||
|
"#FBBF24",
|
||||||
|
"#F87171",
|
||||||
|
"#67E8F9",
|
||||||
|
"#C084FC"
|
||||||
|
]
|
||||||
|
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
export default function Antiguedad({ filtros }: Props) {
|
||||||
|
|
||||||
|
const [data, setData] = useState<AntiguedadData[]>([])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const token = Cookies.get("token");
|
||||||
|
const headers = { Authorization: `Bearer ${token}` };
|
||||||
|
|
||||||
|
const getAntiguedad = async () => {
|
||||||
|
|
||||||
|
const response = await axios.post(
|
||||||
|
`${api_url}/equipos/grafica/antiguedad`,
|
||||||
|
filtros,
|
||||||
|
{ headers }
|
||||||
|
)
|
||||||
|
|
||||||
|
setData(response.data)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
getAntiguedad()
|
||||||
|
|
||||||
|
}, [filtros])
|
||||||
|
|
||||||
|
const tieneAdscripciones = data.some(d => d.adscripcion)
|
||||||
|
|
||||||
|
let dataTransformada = data
|
||||||
|
let adscripciones: string[] = []
|
||||||
|
|
||||||
|
if (tieneAdscripciones) {
|
||||||
|
|
||||||
|
adscripciones = [...new Set(data.map(d => d.adscripcion))]
|
||||||
|
|
||||||
|
dataTransformada = Object.values(
|
||||||
|
data.reduce((acc: any, item: any) => {
|
||||||
|
|
||||||
|
if (!acc[item.antiguedad]) {
|
||||||
|
acc[item.antiguedad] = { antiguedad: item.antiguedad }
|
||||||
|
}
|
||||||
|
|
||||||
|
acc[item.antiguedad][item.adscripcion] = Number(item.total)
|
||||||
|
|
||||||
|
return acc
|
||||||
|
|
||||||
|
}, {})
|
||||||
|
)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
minWidth: "570px",
|
||||||
|
background: "white",
|
||||||
|
borderRadius: "10px",
|
||||||
|
padding: "1rem",
|
||||||
|
maxWidth: "100%"
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
|
||||||
|
<h1 style={{ margin: "0" }}>Antigüedad por equipo</h1>
|
||||||
|
|
||||||
|
<ResponsiveContainer width="100%" aspect={2.5}>
|
||||||
|
|
||||||
|
<BarChart
|
||||||
|
data={dataTransformada}
|
||||||
|
margin={{ top: 20 }}
|
||||||
|
>
|
||||||
|
<CartesianGrid strokeDasharray="3 3" />
|
||||||
|
|
||||||
|
<XAxis dataKey="antiguedad" fontSize={12} />
|
||||||
|
|
||||||
|
<YAxis />
|
||||||
|
<Tooltip
|
||||||
|
formatter={(value) => [`${value}`]}
|
||||||
|
/>
|
||||||
|
<Legend wrapperStyle={{ fontSize: 12 }}/>
|
||||||
|
{tieneAdscripciones ? (
|
||||||
|
|
||||||
|
adscripciones.map((ads, i) => (
|
||||||
|
<Bar
|
||||||
|
key={ads}
|
||||||
|
dataKey={ads}
|
||||||
|
fill={colores[i % colores.length]}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
|
||||||
|
) : (
|
||||||
|
|
||||||
|
<Bar
|
||||||
|
dataKey="total"
|
||||||
|
fill="#095bd6"
|
||||||
|
/>
|
||||||
|
|
||||||
|
)}
|
||||||
|
|
||||||
|
</BarChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,95 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useEffect, useRef } from "react";
|
||||||
|
import { Chart } from "chart.js/auto";
|
||||||
|
import axios from "axios";
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
tipo: "ALUMNO" | "PROFESOR" | "ADMINISTRATIVO";
|
||||||
|
filtros: any
|
||||||
|
}
|
||||||
|
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
export default function Polar({ tipo, filtros }: Props) {
|
||||||
|
const canvasRef = useRef<HTMLCanvasElement | null>(null);
|
||||||
|
const chartRef = useRef<Chart | null>(null);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!canvasRef.current) return;
|
||||||
|
|
||||||
|
const fetchData = async () => {
|
||||||
|
const token = Cookies.get("token");
|
||||||
|
const headers = { Authorization: `Bearer ${token}` };
|
||||||
|
|
||||||
|
try {
|
||||||
|
const res = await axios.post(
|
||||||
|
`${api_url}/equipos/graficaPolar/${tipo}`, filtros, { headers }
|
||||||
|
);
|
||||||
|
|
||||||
|
const apiData = res.data;
|
||||||
|
|
||||||
|
// Orden fijo
|
||||||
|
const labels = [
|
||||||
|
"Menor a 2 años",
|
||||||
|
"Entre 2 y 3 años",
|
||||||
|
"Entre 4 y 5 años",
|
||||||
|
"Mayor a 6 años",
|
||||||
|
];
|
||||||
|
|
||||||
|
// Mapear datos
|
||||||
|
const data = labels.map((label) => {
|
||||||
|
const found = apiData.find(
|
||||||
|
(item: any) => item.antiguedad === label
|
||||||
|
);
|
||||||
|
return found ? Number(found.total) : 0;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Destruir gráfica previa (importante en React)
|
||||||
|
if (chartRef.current) {
|
||||||
|
chartRef.current.destroy();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Crear gráfica
|
||||||
|
chartRef.current = new Chart(canvasRef.current!, {
|
||||||
|
type: "polarArea",
|
||||||
|
data: {
|
||||||
|
labels,
|
||||||
|
datasets: [
|
||||||
|
{
|
||||||
|
data,
|
||||||
|
borderWidth: 1,
|
||||||
|
backgroundColor: [
|
||||||
|
"rgb(75, 192, 192)",
|
||||||
|
"rgb(255, 206, 86)",
|
||||||
|
"rgb(235, 157, 54)",
|
||||||
|
"rgb(255, 99, 132)",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Error al obtener datos:", error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
fetchData();
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
if (chartRef.current) {
|
||||||
|
chartRef.current.destroy();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}, [filtros]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{tipo === 'PROFESOR' ?<h4>PROFESOR Y TECNICO</h4>:
|
||||||
|
<h4>{tipo}</h4>
|
||||||
|
}
|
||||||
|
<canvas ref={canvasRef} height={200} width={350}></canvas>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,110 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import axios from "axios";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts";
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
filtros: any
|
||||||
|
}
|
||||||
|
|
||||||
|
interface procesador {
|
||||||
|
adscripcion: string
|
||||||
|
procesador: string;
|
||||||
|
total: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
const colores = [
|
||||||
|
"#818CF8",
|
||||||
|
"#34D399",
|
||||||
|
"#FBBF24",
|
||||||
|
"#F87171",
|
||||||
|
"#67E8F9",
|
||||||
|
"#C084FC"
|
||||||
|
]
|
||||||
|
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
export default function Procesador({ filtros }: Props) {
|
||||||
|
const [data, setData] = useState<procesador[]>([])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const token = Cookies.get("token");
|
||||||
|
const headers = { Authorization: `Bearer ${token}` };
|
||||||
|
|
||||||
|
const getAntiguedad = async () => {
|
||||||
|
const response = await axios.post(`${api_url}/equipos/grafica/procesador`, filtros, { headers }
|
||||||
|
)
|
||||||
|
|
||||||
|
setData(response.data)
|
||||||
|
}
|
||||||
|
getAntiguedad()
|
||||||
|
}, [filtros])
|
||||||
|
|
||||||
|
const tieneAdscripciones = data.some(d => d.adscripcion)
|
||||||
|
|
||||||
|
let dataTransformada = data
|
||||||
|
let adscripciones: string[] = []
|
||||||
|
|
||||||
|
if (tieneAdscripciones) {
|
||||||
|
|
||||||
|
adscripciones = [...new Set(data.map(d => d.adscripcion))]
|
||||||
|
|
||||||
|
dataTransformada = Object.values(
|
||||||
|
data.reduce((acc: any, item: any) => {
|
||||||
|
|
||||||
|
if (!acc[item.procesador]) {
|
||||||
|
acc[item.procesador] = { procesador: item.procesador }
|
||||||
|
}
|
||||||
|
|
||||||
|
acc[item.procesador][item.adscripcion] = Number(item.total)
|
||||||
|
|
||||||
|
return acc
|
||||||
|
|
||||||
|
}, {})
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div style={{ width: "100%", background: "white", borderRadius: "10px", margin: "5px auto", padding: "1rem" }}>
|
||||||
|
<h1 style={{ margin: "0" }}>Procesador por equipo</h1>
|
||||||
|
<ResponsiveContainer width="100%" aspect={3.5}>
|
||||||
|
<BarChart data={dataTransformada}
|
||||||
|
width={500}
|
||||||
|
height={300}
|
||||||
|
margin={{
|
||||||
|
top: 20,
|
||||||
|
bottom: 20,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<CartesianGrid strokeDasharray="3 3" />
|
||||||
|
<XAxis dataKey="procesador" fontSize={12} angle={40} textAnchor="start" hide />
|
||||||
|
<YAxis />
|
||||||
|
<Tooltip
|
||||||
|
formatter={(value) => [`${value}`]}
|
||||||
|
/>
|
||||||
|
<Legend wrapperStyle={{ fontSize: 12 }}/>
|
||||||
|
{tieneAdscripciones ? (
|
||||||
|
|
||||||
|
adscripciones.map((ads, i) => (
|
||||||
|
<Bar
|
||||||
|
key={ads}
|
||||||
|
dataKey={ads}
|
||||||
|
fill={colores[i % colores.length]}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
|
||||||
|
) : (
|
||||||
|
|
||||||
|
<Bar
|
||||||
|
dataKey="total"
|
||||||
|
fill="#095bd6"
|
||||||
|
/>
|
||||||
|
|
||||||
|
)}
|
||||||
|
</BarChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,108 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import axios from "axios";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts";
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
filtros: any
|
||||||
|
}
|
||||||
|
|
||||||
|
interface so {
|
||||||
|
adscripcion: string
|
||||||
|
so: string;
|
||||||
|
total: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
const colores = [
|
||||||
|
"#818CF8",
|
||||||
|
"#34D399",
|
||||||
|
"#FBBF24",
|
||||||
|
"#F87171",
|
||||||
|
"#67E8F9",
|
||||||
|
"#C084FC"
|
||||||
|
]
|
||||||
|
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
export default function SistemaOperativo({ filtros }: Props) {
|
||||||
|
const [data, setData] = useState<so[]>([])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const token = Cookies.get("token");
|
||||||
|
const headers = { Authorization: `Bearer ${token}` };
|
||||||
|
const getAntiguedad = async () => {
|
||||||
|
const response = await axios.post(`${api_url}/equipos/grafica/so`, filtros, { headers }
|
||||||
|
)
|
||||||
|
|
||||||
|
setData(response.data)
|
||||||
|
}
|
||||||
|
getAntiguedad()
|
||||||
|
}, [filtros])
|
||||||
|
|
||||||
|
const tieneAdscripciones = data.some(d => d.adscripcion)
|
||||||
|
|
||||||
|
let dataTransformada = data
|
||||||
|
let adscripciones: string[] = []
|
||||||
|
|
||||||
|
if (tieneAdscripciones) {
|
||||||
|
|
||||||
|
adscripciones = [...new Set(data.map(d => d.adscripcion))]
|
||||||
|
|
||||||
|
dataTransformada = Object.values(
|
||||||
|
data.reduce((acc: any, item: any) => {
|
||||||
|
|
||||||
|
if (!acc[item.so]) {
|
||||||
|
acc[item.so] = { so: item.so }
|
||||||
|
}
|
||||||
|
|
||||||
|
acc[item.so][item.adscripcion] = Number(item.total)
|
||||||
|
|
||||||
|
return acc
|
||||||
|
|
||||||
|
}, {})
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div style={{ width: "100%", background: "white", borderRadius: "10px", margin: "5px auto", padding: "1rem" }}>
|
||||||
|
<h1 style={{ margin: "0" }}>SistemaOperativo por equipo</h1>
|
||||||
|
<ResponsiveContainer width="100%" aspect={3.5}>
|
||||||
|
<BarChart data={dataTransformada}
|
||||||
|
width={500}
|
||||||
|
height={300}
|
||||||
|
margin={{
|
||||||
|
top: 20,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<CartesianGrid strokeDasharray="3 3" />
|
||||||
|
<XAxis dataKey="so" fontSize={12} angle={30} textAnchor="start" hide />
|
||||||
|
<YAxis />
|
||||||
|
<Tooltip
|
||||||
|
formatter={(value) => [`${value}`]}
|
||||||
|
/>
|
||||||
|
<Legend wrapperStyle={{ fontSize: 12 }}/>
|
||||||
|
{tieneAdscripciones ? (
|
||||||
|
|
||||||
|
adscripciones.map((ads, i) => (
|
||||||
|
<Bar
|
||||||
|
key={ads}
|
||||||
|
dataKey={ads}
|
||||||
|
fill={colores[i % colores.length]}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
|
||||||
|
) : (
|
||||||
|
|
||||||
|
<Bar
|
||||||
|
dataKey="total"
|
||||||
|
fill="#095bd6"
|
||||||
|
/>
|
||||||
|
|
||||||
|
)}
|
||||||
|
</BarChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,112 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import axios from "axios";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts";
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
filtros: any
|
||||||
|
}
|
||||||
|
|
||||||
|
interface UsoData {
|
||||||
|
uso: string
|
||||||
|
adscripcion: string
|
||||||
|
total: number
|
||||||
|
}
|
||||||
|
|
||||||
|
const colores = [
|
||||||
|
"#818CF8",
|
||||||
|
"#34D399",
|
||||||
|
"#FBBF24",
|
||||||
|
"#F87171",
|
||||||
|
"#67E8F9",
|
||||||
|
"#C084FC"
|
||||||
|
]
|
||||||
|
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
export default function Uso({ filtros }: Props) {
|
||||||
|
const [data, setData] = useState<UsoData[]>([])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const token = Cookies.get("token");
|
||||||
|
const headers = { Authorization: `Bearer ${token}` };
|
||||||
|
|
||||||
|
const getUso = async () => {
|
||||||
|
const response = await axios.post(
|
||||||
|
`${api_url}/equipos/grafica/uso`, filtros,
|
||||||
|
{ headers }
|
||||||
|
)
|
||||||
|
setData(response.data)
|
||||||
|
}
|
||||||
|
getUso()
|
||||||
|
|
||||||
|
}, [filtros])
|
||||||
|
|
||||||
|
const tieneAdscripciones = data.some(d => d.adscripcion)
|
||||||
|
|
||||||
|
let dataTransformada = data
|
||||||
|
let adscripciones: string[] = []
|
||||||
|
|
||||||
|
if (tieneAdscripciones) {
|
||||||
|
|
||||||
|
adscripciones = [...new Set(data.map(d => d.adscripcion))]
|
||||||
|
|
||||||
|
dataTransformada = Object.values(
|
||||||
|
data.reduce((acc: any, item: any) => {
|
||||||
|
|
||||||
|
if (!acc[item.uso]) {
|
||||||
|
acc[item.uso] = { uso: item.uso }
|
||||||
|
}
|
||||||
|
|
||||||
|
acc[item.uso][item.adscripcion] = Number(item.total)
|
||||||
|
|
||||||
|
return acc
|
||||||
|
|
||||||
|
}, {})
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div style={{ minWidth: "570px", background: "white", borderRadius: "10px", padding: "1rem" }}>
|
||||||
|
<h1 style={{ margin: "0" }}>Uso por equipo</h1>
|
||||||
|
<ResponsiveContainer width="100%" aspect={2.5} minHeight={220}>
|
||||||
|
<BarChart data={dataTransformada}
|
||||||
|
width={500}
|
||||||
|
height={300}
|
||||||
|
margin={{
|
||||||
|
top: 20,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<CartesianGrid strokeDasharray="3 3" />
|
||||||
|
<XAxis dataKey="uso" fontSize={12} />
|
||||||
|
<YAxis />
|
||||||
|
<Tooltip
|
||||||
|
formatter={(value) => [`${value}`]}
|
||||||
|
/>
|
||||||
|
<Legend wrapperStyle={{ fontSize: 12 }}/>
|
||||||
|
{tieneAdscripciones ? (
|
||||||
|
|
||||||
|
adscripciones.map((ads, i) => (
|
||||||
|
<Bar
|
||||||
|
key={ads}
|
||||||
|
dataKey={ads}
|
||||||
|
fill={colores[i % colores.length]}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
|
||||||
|
) : (
|
||||||
|
|
||||||
|
<Bar
|
||||||
|
dataKey="total"
|
||||||
|
fill="#095bd6"
|
||||||
|
/>
|
||||||
|
|
||||||
|
)}
|
||||||
|
</BarChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
//IO
|
||||||
@@ -1,76 +1,122 @@
|
|||||||
.container{
|
.container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding:20px;
|
padding: 20px;
|
||||||
background:white;
|
background: white;
|
||||||
border-radius:10px;
|
border-radius: 10px;
|
||||||
box-shadow:0 2px 8px rgba(0,0,0,0.08);
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
||||||
font-family:Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
font-size:14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title{
|
.title {
|
||||||
font-size:18px;
|
font-size: 18px;
|
||||||
margin-bottom:15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.label{
|
.label {
|
||||||
font-size:13px;
|
font-size: 13px;
|
||||||
color:#444;
|
color: #444;
|
||||||
}
|
}
|
||||||
|
|
||||||
.listaContainer{
|
.listaContainer {
|
||||||
margin-top:20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.subtitle{
|
.subtitle {
|
||||||
font-size:14px;
|
font-size: 14px;
|
||||||
margin-bottom:10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.empty{
|
.empty {
|
||||||
font-size:13px;
|
font-size: 13px;
|
||||||
color:#777;
|
color: #777;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lista{
|
.lista {
|
||||||
display:flex;
|
display: flex;
|
||||||
flex-wrap:wrap;
|
flex-wrap: wrap;
|
||||||
gap:8px;
|
gap: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chip{
|
.chip {
|
||||||
display:flex;
|
display: flex;
|
||||||
align-items:center;
|
align-items: center;
|
||||||
background:#f1f3f5;
|
background: linear-gradient(135deg, #2563eb, #7c3aed);
|
||||||
border-radius:20px;
|
border-radius: 6px;
|
||||||
padding:5px 10px;
|
padding: 5px 10px;
|
||||||
font-size:13px;
|
font-size: 13px;
|
||||||
|
text-align: start;
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.remove{
|
.remove {
|
||||||
border:none;
|
border: none;
|
||||||
background:none;
|
background: rgba(255,255,255,0.2);
|
||||||
margin-left:6px;
|
margin-left: 8px;
|
||||||
cursor:pointer;
|
cursor: pointer;
|
||||||
color:#777;
|
color: white;
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 12px;
|
||||||
|
transition: all 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.remove:hover{
|
.remove:hover {
|
||||||
color:#c0392b;
|
background: rgba(255,255,255,0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.button{
|
.button {
|
||||||
margin-top:20px;
|
margin-top: 20px;
|
||||||
padding:8px 14px;
|
padding: 12px 20px;
|
||||||
border:none;
|
border: none;
|
||||||
border-radius:6px;
|
border-radius: 10px;
|
||||||
background:#2563eb;
|
background: linear-gradient(135deg, #2563eb, #4f46e5);
|
||||||
color:white;
|
color: white;
|
||||||
font-size:13px;
|
font-size: 14px;
|
||||||
cursor:pointer;
|
font-weight: 600;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.25s ease;
|
||||||
|
box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.button:hover{
|
.button:hover {
|
||||||
background:#1d4ed8;
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
|
||||||
|
}
|
||||||
|
.graficas {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graficas > div {
|
||||||
|
background: white;
|
||||||
|
border-radius: 16px !important;
|
||||||
|
padding: 15px !important;
|
||||||
|
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graficas > div:hover {
|
||||||
|
transform: translateY(-5px);
|
||||||
|
box-shadow: 0 15px 35px rgba(0,0,0,0.12);
|
||||||
|
}
|
||||||
|
|
||||||
|
.filtro {
|
||||||
|
display: flex;
|
||||||
|
gap: 10px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: start;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.containerSelection {
|
||||||
|
width: 100%;
|
||||||
|
width: 200px
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import { useEffect, useState } from 'react'
|
||||||
|
import styles from './TableAntiguedad.module.css'
|
||||||
|
import axios from 'axios'
|
||||||
|
import DownloadTable from '@/components/Dowload/tabla'
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
filtros: any
|
||||||
|
count: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
export default function TableAntiguedad({ filtros, count }: Props) {
|
||||||
|
|
||||||
|
const [data, setData] = useState<any[]>([])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!filtros) { return }
|
||||||
|
|
||||||
|
const getUso = async () => {
|
||||||
|
const token = Cookies.get("token");
|
||||||
|
const headers = { Authorization: `Bearer ${token}` };
|
||||||
|
|
||||||
|
const endpoint = count
|
||||||
|
? `${api_url}/equipos/tabla/count`
|
||||||
|
: `${api_url}/equipos/tabla`
|
||||||
|
|
||||||
|
const response = await axios.post(endpoint, filtros,{headers})
|
||||||
|
setData(response.data)
|
||||||
|
}
|
||||||
|
|
||||||
|
getUso()
|
||||||
|
}, [filtros, count])
|
||||||
|
|
||||||
|
const columnas = data.length > 0 ? Object.keys(data[0]) : []
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={styles.container}>
|
||||||
|
{count ? <DownloadTable filtros={filtros} count={true} /> : <DownloadTable filtros={filtros} count={false} />}
|
||||||
|
<table className={styles.table}>
|
||||||
|
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
{columnas.map((col) => (
|
||||||
|
<th key={col}>{formatearTitulo(col)}</th>
|
||||||
|
))}
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
|
||||||
|
<tbody>
|
||||||
|
{data.length === 0 ? (
|
||||||
|
<tr>
|
||||||
|
<td colSpan={columnas.length} className={styles.empty}>
|
||||||
|
No hay datos
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
) : (
|
||||||
|
data.map((item, index) => (
|
||||||
|
<tr key={index}>
|
||||||
|
{columnas.map((col) => (
|
||||||
|
<td key={col}>
|
||||||
|
{item[col] ?? '-'}
|
||||||
|
</td>
|
||||||
|
))}
|
||||||
|
</tr>
|
||||||
|
))
|
||||||
|
)}
|
||||||
|
</tbody>
|
||||||
|
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatearTitulo(col: string) {
|
||||||
|
const nombres: any = {
|
||||||
|
inventario: 'No. Inventario',
|
||||||
|
adscripcion: 'Adscripción',
|
||||||
|
antiguedad: 'Antigüedad',
|
||||||
|
procesador: 'Procesador',
|
||||||
|
sistema_operativo: 'Sistema Operativo',
|
||||||
|
uso: 'Uso'
|
||||||
|
}
|
||||||
|
|
||||||
|
return nombres[col] || col
|
||||||
|
}
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
.container {
|
||||||
|
width: 100%;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
font-size: 14px;
|
||||||
|
background: #ffffff;
|
||||||
|
border-radius: 12px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table thead {
|
||||||
|
background: linear-gradient(135deg, #a5a5a5, #878787);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table th {
|
||||||
|
padding: 12px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table td {
|
||||||
|
padding: 10px 12px;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table tbody tr:hover {
|
||||||
|
background-color: #f5f8ff;
|
||||||
|
transition: 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.total {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #095bd6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.empty {
|
||||||
|
text-align: center;
|
||||||
|
padding: 20px;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
@@ -1,99 +1,403 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import Select from "react-select"
|
import Select from "react-select"
|
||||||
import { useState } from "react"
|
import { useEffect, useState } from "react"
|
||||||
import styles from "./Reporte.module.css"
|
import styles from "./Reporte.module.css"
|
||||||
|
import axios from "axios"
|
||||||
|
|
||||||
|
import Antiguedad from "./Graficas/Antiguedad"
|
||||||
|
import Procesador from "./Graficas/Procesador"
|
||||||
|
import SistemaOperativo from "./Graficas/SistemaOperativo"
|
||||||
|
import Uso from "./Graficas/Uso"
|
||||||
|
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
import TableAntiguedad from "./Tablas/Antiguedad"
|
||||||
|
import Polar from "./Graficas/Polar"
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
type AdscripcionOption = {
|
type AdscripcionOption = {
|
||||||
value: string
|
id_adscripcion: string
|
||||||
label: string
|
adscripcion: string
|
||||||
|
}
|
||||||
|
|
||||||
|
type UsoOption = {
|
||||||
|
id_uso: string
|
||||||
|
tipo_uso: string
|
||||||
|
}
|
||||||
|
|
||||||
|
type SoOption = {
|
||||||
|
id_sistema_operativo: string
|
||||||
|
sistema_operativo: string
|
||||||
|
}
|
||||||
|
|
||||||
|
type ProcesadorOption = {
|
||||||
|
id_procesador: string
|
||||||
|
procesador: string
|
||||||
|
}
|
||||||
|
|
||||||
|
type AntiguedadOption = {
|
||||||
|
antiguedad: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Reporte() {
|
export default function Reporte() {
|
||||||
|
|
||||||
|
const [adscripciones, setAdscripciones] = useState<AdscripcionOption[]>([])
|
||||||
const [adscripcionesSeleccionadas, setAdscripcionesSeleccionadas] = useState<AdscripcionOption[]>([])
|
const [adscripcionesSeleccionadas, setAdscripcionesSeleccionadas] = useState<AdscripcionOption[]>([])
|
||||||
|
|
||||||
const adscripciones: AdscripcionOption[] = [
|
const [procesadores, setProcesadores] = useState<ProcesadorOption[]>([])
|
||||||
{ value: "informatica", label: "Informática" },
|
const [procesadorSeleccionado, setProcesadorSeleccionado] = useState<ProcesadorOption[]>([])
|
||||||
{ value: "rh", label: "Recursos Humanos" },
|
|
||||||
{ value: "finanzas", label: "Finanzas" },
|
|
||||||
{ value: "juridico", label: "Jurídico" }
|
|
||||||
]
|
|
||||||
|
|
||||||
const agregarAdscripcion = (option: AdscripcionOption | null) => {
|
const [sistemasOperativos, setSistemasOperativos] = useState<SoOption[]>([])
|
||||||
|
const [soSeleccionado, setSoSeleccionado] = useState<SoOption[]>([])
|
||||||
|
|
||||||
|
const [usos, setUsos] = useState<UsoOption[]>([{ id_uso: "0", tipo_uso: "Todos" }])
|
||||||
|
const [usoSeleccionado, setUsoSeleccionado] = useState<UsoOption[]>([])
|
||||||
|
|
||||||
|
const [antiguedad, setAntiguedad] = useState<AntiguedadOption[]>([{ antiguedad: "Todos" }, { antiguedad: "Menor a 2 años" }, { antiguedad: "Entre 2 y 3 años" }, { antiguedad: "Entre 4 y 5 años" }, { antiguedad: "Mayor a 6 años" }])
|
||||||
|
const [antiguedadSeleccionada, setAntiguedadSeleccionada] = useState<AntiguedadOption[]>([])
|
||||||
|
|
||||||
|
const [filtros, setFiltros] = useState<any>(null)
|
||||||
|
const [filtrosTable, setFiltrosTable] = useState<any>(null)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
|
||||||
|
const cargarDatos = async () => {
|
||||||
|
const token = Cookies.get("token");
|
||||||
|
const headers = { Authorization: `Bearer ${token}` };
|
||||||
|
const [
|
||||||
|
adscripcionRes,
|
||||||
|
procesadorRes,
|
||||||
|
usoRes,
|
||||||
|
soRes,
|
||||||
|
] = await Promise.all([
|
||||||
|
axios.get(`${api_url}/equipos/adscripciones`, { headers }),
|
||||||
|
axios.get(`${api_url}/equipos/procesador-tipo-equipos`, { headers }),
|
||||||
|
axios.get(`${api_url}/equipos/usos`, { headers }),
|
||||||
|
axios.get(`${api_url}/equipos/sistemas-operativos`, { headers }),
|
||||||
|
])
|
||||||
|
|
||||||
|
setAdscripciones([
|
||||||
|
{ id_adscripcion: "0", adscripcion: "Todos" },
|
||||||
|
...adscripcionRes.data
|
||||||
|
])
|
||||||
|
|
||||||
|
setProcesadores([
|
||||||
|
{ id_procesador: "0", procesador: "Todos" },
|
||||||
|
...procesadorRes.data
|
||||||
|
])
|
||||||
|
|
||||||
|
setUsos([
|
||||||
|
{ id_uso: "0", tipo_uso: "Todos" },
|
||||||
|
...usoRes.data
|
||||||
|
])
|
||||||
|
|
||||||
|
setSistemasOperativos([
|
||||||
|
{ id_sistema_operativo: "0", sistema_operativo: "Todos" },
|
||||||
|
...soRes.data
|
||||||
|
])
|
||||||
|
}
|
||||||
|
|
||||||
|
cargarDatos()
|
||||||
|
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
function agregar<T>(option: T | null, lista: T[], setLista: (v: T[]) => void, key: keyof T) {
|
||||||
|
|
||||||
if (!option) return
|
if (!option) return
|
||||||
|
|
||||||
const existe = adscripcionesSeleccionadas.some(a => a.value === option.value)
|
const existe = lista.some((item) => item[key] === option[key])
|
||||||
|
|
||||||
if (!existe) {
|
if (!existe) {
|
||||||
setAdscripcionesSeleccionadas([...adscripcionesSeleccionadas, option])
|
setLista([...lista, option])
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const eliminarAdscripcion = (value: string) => {
|
function eliminar<T>(id: string, lista: T[], setLista: (v: T[]) => void, key: keyof T) {
|
||||||
setAdscripcionesSeleccionadas(
|
|
||||||
adscripcionesSeleccionadas.filter(a => a.value !== value)
|
setLista(
|
||||||
|
lista.filter((item) => item[key] !== id)
|
||||||
)
|
)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const generarReporte = () => {
|
const generarReporte = () => {
|
||||||
console.log("Adscripciones seleccionadas:", adscripcionesSeleccionadas)
|
|
||||||
|
const limpiar = (arr: string[]) => {
|
||||||
|
if (arr.includes("0")) return []
|
||||||
|
return arr
|
||||||
|
}
|
||||||
|
|
||||||
|
const filtrosTable = {
|
||||||
|
adscripciones: adscripcionesSeleccionadas.map(a => String(a.id_adscripcion)),
|
||||||
|
procesadores: procesadorSeleccionado.map(p => String(p.id_procesador)),
|
||||||
|
sistemas: soSeleccionado.map(s => String(s.id_sistema_operativo)),
|
||||||
|
usos: usoSeleccionado.map(u => String(u.id_uso)),
|
||||||
|
antiguedad: antiguedadSeleccionada.map(u => String(u.antiguedad))
|
||||||
|
}
|
||||||
|
|
||||||
|
const filtros = {
|
||||||
|
adscripciones: limpiar(adscripcionesSeleccionadas.map(a => String(a.id_adscripcion))),
|
||||||
|
procesadores: limpiar(procesadorSeleccionado.map(p => String(p.id_procesador))),
|
||||||
|
sistemas: limpiar(soSeleccionado.map(s => String(s.id_sistema_operativo))),
|
||||||
|
usos: limpiar(usoSeleccionado.map(u => String(u.id_uso))),
|
||||||
|
antiguedad: limpiar(antiguedadSeleccionada.map(a => String(a.antiguedad)))
|
||||||
|
}
|
||||||
|
|
||||||
|
setFiltros(filtros)
|
||||||
|
setFiltrosTable(filtrosTable)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
|
<div className={styles.container}>
|
||||||
|
|
||||||
<div className={styles.container}>
|
<section className={styles.filtro}>
|
||||||
|
|
||||||
<h2 className={styles.title}>Reporte de Antigüedad de Equipos</h2>
|
{/* ADSCRIPCION */}
|
||||||
|
|
||||||
<label className={styles.label}>Buscar adscripción</label>
|
<div className={styles.containerSelection}>
|
||||||
|
<label className={styles.adscripcion}>Adscripción</label>
|
||||||
|
|
||||||
<Select
|
<Select
|
||||||
options={adscripciones}
|
instanceId="adscripcion"
|
||||||
placeholder="Escribe para buscar..."
|
options={adscripciones}
|
||||||
onChange={(value) => agregarAdscripcion(value)}
|
getOptionLabel={(o) => o.adscripcion}
|
||||||
/>
|
getOptionValue={(o) => o.id_adscripcion}
|
||||||
|
onChange={(o) => agregar(o, adscripcionesSeleccionadas, setAdscripcionesSeleccionadas, "id_adscripcion")}
|
||||||
|
/>
|
||||||
|
|
||||||
<div className={styles.listaContainer}>
|
<div className={styles.lista}>
|
||||||
|
|
||||||
<h4 className={styles.subtitle}>
|
{adscripcionesSeleccionadas.map((a) => (
|
||||||
Adscripciones seleccionadas ({adscripcionesSeleccionadas.length})
|
|
||||||
</h4>
|
|
||||||
|
|
||||||
{adscripcionesSeleccionadas.length === 0 && (
|
<div key={a.id_adscripcion} className={styles.chip}>
|
||||||
<p className={styles.empty}>No hay adscripciones seleccionadas</p>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<div className={styles.lista}>
|
<span>{a.adscripcion}</span>
|
||||||
|
|
||||||
{adscripcionesSeleccionadas.map((ads) => (
|
<button
|
||||||
<div key={ads.value} className={styles.chip}>
|
className={styles.remove}
|
||||||
|
onClick={() => eliminar(a.id_adscripcion, adscripcionesSeleccionadas, setAdscripcionesSeleccionadas, "id_adscripcion")}
|
||||||
|
>
|
||||||
|
✕
|
||||||
|
</button>
|
||||||
|
|
||||||
<span>{ads.label}</span>
|
</div>
|
||||||
|
|
||||||
<button
|
))}
|
||||||
className={styles.remove}
|
|
||||||
onClick={() => eliminarAdscripcion(ads.value)}
|
|
||||||
>
|
|
||||||
✕
|
|
||||||
</button>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
))}
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/* PROCESADOR */}
|
||||||
|
|
||||||
|
<div className={styles.containerSelection}>
|
||||||
|
|
||||||
|
<label className={styles.adscripcion}>Procesador</label>
|
||||||
|
|
||||||
|
<Select
|
||||||
|
instanceId="procesadores"
|
||||||
|
options={procesadores}
|
||||||
|
getOptionLabel={(o) => o.procesador}
|
||||||
|
getOptionValue={(o) => o.id_procesador}
|
||||||
|
onChange={(o) =>
|
||||||
|
agregar(o, procesadorSeleccionado, setProcesadorSeleccionado, "id_procesador")
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className={styles.lista}>
|
||||||
|
|
||||||
|
{procesadorSeleccionado.map((p) => (
|
||||||
|
|
||||||
|
<div key={p.id_procesador} className={styles.chip}>
|
||||||
|
|
||||||
|
<span>{p.procesador}</span>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className={styles.remove}
|
||||||
|
onClick={() =>
|
||||||
|
eliminar(p.id_procesador, procesadorSeleccionado, setProcesadorSeleccionado, "id_procesador")
|
||||||
|
}
|
||||||
|
>
|
||||||
|
✕
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
))}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* SISTEMA OPERATIVO */}
|
||||||
|
|
||||||
|
<div className={styles.containerSelection}>
|
||||||
|
|
||||||
|
<label className={styles.adscripcion}>Sistema Operativo</label>
|
||||||
|
|
||||||
|
<Select
|
||||||
|
instanceId="sistemasOperativos"
|
||||||
|
options={sistemasOperativos}
|
||||||
|
getOptionLabel={(o) => o.sistema_operativo}
|
||||||
|
getOptionValue={(o) => o.id_sistema_operativo}
|
||||||
|
onChange={(o) =>
|
||||||
|
agregar(o, soSeleccionado, setSoSeleccionado, "id_sistema_operativo")
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className={styles.lista}>
|
||||||
|
|
||||||
|
{soSeleccionado.map((s) => (
|
||||||
|
|
||||||
|
<div key={s.id_sistema_operativo} className={styles.chip}>
|
||||||
|
|
||||||
|
<span>{s.sistema_operativo}</span>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className={styles.remove}
|
||||||
|
onClick={() =>
|
||||||
|
eliminar(s.id_sistema_operativo, soSeleccionado, setSoSeleccionado, "id_sistema_operativo")
|
||||||
|
}
|
||||||
|
>
|
||||||
|
✕
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
))}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/* USO */}
|
||||||
|
|
||||||
|
<div className={styles.containerSelection}>
|
||||||
|
|
||||||
|
<label className={styles.adscripcion}>Uso</label>
|
||||||
|
|
||||||
|
<Select
|
||||||
|
instanceId="usos"
|
||||||
|
options={usos}
|
||||||
|
getOptionLabel={(o) => o.tipo_uso}
|
||||||
|
getOptionValue={(o) => o.id_uso}
|
||||||
|
onChange={(o) =>
|
||||||
|
agregar(o, usoSeleccionado, setUsoSeleccionado, "id_uso")
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className={styles.lista}>
|
||||||
|
|
||||||
|
{usoSeleccionado.map((u) => (
|
||||||
|
|
||||||
|
<div key={u.id_uso} className={styles.chip}>
|
||||||
|
|
||||||
|
<span>{u.tipo_uso}</span>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className={styles.remove}
|
||||||
|
onClick={() =>
|
||||||
|
eliminar(u.id_uso, usoSeleccionado, setUsoSeleccionado, "id_uso")
|
||||||
|
}
|
||||||
|
>
|
||||||
|
✕
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
))}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className={styles.containerSelection}>
|
||||||
|
|
||||||
|
<label className={styles.adscripcion}>Antiguedad</label>
|
||||||
|
|
||||||
|
<Select
|
||||||
|
instanceId="antiguedad"
|
||||||
|
options={antiguedad}
|
||||||
|
getOptionLabel={(o) => o.antiguedad}
|
||||||
|
getOptionValue={(o) => o.antiguedad}
|
||||||
|
onChange={(o) =>
|
||||||
|
agregar(o, antiguedadSeleccionada, setAntiguedadSeleccionada, "antiguedad")
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className={styles.lista}>
|
||||||
|
|
||||||
|
{antiguedadSeleccionada.map((p) => (
|
||||||
|
|
||||||
|
<div key={p.antiguedad} className={styles.chip}>
|
||||||
|
|
||||||
|
<span>{p.antiguedad}</span>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className={styles.remove}
|
||||||
|
onClick={() =>
|
||||||
|
eliminar(p.antiguedad, antiguedadSeleccionada, setAntiguedadSeleccionada, "antiguedad")
|
||||||
|
}
|
||||||
|
>
|
||||||
|
✕
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
))}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className={styles.button}
|
||||||
|
onClick={generarReporte}
|
||||||
|
>
|
||||||
|
Buscar
|
||||||
|
</button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button
|
|
||||||
className={styles.button}
|
|
||||||
onClick={generarReporte}
|
|
||||||
>
|
|
||||||
Generar reporte
|
|
||||||
</button>
|
|
||||||
|
|
||||||
</div>
|
<section className={styles.graficas}>
|
||||||
|
|
||||||
|
<Antiguedad
|
||||||
|
filtros={filtros}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Uso
|
||||||
|
filtros={filtros}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Polar tipo="ALUMNO" filtros={filtros} />
|
||||||
|
<Polar tipo="PROFESOR" filtros={filtros} />
|
||||||
|
<Polar tipo="ADMINISTRATIVO" filtros={filtros} />
|
||||||
|
|
||||||
|
<Procesador
|
||||||
|
filtros={filtros}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<SistemaOperativo
|
||||||
|
filtros={filtros}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<TableAntiguedad filtros={filtros} count={true} />
|
||||||
|
<TableAntiguedad filtros={filtrosTable} count={false} />
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
</>
|
||||||
)
|
)
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,138 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import axios from "axios";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import {
|
||||||
|
Bar,
|
||||||
|
BarChart,
|
||||||
|
CartesianGrid,
|
||||||
|
Legend,
|
||||||
|
ResponsiveContainer,
|
||||||
|
Tooltip,
|
||||||
|
XAxis,
|
||||||
|
YAxis
|
||||||
|
} from "recharts";
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
filtros: any
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AntiguedadData {
|
||||||
|
adscripcion: string
|
||||||
|
antiguedad: string
|
||||||
|
total: number
|
||||||
|
}
|
||||||
|
|
||||||
|
const colores = [
|
||||||
|
"#818CF8",
|
||||||
|
"#34D399",
|
||||||
|
"#FBBF24",
|
||||||
|
"#F87171",
|
||||||
|
"#67E8F9",
|
||||||
|
"#C084FC"
|
||||||
|
]
|
||||||
|
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
export default function Antiguedad({ filtros }: Props) {
|
||||||
|
|
||||||
|
const [data, setData] = useState<AntiguedadData[]>([])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const token = Cookies.get("token");
|
||||||
|
const headers = { Authorization: `Bearer ${token}` };
|
||||||
|
|
||||||
|
const getAntiguedad = async () => {
|
||||||
|
|
||||||
|
const response = await axios.post(
|
||||||
|
`${api_url}/equipos/graficaPerifericos/antiguedad`,
|
||||||
|
filtros,
|
||||||
|
{ headers }
|
||||||
|
)
|
||||||
|
|
||||||
|
setData(response.data)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
getAntiguedad()
|
||||||
|
|
||||||
|
}, [filtros])
|
||||||
|
|
||||||
|
const tieneAdscripciones = data.some(d => d.adscripcion)
|
||||||
|
|
||||||
|
let dataTransformada = data
|
||||||
|
let adscripciones: string[] = []
|
||||||
|
|
||||||
|
if (tieneAdscripciones) {
|
||||||
|
|
||||||
|
adscripciones = [...new Set(data.map(d => d.adscripcion))]
|
||||||
|
|
||||||
|
dataTransformada = Object.values(
|
||||||
|
data.reduce((acc: any, item: any) => {
|
||||||
|
|
||||||
|
if (!acc[item.antiguedad]) {
|
||||||
|
acc[item.antiguedad] = { antiguedad: item.antiguedad }
|
||||||
|
}
|
||||||
|
|
||||||
|
acc[item.antiguedad][item.adscripcion] = Number(item.total)
|
||||||
|
|
||||||
|
return acc
|
||||||
|
|
||||||
|
}, {})
|
||||||
|
)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
minWidth: "570px",
|
||||||
|
background: "white",
|
||||||
|
borderRadius: "10px",
|
||||||
|
padding: "1rem",
|
||||||
|
maxWidth: "100%"
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
|
||||||
|
<h1 style={{ margin: "0" }}>Antigüedad por periferico</h1>
|
||||||
|
|
||||||
|
<ResponsiveContainer width="100%" aspect={2.5}>
|
||||||
|
|
||||||
|
<BarChart
|
||||||
|
data={dataTransformada}
|
||||||
|
margin={{ top: 20 }}
|
||||||
|
>
|
||||||
|
<CartesianGrid strokeDasharray="3 3" />
|
||||||
|
|
||||||
|
<XAxis dataKey="antiguedad" fontSize={12} />
|
||||||
|
|
||||||
|
<YAxis />
|
||||||
|
<Tooltip
|
||||||
|
formatter={(value) => [`${value}`]}
|
||||||
|
/>
|
||||||
|
<Legend />
|
||||||
|
{tieneAdscripciones ? (
|
||||||
|
|
||||||
|
adscripciones.map((ads, i) => (
|
||||||
|
<Bar
|
||||||
|
key={ads}
|
||||||
|
dataKey={ads}
|
||||||
|
fill={colores[i % colores.length]}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
|
||||||
|
) : (
|
||||||
|
|
||||||
|
<Bar
|
||||||
|
dataKey="total"
|
||||||
|
fill="#095bd6"
|
||||||
|
/>
|
||||||
|
|
||||||
|
)}
|
||||||
|
|
||||||
|
</BarChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,105 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import axios from "axios";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
filtros: any
|
||||||
|
}
|
||||||
|
|
||||||
|
interface procesador {
|
||||||
|
adscripcion: string
|
||||||
|
procesador: string;
|
||||||
|
total: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
const colores = [
|
||||||
|
"#818CF8",
|
||||||
|
"#34D399",
|
||||||
|
"#FBBF24",
|
||||||
|
"#F87171",
|
||||||
|
"#67E8F9",
|
||||||
|
"#C084FC"
|
||||||
|
]
|
||||||
|
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
export default function Procesador({ filtros }: Props) {
|
||||||
|
const [data, setData] = useState<procesador[]>([])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const getAntiguedad = async () => {
|
||||||
|
const response = await axios.post(`${api_url}/equipos/graficaPerifericos/procesador`, filtros)
|
||||||
|
|
||||||
|
setData(response.data)
|
||||||
|
}
|
||||||
|
getAntiguedad()
|
||||||
|
}, [filtros])
|
||||||
|
|
||||||
|
const tieneAdscripciones = data.some(d => d.adscripcion)
|
||||||
|
|
||||||
|
let dataTransformada = data
|
||||||
|
let adscripciones: string[] = []
|
||||||
|
|
||||||
|
if (tieneAdscripciones) {
|
||||||
|
|
||||||
|
adscripciones = [...new Set(data.map(d => d.adscripcion))]
|
||||||
|
|
||||||
|
dataTransformada = Object.values(
|
||||||
|
data.reduce((acc: any, item: any) => {
|
||||||
|
|
||||||
|
if (!acc[item.procesador]) {
|
||||||
|
acc[item.procesador] = { procesador: item.procesador }
|
||||||
|
}
|
||||||
|
|
||||||
|
acc[item.procesador][item.adscripcion] = Number(item.total)
|
||||||
|
|
||||||
|
return acc
|
||||||
|
|
||||||
|
}, {})
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div style={{ width: "100%", background: "white", borderRadius: "10px", margin: "5px auto", padding: "1rem" }}>
|
||||||
|
<h1 style={{ margin: "0" }}>Procesador por equipo</h1>
|
||||||
|
<ResponsiveContainer width="100%" aspect={3.5}>
|
||||||
|
<BarChart data={dataTransformada}
|
||||||
|
width={500}
|
||||||
|
height={300}
|
||||||
|
margin={{
|
||||||
|
top: 20,
|
||||||
|
bottom: 20,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<CartesianGrid strokeDasharray="3 3" />
|
||||||
|
<XAxis dataKey="procesador" fontSize={12} angle={40} textAnchor="start" hide />
|
||||||
|
<YAxis />
|
||||||
|
<Tooltip
|
||||||
|
formatter={(value) => [`${value}`]}
|
||||||
|
/>
|
||||||
|
<Legend />
|
||||||
|
{tieneAdscripciones ? (
|
||||||
|
|
||||||
|
adscripciones.map((ads, i) => (
|
||||||
|
<Bar
|
||||||
|
key={ads}
|
||||||
|
dataKey={ads}
|
||||||
|
fill={colores[i % colores.length]}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
|
||||||
|
) : (
|
||||||
|
|
||||||
|
<Bar
|
||||||
|
dataKey="total"
|
||||||
|
fill="#095bd6"
|
||||||
|
/>
|
||||||
|
|
||||||
|
)}
|
||||||
|
</BarChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import axios from "axios";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
filtros: any
|
||||||
|
}
|
||||||
|
|
||||||
|
interface so {
|
||||||
|
adscripcion: string
|
||||||
|
so: string;
|
||||||
|
total: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
const colores = [
|
||||||
|
"#818CF8",
|
||||||
|
"#34D399",
|
||||||
|
"#FBBF24",
|
||||||
|
"#F87171",
|
||||||
|
"#67E8F9",
|
||||||
|
"#C084FC"
|
||||||
|
]
|
||||||
|
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
export default function SistemaOperativo({ filtros }: Props) {
|
||||||
|
const [data, setData] = useState<so[]>([])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const getAntiguedad = async () => {
|
||||||
|
const response = await axios.post(`${api_url}/equipos/graficaPerifericos/so`, filtros)
|
||||||
|
|
||||||
|
setData(response.data)
|
||||||
|
}
|
||||||
|
getAntiguedad()
|
||||||
|
}, [filtros])
|
||||||
|
|
||||||
|
const tieneAdscripciones = data.some(d => d.adscripcion)
|
||||||
|
|
||||||
|
let dataTransformada = data
|
||||||
|
let adscripciones: string[] = []
|
||||||
|
|
||||||
|
if (tieneAdscripciones) {
|
||||||
|
|
||||||
|
adscripciones = [...new Set(data.map(d => d.adscripcion))]
|
||||||
|
|
||||||
|
dataTransformada = Object.values(
|
||||||
|
data.reduce((acc: any, item: any) => {
|
||||||
|
|
||||||
|
if (!acc[item.so]) {
|
||||||
|
acc[item.so] = { so: item.so }
|
||||||
|
}
|
||||||
|
|
||||||
|
acc[item.so][item.adscripcion] = Number(item.total)
|
||||||
|
|
||||||
|
return acc
|
||||||
|
|
||||||
|
}, {})
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div style={{ width: "100%", background: "white", borderRadius: "10px", margin: "5px auto", padding: "1rem" }}>
|
||||||
|
<h1 style={{ margin: "0" }}>SistemaOperativo por equipo</h1>
|
||||||
|
<ResponsiveContainer width="100%" aspect={3.5}>
|
||||||
|
<BarChart data={dataTransformada}
|
||||||
|
width={500}
|
||||||
|
height={300}
|
||||||
|
margin={{
|
||||||
|
top: 20,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<CartesianGrid strokeDasharray="3 3" />
|
||||||
|
<XAxis dataKey="so" fontSize={12} angle={30} textAnchor="start" hide />
|
||||||
|
<YAxis />
|
||||||
|
<Tooltip
|
||||||
|
formatter={(value) => [`${value}`]}
|
||||||
|
/>
|
||||||
|
<Legend />
|
||||||
|
{tieneAdscripciones ? (
|
||||||
|
|
||||||
|
adscripciones.map((ads, i) => (
|
||||||
|
<Bar
|
||||||
|
key={ads}
|
||||||
|
dataKey={ads}
|
||||||
|
fill={colores[i % colores.length]}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
|
||||||
|
) : (
|
||||||
|
|
||||||
|
<Bar
|
||||||
|
dataKey="total"
|
||||||
|
fill="#095bd6"
|
||||||
|
/>
|
||||||
|
|
||||||
|
)}
|
||||||
|
</BarChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,107 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import axios from "axios";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
filtros: any
|
||||||
|
}
|
||||||
|
|
||||||
|
interface UsoData {
|
||||||
|
uso: string
|
||||||
|
adscripcion: string
|
||||||
|
total: number
|
||||||
|
}
|
||||||
|
|
||||||
|
const colores = [
|
||||||
|
"#818CF8",
|
||||||
|
"#34D399",
|
||||||
|
"#FBBF24",
|
||||||
|
"#F87171",
|
||||||
|
"#67E8F9",
|
||||||
|
"#C084FC"
|
||||||
|
]
|
||||||
|
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
export default function Uso({ filtros }: Props) {
|
||||||
|
const [data, setData] = useState<UsoData[]>([])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const getUso = async () => {
|
||||||
|
const response = await axios.post(
|
||||||
|
`${api_url}/equipos/graficaPerifericos/uso`, filtros
|
||||||
|
)
|
||||||
|
setData(response.data)
|
||||||
|
}
|
||||||
|
getUso()
|
||||||
|
|
||||||
|
}, [filtros])
|
||||||
|
|
||||||
|
const tieneAdscripciones = data.some(d => d.adscripcion)
|
||||||
|
|
||||||
|
let dataTransformada = data
|
||||||
|
let adscripciones: string[] = []
|
||||||
|
|
||||||
|
if (tieneAdscripciones) {
|
||||||
|
|
||||||
|
adscripciones = [...new Set(data.map(d => d.adscripcion))]
|
||||||
|
|
||||||
|
dataTransformada = Object.values(
|
||||||
|
data.reduce((acc: any, item: any) => {
|
||||||
|
|
||||||
|
if (!acc[item.uso]) {
|
||||||
|
acc[item.uso] = { uso: item.uso }
|
||||||
|
}
|
||||||
|
|
||||||
|
acc[item.uso][item.adscripcion] = Number(item.total)
|
||||||
|
|
||||||
|
return acc
|
||||||
|
|
||||||
|
}, {})
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div style={{ minWidth: "570px", background: "white", borderRadius: "10px", padding: "1rem" }}>
|
||||||
|
<h1 style={{ margin: "0" }}>Uso por periferico</h1>
|
||||||
|
<ResponsiveContainer width="100%" aspect={2.5} minHeight={220}>
|
||||||
|
<BarChart data={dataTransformada}
|
||||||
|
width={500}
|
||||||
|
height={300}
|
||||||
|
margin={{
|
||||||
|
top: 20,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<CartesianGrid strokeDasharray="3 3" />
|
||||||
|
<XAxis dataKey="uso" fontSize={12} />
|
||||||
|
<YAxis />
|
||||||
|
<Tooltip
|
||||||
|
formatter={(value) => [`${value}`]}
|
||||||
|
/>
|
||||||
|
<Legend />
|
||||||
|
{tieneAdscripciones ? (
|
||||||
|
|
||||||
|
adscripciones.map((ads, i) => (
|
||||||
|
<Bar
|
||||||
|
key={ads}
|
||||||
|
dataKey={ads}
|
||||||
|
fill={colores[i % colores.length]}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
|
||||||
|
) : (
|
||||||
|
|
||||||
|
<Bar
|
||||||
|
dataKey="total"
|
||||||
|
fill="#095bd6"
|
||||||
|
/>
|
||||||
|
|
||||||
|
)}
|
||||||
|
</BarChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
//IO
|
||||||
@@ -0,0 +1,122 @@
|
|||||||
|
.container {
|
||||||
|
width: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 20px;
|
||||||
|
background: white;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 18px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
font-size: 13px;
|
||||||
|
color: #444;
|
||||||
|
}
|
||||||
|
|
||||||
|
.listaContainer {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
font-size: 14px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.empty {
|
||||||
|
font-size: 13px;
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lista {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chip {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
background: linear-gradient(135deg, #2563eb, #7c3aed);
|
||||||
|
border-radius: 6px;
|
||||||
|
padding: 5px 10px;
|
||||||
|
font-size: 13px;
|
||||||
|
text-align: start;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.remove {
|
||||||
|
border: none;
|
||||||
|
background: rgba(255,255,255,0.2);
|
||||||
|
margin-left: 8px;
|
||||||
|
cursor: pointer;
|
||||||
|
color: white;
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 12px;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.remove:hover {
|
||||||
|
background: rgba(255,255,255,0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
margin-top: 20px;
|
||||||
|
padding: 12px 20px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 10px;
|
||||||
|
background: linear-gradient(135deg, #2563eb, #4f46e5);
|
||||||
|
color: white;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 600;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.25s ease;
|
||||||
|
box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.button:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
|
||||||
|
}
|
||||||
|
.graficas {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graficas > div {
|
||||||
|
background: white;
|
||||||
|
border-radius: 16px !important;
|
||||||
|
padding: 15px !important;
|
||||||
|
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graficas > div:hover {
|
||||||
|
transform: translateY(-5px);
|
||||||
|
box-shadow: 0 15px 35px rgba(0,0,0,0.12);
|
||||||
|
}
|
||||||
|
|
||||||
|
.filtro {
|
||||||
|
display: flex;
|
||||||
|
gap: 10px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: start;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.containerSelection {
|
||||||
|
width: 100%;
|
||||||
|
width: 200px
|
||||||
|
}
|
||||||
@@ -0,0 +1,83 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import { useEffect, useState } from 'react'
|
||||||
|
import styles from './TableAntiguedad.module.css'
|
||||||
|
import axios from 'axios'
|
||||||
|
import DownloadTable from '@/components/Dowload/tabla'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
filtros: any
|
||||||
|
count: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
export default function TableAntiguedad({ filtros, count }: Props) {
|
||||||
|
|
||||||
|
const [data, setData] = useState<any[]>([])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const getUso = async () => {
|
||||||
|
const endpoint = count
|
||||||
|
? `${api_url}/equipos/tabla/count`
|
||||||
|
: `${api_url}/equipos/tabla`
|
||||||
|
|
||||||
|
const response = await axios.post(endpoint, filtros)
|
||||||
|
setData(response.data)
|
||||||
|
}
|
||||||
|
|
||||||
|
getUso()
|
||||||
|
}, [filtros, count])
|
||||||
|
|
||||||
|
const columnas = data.length > 0 ? Object.keys(data[0]) : []
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={styles.container}>
|
||||||
|
{count ? <DownloadTable filtros={filtros} count={true} /> : <DownloadTable filtros={filtros} count={false} />}
|
||||||
|
<table className={styles.table}>
|
||||||
|
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
{columnas.map((col) => (
|
||||||
|
<th key={col}>{formatearTitulo(col)}</th>
|
||||||
|
))}
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
|
||||||
|
<tbody>
|
||||||
|
{data.length === 0 ? (
|
||||||
|
<tr>
|
||||||
|
<td colSpan={columnas.length} className={styles.empty}>
|
||||||
|
No hay datos
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
) : (
|
||||||
|
data.map((item, index) => (
|
||||||
|
<tr key={index}>
|
||||||
|
{columnas.map((col) => (
|
||||||
|
<td key={col}>
|
||||||
|
{item[col] ?? '-'}
|
||||||
|
</td>
|
||||||
|
))}
|
||||||
|
</tr>
|
||||||
|
))
|
||||||
|
)}
|
||||||
|
</tbody>
|
||||||
|
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatearTitulo(col: string) {
|
||||||
|
const nombres: any = {
|
||||||
|
inventario: 'No. Inventario',
|
||||||
|
adscripcion: 'Adscripción',
|
||||||
|
antiguedad: 'Antigüedad',
|
||||||
|
procesador: 'Procesador',
|
||||||
|
sistema_operativo: 'Sistema Operativo',
|
||||||
|
uso: 'Uso'
|
||||||
|
}
|
||||||
|
|
||||||
|
return nombres[col] || col
|
||||||
|
}
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
.container {
|
||||||
|
width: 100%;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
font-size: 14px;
|
||||||
|
background: #ffffff;
|
||||||
|
border-radius: 12px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table thead {
|
||||||
|
background: linear-gradient(135deg, #a5a5a5, #878787);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table th {
|
||||||
|
padding: 12px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table td {
|
||||||
|
padding: 10px 12px;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table tbody tr:hover {
|
||||||
|
background-color: #f5f8ff;
|
||||||
|
transition: 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.total {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #095bd6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.empty {
|
||||||
|
text-align: center;
|
||||||
|
padding: 20px;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
@@ -0,0 +1,393 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import Select from "react-select"
|
||||||
|
import { useEffect, useState } from "react"
|
||||||
|
import styles from "./Reporte.module.css"
|
||||||
|
import axios from "axios"
|
||||||
|
|
||||||
|
import Antiguedad from "./Graficas/Antiguedad"
|
||||||
|
import Procesador from "./Graficas/Procesador"
|
||||||
|
import SistemaOperativo from "./Graficas/SistemaOperativo"
|
||||||
|
import Uso from "./Graficas/Uso"
|
||||||
|
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
import TableAntiguedad from "./Tablas/Antiguedad"
|
||||||
|
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||||
|
|
||||||
|
type AdscripcionOption = {
|
||||||
|
id_adscripcion: string
|
||||||
|
adscripcion: string
|
||||||
|
}
|
||||||
|
|
||||||
|
type UsoOption = {
|
||||||
|
id_uso: string
|
||||||
|
tipo_uso: string
|
||||||
|
}
|
||||||
|
|
||||||
|
type SoOption = {
|
||||||
|
id_sistema_operativo: string
|
||||||
|
sistema_operativo: string
|
||||||
|
}
|
||||||
|
|
||||||
|
type ProcesadorOption = {
|
||||||
|
id_procesador: string
|
||||||
|
procesador: string
|
||||||
|
}
|
||||||
|
|
||||||
|
type AntiguedadOption = {
|
||||||
|
antiguedad: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function ReportePerifericos() {
|
||||||
|
|
||||||
|
const [adscripciones, setAdscripciones] = useState<AdscripcionOption[]>([])
|
||||||
|
const [adscripcionesSeleccionadas, setAdscripcionesSeleccionadas] = useState<AdscripcionOption[]>([])
|
||||||
|
|
||||||
|
const [procesadores, setProcesadores] = useState<ProcesadorOption[]>([])
|
||||||
|
const [procesadorSeleccionado, setProcesadorSeleccionado] = useState<ProcesadorOption[]>([])
|
||||||
|
|
||||||
|
const [sistemasOperativos, setSistemasOperativos] = useState<SoOption[]>([])
|
||||||
|
const [soSeleccionado, setSoSeleccionado] = useState<SoOption[]>([])
|
||||||
|
|
||||||
|
const [usos, setUsos] = useState<UsoOption[]>([{ id_uso: "0", tipo_uso: "Todos" }])
|
||||||
|
const [usoSeleccionado, setUsoSeleccionado] = useState<UsoOption[]>([])
|
||||||
|
|
||||||
|
const [antiguedad, setAntiguedad] = useState<AntiguedadOption[]>([{ antiguedad: "Todos" }, { antiguedad: "Menor a 2 años" }, { antiguedad: "Entre 2 y 3 años" }, { antiguedad: "Entre 4 y 5 años" }, { antiguedad: "Mayor a 6 años" }])
|
||||||
|
const [antiguedadSeleccionada, setAntiguedadSeleccionada] = useState<AntiguedadOption[]>([])
|
||||||
|
|
||||||
|
const [filtros, setFiltros] = useState<any>(null)
|
||||||
|
const [filtrosTable, setFiltrosTable] = useState<any>(null)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
|
||||||
|
const cargarDatos = async () => {
|
||||||
|
const token = Cookies.get("token");
|
||||||
|
const headers = { Authorization: `Bearer ${token}` };
|
||||||
|
const [
|
||||||
|
adscripcionRes,
|
||||||
|
procesadorRes,
|
||||||
|
usoRes,
|
||||||
|
soRes,
|
||||||
|
] = await Promise.all([
|
||||||
|
axios.get(`${api_url}/equipos/adscripciones`, { headers }),
|
||||||
|
axios.get(`${api_url}/equipos/procesador-tipo-equipos`, { headers }),
|
||||||
|
axios.get(`${api_url}/equipos/usos`, { headers }),
|
||||||
|
axios.get(`${api_url}/equipos/sistemas-operativos`, { headers }),
|
||||||
|
])
|
||||||
|
|
||||||
|
setAdscripciones([
|
||||||
|
{ id_adscripcion: "0", adscripcion: "Todos" },
|
||||||
|
...adscripcionRes.data
|
||||||
|
])
|
||||||
|
|
||||||
|
setProcesadores([
|
||||||
|
{ id_procesador: "0", procesador: "Todos" },
|
||||||
|
...procesadorRes.data
|
||||||
|
])
|
||||||
|
|
||||||
|
setUsos([
|
||||||
|
{ id_uso: "0", tipo_uso: "Todos" },
|
||||||
|
...usoRes.data
|
||||||
|
])
|
||||||
|
|
||||||
|
setSistemasOperativos([
|
||||||
|
{ id_sistema_operativo: "0", sistema_operativo: "Todos" },
|
||||||
|
...soRes.data
|
||||||
|
])
|
||||||
|
}
|
||||||
|
|
||||||
|
cargarDatos()
|
||||||
|
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
function agregar<T>(option: T | null, lista: T[], setLista: (v: T[]) => void, key: keyof T) {
|
||||||
|
|
||||||
|
if (!option) return
|
||||||
|
|
||||||
|
const existe = lista.some((item) => item[key] === option[key])
|
||||||
|
|
||||||
|
if (!existe) {
|
||||||
|
setLista([...lista, option])
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function eliminar<T>(id: string, lista: T[], setLista: (v: T[]) => void, key: keyof T) {
|
||||||
|
|
||||||
|
setLista(
|
||||||
|
lista.filter((item) => item[key] !== id)
|
||||||
|
)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
const generarReporte = () => {
|
||||||
|
|
||||||
|
const limpiar = (arr: string[]) => {
|
||||||
|
if (arr.includes("0")) return []
|
||||||
|
return arr
|
||||||
|
}
|
||||||
|
|
||||||
|
const filtrosTable = {
|
||||||
|
adscripciones: adscripcionesSeleccionadas.map(a => String(a.id_adscripcion)),
|
||||||
|
procesadores: procesadorSeleccionado.map(p => String(p.id_procesador)),
|
||||||
|
sistemas: soSeleccionado.map(s => String(s.id_sistema_operativo)),
|
||||||
|
usos: usoSeleccionado.map(u => String(u.id_uso)),
|
||||||
|
antiguedad: antiguedadSeleccionada.map(u => String(u.antiguedad))
|
||||||
|
}
|
||||||
|
|
||||||
|
const filtros = {
|
||||||
|
adscripciones: limpiar(adscripcionesSeleccionadas.map(a => String(a.id_adscripcion))),
|
||||||
|
procesadores: limpiar(procesadorSeleccionado.map(p => String(p.id_procesador))),
|
||||||
|
sistemas: limpiar(soSeleccionado.map(s => String(s.id_sistema_operativo))),
|
||||||
|
usos: limpiar(usoSeleccionado.map(u => String(u.id_uso))),
|
||||||
|
antiguedad: limpiar(antiguedadSeleccionada.map(a => String(a.antiguedad)))
|
||||||
|
}
|
||||||
|
|
||||||
|
setFiltros(filtros)
|
||||||
|
setFiltrosTable(filtrosTable)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className={styles.container}>
|
||||||
|
|
||||||
|
<section className={styles.filtro}>
|
||||||
|
|
||||||
|
{/* ADSCRIPCION */}
|
||||||
|
|
||||||
|
<div className={styles.containerSelection}>
|
||||||
|
<label className={styles.adscripcion}>Adscripción</label>
|
||||||
|
|
||||||
|
<Select
|
||||||
|
options={adscripciones}
|
||||||
|
getOptionLabel={(o) => o.adscripcion}
|
||||||
|
getOptionValue={(o) => o.id_adscripcion}
|
||||||
|
onChange={(o) => agregar(o, adscripcionesSeleccionadas, setAdscripcionesSeleccionadas, "id_adscripcion")}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className={styles.lista}>
|
||||||
|
|
||||||
|
{adscripcionesSeleccionadas.map((a) => (
|
||||||
|
|
||||||
|
<div key={a.id_adscripcion} className={styles.chip}>
|
||||||
|
|
||||||
|
<span>{a.adscripcion}</span>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className={styles.remove}
|
||||||
|
onClick={() => eliminar(a.id_adscripcion, adscripcionesSeleccionadas, setAdscripcionesSeleccionadas, "id_adscripcion")}
|
||||||
|
>
|
||||||
|
✕
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
))}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/* PROCESADOR */}
|
||||||
|
|
||||||
|
<div className={styles.containerSelection}>
|
||||||
|
|
||||||
|
<label className={styles.adscripcion}>Procesador</label>
|
||||||
|
|
||||||
|
<Select
|
||||||
|
options={procesadores}
|
||||||
|
getOptionLabel={(o) => o.procesador}
|
||||||
|
getOptionValue={(o) => o.id_procesador}
|
||||||
|
onChange={(o) =>
|
||||||
|
agregar(o, procesadorSeleccionado, setProcesadorSeleccionado, "id_procesador")
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className={styles.lista}>
|
||||||
|
|
||||||
|
{procesadorSeleccionado.map((p) => (
|
||||||
|
|
||||||
|
<div key={p.id_procesador} className={styles.chip}>
|
||||||
|
|
||||||
|
<span>{p.procesador}</span>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className={styles.remove}
|
||||||
|
onClick={() =>
|
||||||
|
eliminar(p.id_procesador, procesadorSeleccionado, setProcesadorSeleccionado, "id_procesador")
|
||||||
|
}
|
||||||
|
>
|
||||||
|
✕
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
))}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* SISTEMA OPERATIVO */}
|
||||||
|
|
||||||
|
<div className={styles.containerSelection}>
|
||||||
|
|
||||||
|
<label className={styles.adscripcion}>Sistema Operativo</label>
|
||||||
|
|
||||||
|
<Select
|
||||||
|
options={sistemasOperativos}
|
||||||
|
getOptionLabel={(o) => o.sistema_operativo}
|
||||||
|
getOptionValue={(o) => o.id_sistema_operativo}
|
||||||
|
onChange={(o) =>
|
||||||
|
agregar(o, soSeleccionado, setSoSeleccionado, "id_sistema_operativo")
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className={styles.lista}>
|
||||||
|
|
||||||
|
{soSeleccionado.map((s) => (
|
||||||
|
|
||||||
|
<div key={s.id_sistema_operativo} className={styles.chip}>
|
||||||
|
|
||||||
|
<span>{s.sistema_operativo}</span>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className={styles.remove}
|
||||||
|
onClick={() =>
|
||||||
|
eliminar(s.id_sistema_operativo, soSeleccionado, setSoSeleccionado, "id_sistema_operativo")
|
||||||
|
}
|
||||||
|
>
|
||||||
|
✕
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
))}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/* USO */}
|
||||||
|
|
||||||
|
<div className={styles.containerSelection}>
|
||||||
|
|
||||||
|
<label className={styles.adscripcion}>Uso</label>
|
||||||
|
|
||||||
|
<Select
|
||||||
|
options={usos}
|
||||||
|
getOptionLabel={(o) => o.tipo_uso}
|
||||||
|
getOptionValue={(o) => o.id_uso}
|
||||||
|
onChange={(o) =>
|
||||||
|
agregar(o, usoSeleccionado, setUsoSeleccionado, "id_uso")
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className={styles.lista}>
|
||||||
|
|
||||||
|
{usoSeleccionado.map((u) => (
|
||||||
|
|
||||||
|
<div key={u.id_uso} className={styles.chip}>
|
||||||
|
|
||||||
|
<span>{u.tipo_uso}</span>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className={styles.remove}
|
||||||
|
onClick={() =>
|
||||||
|
eliminar(u.id_uso, usoSeleccionado, setUsoSeleccionado, "id_uso")
|
||||||
|
}
|
||||||
|
>
|
||||||
|
✕
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
))}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className={styles.containerSelection}>
|
||||||
|
|
||||||
|
<label className={styles.adscripcion}>Antiguedad</label>
|
||||||
|
|
||||||
|
<Select
|
||||||
|
options={antiguedad}
|
||||||
|
getOptionLabel={(o) => o.antiguedad}
|
||||||
|
getOptionValue={(o) => o.antiguedad}
|
||||||
|
onChange={(o) =>
|
||||||
|
agregar(o, antiguedadSeleccionada, setAntiguedadSeleccionada, "antiguedad")
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className={styles.lista}>
|
||||||
|
|
||||||
|
{antiguedadSeleccionada.map((p) => (
|
||||||
|
|
||||||
|
<div key={p.antiguedad} className={styles.chip}>
|
||||||
|
|
||||||
|
<span>{p.antiguedad}</span>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className={styles.remove}
|
||||||
|
onClick={() =>
|
||||||
|
eliminar(p.antiguedad, antiguedadSeleccionada, setAntiguedadSeleccionada, "antiguedad")
|
||||||
|
}
|
||||||
|
>
|
||||||
|
✕
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
))}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<button
|
||||||
|
className={styles.button}
|
||||||
|
onClick={generarReporte}
|
||||||
|
>
|
||||||
|
Buscar
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<section className={styles.graficas}>
|
||||||
|
|
||||||
|
<Antiguedad
|
||||||
|
filtros={filtros}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Uso
|
||||||
|
filtros={filtros}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* <Procesador
|
||||||
|
filtros={filtros}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<SistemaOperativo
|
||||||
|
filtros={filtros}
|
||||||
|
/> */}
|
||||||
|
|
||||||
|
{/* <TableAntiguedad filtros={filtros} count={true} />
|
||||||
|
<TableAntiguedad filtros={filtrosTable} count={false} /> */}
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
|
||||||
|
}
|
||||||
+11
-3
@@ -3,8 +3,8 @@ import type { NextRequest } from "next/server";
|
|||||||
import { jwtDecode } from "jwt-decode";
|
import { jwtDecode } from "jwt-decode";
|
||||||
|
|
||||||
const permisos: Record<number, string[]> = {
|
const permisos: Record<number, string[]> = {
|
||||||
1: ["/crearCuenta", "/equipoComputo", "/perifericos","/escaner", "/hotmap", "/agregarEquipo", "/editar","/historial","/ranking","/cambiarPass","/reportesGraficas"],
|
1: ["/crearCuenta", "/equipoComputo", "/perifericos", "/escaner", "/hotmap", "/agregarEquipo", "/editar", "/historial", "/ranking", "/cambiarPass", "/reportesGraficas"],
|
||||||
2: ["/escaner", "/agregarEquipo", "/editar","/historial","/ranking","/cambiarPass"],
|
2: ["/escaner", "/agregarEquipo", "/editar", "/historial", "/ranking", "/cambiarPass"],
|
||||||
};
|
};
|
||||||
|
|
||||||
export function proxy(request: NextRequest) {
|
export function proxy(request: NextRequest) {
|
||||||
@@ -35,7 +35,15 @@ export function proxy(request: NextRequest) {
|
|||||||
|
|
||||||
export const config = {
|
export const config = {
|
||||||
matcher: [
|
matcher: [
|
||||||
|
"/escaner",
|
||||||
|
"/agregarEquipo",
|
||||||
|
"/editar",
|
||||||
|
"/crearCuenta",
|
||||||
|
"/equipoComputo",
|
||||||
|
"/perifericos",
|
||||||
|
"/ranking",
|
||||||
|
"/historial",
|
||||||
|
"/cambiarPass"
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
//IO
|
//IO
|
||||||
|
|||||||
Reference in New Issue
Block a user