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

176 lines
3 KiB
TypeScript
Raw Normal View History

2016-05-13 16:11:32 +03:00
export const menuItems = [
{
title: 'Dashboard',
path: '/pages/dashboard',
2016-07-07 16:30:00 +03:00
icon: 'ion-android-home',
2016-05-13 16:11:32 +03:00
selected: false,
expanded: false,
order: 0
},
2016-07-07 16:30:00 +03:00
{
title: 'Editors',
path: '/pages/editors',
icon: 'ion-edit',
selected: false,
expanded: false,
order: 100,
subMenu: [
{
title: 'CKEditor',
path: '/ckeditor',
}
]
},
2016-05-17 12:49:12 +03:00
{
title: 'Charts',
path: '/pages/charts',
2016-07-07 16:30:00 +03:00
icon: 'ion-stats-bars',
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',
2016-07-07 16:30:00 +03:00
icon: 'ion-android-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',
2016-07-07 16:30:00 +03:00
icon: 'ion-compose',
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',
2016-07-07 16:30:00 +03:00
icon: 'ion-grid',
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',
2016-07-07 16:30:00 +03:00
icon: 'ion-ios-location-outline',
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',
2016-07-07 16:30:00 +03:00
icon: 'ion-document',
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',
2016-07-07 16:30:00 +03:00
icon: 'ion-ios-more',
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
}
];