datasurvey/src/main/webapp/app/layouts/sidebar/sidebar.constants.ts

99 lines
2.0 KiB
TypeScript
Raw Normal View History

2021-07-04 01:33:58 +00:00
export interface RouteInfo {
path: string;
title: string;
type: string;
collapse?: string;
icontype: string;
// icon: string;
children?: ChildrenItems[];
}
export interface ChildrenItems {
path: string;
title: string;
ab: string;
type?: string;
}
export const ADMIN_ROUTES: RouteInfo[] = [
2021-07-26 20:40:21 +00:00
// {
// path: '/dashboard',
// title: 'Dashboard',
// type: 'link',
// icontype: 'nc-icon nc-chart-bar-32',
// },
{ path: '/pagina-principal', title: 'Inicio', type: 'link', icontype: 'nc-icon nc-world-2' },
2021-08-10 01:07:19 +00:00
{
path: '/dashboard/admin',
2021-08-16 06:51:59 +00:00
title: 'Reportes',
2021-08-10 01:07:19 +00:00
type: 'link',
icontype: 'nc-icon nc-chart-bar-32',
},
2021-07-04 01:33:58 +00:00
{
path: '/encuesta',
title: 'Encuestas',
type: 'link',
icontype: 'nc-icon nc-paper',
},
{
path: '/plantilla',
title: 'Plantillas',
type: 'link',
icontype: 'nc-icon nc-album-2',
},
2021-07-04 01:33:58 +00:00
{
path: '/categoria',
title: 'Categorías',
type: 'link',
icontype: 'nc-icon nc-tag-content',
},
{
path: '/usuario-extra',
title: 'Usuarios',
type: 'link',
icontype: 'nc-icon nc-single-02',
},
{
path: '/parametro-aplicacion/1/edit',
2021-07-04 01:33:58 +00:00
title: 'Configuración',
type: 'link',
icontype: 'nc-icon nc-settings-gear-65',
},
];
export const USER_ROUTES: RouteInfo[] = [
{ path: '/pagina-principal', title: 'Inicio', type: 'link', icontype: 'nc-icon nc-world-2' },
2021-08-10 01:07:19 +00:00
{
path: '/dashboard/user',
2021-08-13 00:03:48 +00:00
title: 'Reportes',
2021-08-10 01:07:19 +00:00
type: 'link',
icontype: 'nc-icon nc-chart-bar-32',
},
2021-07-04 01:33:58 +00:00
{
path: '/encuesta',
title: 'Encuestas',
type: 'link',
icontype: 'nc-icon nc-paper',
2021-07-04 01:33:58 +00:00
},
2021-08-08 06:51:16 +00:00
{ path: '/tienda-plantilla', title: 'Tienda', type: 'link', icontype: 'nc-icon nc-shop' },
// {
// path: '/tienda',
// title: 'Tienda',
// type: 'link',
// icontype: 'nc-icon nc-cart-simple',
// },
2021-08-07 09:30:50 +00:00
{
path: '/mis-plantillas',
title: 'Mis Plantillas',
type: 'link',
icontype: 'nc-icon nc-album-2',
},
{
path: '/colaboraciones',
title: 'Colaboraciones',
type: 'link',
2021-08-08 06:51:16 +00:00
icontype: 'nc-icon nc-single-02',
},
2021-07-04 01:33:58 +00:00
];