|
@@ -1,113 +1,114 @@
|
|
|
import React from 'react';
|
|
import React from 'react';
|
|
|
import {
|
|
import {
|
|
|
- Home,Work, VisibilityOff, PeopleAlt,
|
|
|
|
|
- Equalizer, OndemandVideo, SupportAgent, Star,
|
|
|
|
|
- MiscellaneousServices, History,
|
|
|
|
|
- AssignmentTurnedIn
|
|
|
|
|
|
|
+ Home, Work, VisibilityOff,
|
|
|
|
|
+ Equalizer, OndemandVideo, SupportAgent, Star,
|
|
|
|
|
+ MiscellaneousServices,
|
|
|
|
|
+ AssignmentTurnedIn
|
|
|
|
|
+ //PeopleAlt, History
|
|
|
} from '@mui/icons-material'
|
|
} from '@mui/icons-material'
|
|
|
|
|
|
|
|
export const UserItems = [
|
|
export const UserItems = [
|
|
|
- {
|
|
|
|
|
- icon : <Home/>,
|
|
|
|
|
- route : 'home',
|
|
|
|
|
- title : 'Inicio'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- icon : <AssignmentTurnedIn/>,
|
|
|
|
|
- route : 'pruebas',
|
|
|
|
|
- title : 'Pruebas'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- icon : <Star/>,
|
|
|
|
|
- route : 'prueba/:id' ,
|
|
|
|
|
- title : 'Test Actual'
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ {
|
|
|
|
|
+ icon: <Home />,
|
|
|
|
|
+ route: 'home',
|
|
|
|
|
+ title: 'Inicio'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ icon: <AssignmentTurnedIn />,
|
|
|
|
|
+ route: 'pruebas',
|
|
|
|
|
+ title: 'Pruebas'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ icon: <Star />,
|
|
|
|
|
+ route: 'prueba/:id',
|
|
|
|
|
+ title: 'Test Actual'
|
|
|
|
|
+ },
|
|
|
]
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
export const MainItems = [
|
|
export const MainItems = [
|
|
|
- {
|
|
|
|
|
- icon : <Home/>,
|
|
|
|
|
- route : 'home',
|
|
|
|
|
- title : 'Inicio'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- icon : <Work/>,
|
|
|
|
|
- route : 'puestos',
|
|
|
|
|
- title : 'Puestos'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- icon : <VisibilityOff/>,
|
|
|
|
|
- route : 'contrasenas',
|
|
|
|
|
- title : 'Contraseñas'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- icon : <PeopleAlt/>,
|
|
|
|
|
- route : 'expedientes',
|
|
|
|
|
- title : 'Expedientes'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- icon : <Equalizer/>,
|
|
|
|
|
- route : 'resultados',
|
|
|
|
|
- title : 'Resultados'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- icon : <MiscellaneousServices/>,
|
|
|
|
|
- route : 'configuraciones',
|
|
|
|
|
- title : 'Configuraciones'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- icon : <History/>,
|
|
|
|
|
- route : 'historial',
|
|
|
|
|
- title : 'Historial'
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ {
|
|
|
|
|
+ icon: <Home />,
|
|
|
|
|
+ route: 'home',
|
|
|
|
|
+ title: 'Inicio'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ icon: <Work />,
|
|
|
|
|
+ route: 'puestos',
|
|
|
|
|
+ title: 'Puestos'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ icon: <VisibilityOff />,
|
|
|
|
|
+ route: 'contrasenas',
|
|
|
|
|
+ title: 'Contraseñas'
|
|
|
|
|
+ },
|
|
|
|
|
+ // {
|
|
|
|
|
+ // icon : <PeopleAlt/>,
|
|
|
|
|
+ // route : 'expedientes',
|
|
|
|
|
+ // title : 'Expedientes'
|
|
|
|
|
+ // },
|
|
|
|
|
+ {
|
|
|
|
|
+ icon: <Equalizer />,
|
|
|
|
|
+ route: 'resultados',
|
|
|
|
|
+ title: 'Resultados'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ icon: <MiscellaneousServices />,
|
|
|
|
|
+ route: 'configuraciones',
|
|
|
|
|
+ title: 'Configuraciones'
|
|
|
|
|
+ },
|
|
|
|
|
+ // {
|
|
|
|
|
+ // icon : <History/>,
|
|
|
|
|
+ // route : 'historial',
|
|
|
|
|
+ // title : 'Historial'
|
|
|
|
|
+ // },
|
|
|
]
|
|
]
|
|
|
|
|
|
|
|
export const ExtraItems = [
|
|
export const ExtraItems = [
|
|
|
- {
|
|
|
|
|
- icon : <Star/>,
|
|
|
|
|
- route : 'work',
|
|
|
|
|
- title : 'Elementos'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- icon : <OndemandVideo/>,
|
|
|
|
|
- route : 'worktwo',
|
|
|
|
|
- title : 'Tutoriales'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- icon : <SupportAgent/>,
|
|
|
|
|
- route : 'worktree',
|
|
|
|
|
- title : 'Asistencia Técnica'
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ {
|
|
|
|
|
+ icon: <Star />,
|
|
|
|
|
+ route: 'work',
|
|
|
|
|
+ title: 'Elementos'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ icon: <OndemandVideo />,
|
|
|
|
|
+ route: 'worktwo',
|
|
|
|
|
+ title: 'Tutoriales'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ icon: <SupportAgent />,
|
|
|
|
|
+ route: 'worktree',
|
|
|
|
|
+ title: 'Asistencia Técnica'
|
|
|
|
|
+ },
|
|
|
]
|
|
]
|
|
|
|
|
|
|
|
export const PruebaItems = [
|
|
export const PruebaItems = [
|
|
|
- {
|
|
|
|
|
- route:"pruebas/crear",
|
|
|
|
|
- title:"Crear Prueba",
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- route:"pruebas/listar",
|
|
|
|
|
- title:"Listado de pruebas",
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- route:"pruebas/aplicar",
|
|
|
|
|
- title:"Aplicar",
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- route:"pruebas/respuestas",
|
|
|
|
|
- title:"Respuestas",
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- route:"pruebas/calificaciones",
|
|
|
|
|
- title:"Calificaciones",
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ {
|
|
|
|
|
+ route: "pruebas/crear",
|
|
|
|
|
+ title: "Crear Prueba",
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ route: "pruebas/listar",
|
|
|
|
|
+ title: "Listado de pruebas",
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ route: "pruebas/aplicar",
|
|
|
|
|
+ title: "Aplicar",
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ route: "pruebas/respuestas",
|
|
|
|
|
+ title: "Respuestas",
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ route: "pruebas/calificaciones",
|
|
|
|
|
+ title: "Calificaciones",
|
|
|
|
|
+ },
|
|
|
]
|
|
]
|
|
|
|
|
|
|
|
export const TxTStyle = {
|
|
export const TxTStyle = {
|
|
|
- fontSize: 12,
|
|
|
|
|
- ' .css-10hburv-MuiTypography-root' : {
|
|
|
|
|
- fontSize : '.875rem'
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ fontSize: 12,
|
|
|
|
|
+ ' .css-10hburv-MuiTypography-root': {
|
|
|
|
|
+ fontSize: '.875rem'
|
|
|
|
|
+ },
|
|
|
}
|
|
}
|
|
|
|
|
|