2017-04-17 08:28:11 +03:00
|
|
|
import { NgaMenuItem } from '@nga/theme';
|
2017-04-14 18:28:27 +03:00
|
|
|
|
|
|
|
|
import { List } from 'immutable';
|
|
|
|
|
|
2017-04-29 18:53:19 +03:00
|
|
|
export const menuItems: List<NgaMenuItem> = List([{
|
|
|
|
|
title: 'Dashboard',
|
|
|
|
|
icon: 'ion ion-ios-home-outline',
|
|
|
|
|
link: '/pages/dashboard',
|
|
|
|
|
home: true,
|
|
|
|
|
}, {
|
|
|
|
|
title: 'FEATURES',
|
|
|
|
|
group: true,
|
|
|
|
|
}, {
|
|
|
|
|
title: 'UI Features',
|
|
|
|
|
icon: 'ion ion-ios-keypad-outline',
|
|
|
|
|
link: '/pages/ui-features',
|
|
|
|
|
children: List([{
|
|
|
|
|
title: 'Buttons',
|
|
|
|
|
link: '/pages/ui-features/buttons',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Grid',
|
|
|
|
|
link: '/pages/ui-features/grid',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Icons',
|
|
|
|
|
link: '/pages/ui-features/icons',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Modals',
|
|
|
|
|
link: '/pages/ui-features/modals',
|
|
|
|
|
}]),
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Components',
|
|
|
|
|
icon: 'ion ion-ios-gear-outline',
|
|
|
|
|
link: '/pages/components',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Maps',
|
|
|
|
|
icon: 'ion ion-ios-location-outline',
|
|
|
|
|
link: '/pages/maps',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Charts',
|
|
|
|
|
icon: 'ion ion-arrow-graph-up-right',
|
|
|
|
|
link: '/pages/charts',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Editors',
|
|
|
|
|
icon: 'ion ion-edit',
|
|
|
|
|
link: '/pages/editors',
|
|
|
|
|
children: List([{
|
|
|
|
|
title: 'TinyMCE',
|
|
|
|
|
link: '/pages/editors/tinymce',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'CKEditor',
|
|
|
|
|
link: '/pages/editors/ckeditor',
|
|
|
|
|
}]),
|
|
|
|
|
}]);
|