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',
path: '/pages/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',
path: '/pages/charts',
icon: 'fa fa-bar-chart',
2016-05-17 12:49:12 +03:00
selected: false,
expanded: false,
order: 200,
subMenu: [
{
title: 'Chartist.Js',
path: '/chartist-js',
2016-05-17 12:49:12 +03:00
},
]
},
2016-05-13 16:11:32 +03:00
{
title: 'UI Features',
path: '/pages/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',
path: '/typography',
2016-05-13 16:11:32 +03:00
},
{
title: 'Buttons',
path: '/buttons',
2016-05-13 16:11:32 +03:00
},
{
title: 'Icons',
path: '/icons',
2016-05-13 16:11:32 +03:00
},
{
title: 'Grid',
path: '/grid',
2016-05-13 16:11:32 +03:00
},
]
},
{
title: 'Form Elements',
path: '/pages/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',
path: '/inputs',
2016-05-13 16:11:32 +03:00
},
{
title: 'Form Layouts',
path: '/layouts',
2016-05-13 16:11:32 +03:00
},
]
},
2016-05-13 18:18:11 +03:00
{
title: 'Tables',
path: '/pages/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',
path: '/basictables',
2016-05-13 18:18:11 +03:00
}
]
},
2016-05-17 12:49:12 +03:00
{
title: 'Maps',
path: '/pages/maps',
icon: 'fa fa-map-marker',
2016-05-17 12:49:12 +03:00
selected: false,
expanded: false,
order: 600,
subMenu: [
{
title: 'Google Maps',
path: '/googlemaps',
2016-05-17 12:49:12 +03:00
},
{
title: 'Leaflet Maps',
path: '/leafletmaps',
2016-05-17 12:49:12 +03:00
},
{
title: 'Bubble Maps',
path: '/bubblemaps',
2016-05-17 12:49:12 +03:00
},
{
title: 'Line Maps',
path: '/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',
path: '/login',
2016-06-16 15:10:49 +03:00
},
{
title: 'Register',
path: '/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
}
];