ngx-admin/src/app/app.menu.ts

162 lines
2.8 KiB
TypeScript
Raw Normal View History

2016-05-13 16:11:32 +03:00
export const menuItems = [
{
title: 'Dashboard',
component: 'dashboard',
icon: 'fa fa-home',
2016-05-13 16:11:32 +03:00
selected: false,
expanded: false,
order: 0
},
2016-05-17 12:49:12 +03:00
{
title: 'Charts',
component: 'charts',
icon: 'fa fa-bar-chart',
2016-05-17 12:49:12 +03:00
selected: false,
expanded: false,
order: 200,
subMenu: [
{
title: 'Chartist.Js',
component: 'chartist-js',
2016-05-17 12:49:12 +03:00
},
]
},
2016-05-13 16:11:32 +03:00
{
title: 'UI Features',
component: 'ui',
icon: 'fa fa-laptop',
2016-05-13 16:11:32 +03:00
selected: false,
expanded: false,
2016-05-17 12:49:12 +03:00
order: 300,
2016-05-13 16:11:32 +03:00
subMenu: [
{
title: 'Typography',
component: 'typography',
2016-05-13 16:11:32 +03:00
},
{
title: 'Buttons',
component: 'buttons',
2016-05-13 16:11:32 +03:00
},
{
title: 'Icons',
component: 'icons',
2016-05-13 16:11:32 +03:00
},
{
title: 'Grid',
component: 'grid',
2016-05-13 16:11:32 +03:00
},
]
},
{
title: 'Form Elements',
component: 'forms',
icon: 'fa fa-pencil-square-o',
2016-05-13 16:11:32 +03:00
selected: false,
expanded: false,
2016-05-17 12:49:12 +03:00
order: 400,
2016-05-13 16:11:32 +03:00
subMenu: [
{
title: 'Form Inputs',
component: 'inputs',
2016-05-13 16:11:32 +03:00
},
{
title: 'Form Layouts',
component: 'layouts',
2016-05-13 16:11:32 +03:00
},
]
},
2016-05-13 18:18:11 +03:00
{
title: 'Tables',
component: 'tables',
icon: 'fa fa-table',
2016-05-13 18:18:11 +03:00
selected: false,
expanded: false,
2016-05-17 12:49:12 +03:00
order: 500,
2016-05-13 18:18:11 +03:00
subMenu: [
{
title: 'Basic Tables',
component: 'basictables',
2016-05-13 18:18:11 +03:00
}
]
},
2016-05-17 12:49:12 +03:00
{
title: 'Maps',
component: 'maps',
icon: 'fa fa-map-marker',
2016-05-17 12:49:12 +03:00
selected: false,
expanded: false,
order: 600,
subMenu: [
{
title: 'Google Maps',
component: 'googlemaps',
2016-05-17 12:49:12 +03:00
},
{
title: 'Leaflet Maps',
component: 'leafletmaps',
2016-05-17 12:49:12 +03:00
},
{
title: 'Bubble Maps',
component: 'bubblemaps',
2016-05-17 12:49:12 +03:00
},
{
title: 'Line Maps',
component: 'linemaps',
2016-05-17 12:49:12 +03:00
}
]
},
2016-06-16 15:10:49 +03:00
{
title: 'Pages',
icon: 'fa fa-sticky-note',
2016-06-16 15:10:49 +03:00
selected: false,
expanded: false,
order: 650,
subMenu: [
{
title: 'Login',
url: '#/login',
2016-06-16 15:10:49 +03:00
},
{
title: 'Register',
url: '#/register',
2016-06-16 15:10:49 +03:00
}
]
},
2016-05-13 16:11:32 +03:00
{
title: 'Menu Level 1',
icon: 'fa fa-level-down',
2016-05-13 16:11:32 +03:00
selected: false,
expanded: false,
2016-05-17 12:49:12 +03:00
order: 700,
2016-05-13 16:11:32 +03:00
subMenu: [
{
title: 'Menu Level 1.1',
url: '#',
2016-05-13 16:11:32 +03:00
disabled: true,
selected: false,
expanded: false
},
{
title: 'Menu Level 1.2',
url: '#',
2016-05-13 16:11:32 +03:00
subMenu: [{
title: 'Menu Level 1.2.1',
url: '#',
2016-05-13 16:11:32 +03:00
disabled: true,
selected: false,
expanded: false
}]
}
]
},
{
title: 'External Link',
url: 'http://akveo.com',
icon: 'ion-android-exit',
selected: false,
expanded: false,
order: 800,
target: '_blank'
2016-05-13 16:11:32 +03:00
}
];