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',
|
2017-05-06 20:02:26 +03:00
|
|
|
children: List<NgaMenuItem>([{
|
2017-04-29 18:53:19 +03:00
|
|
|
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',
|
2017-05-06 15:41:52 +03:00
|
|
|
}, {
|
|
|
|
|
title: 'Typography',
|
|
|
|
|
link: '/pages/ui-features/typography',
|
2017-05-11 15:05:04 +03:00
|
|
|
}, {
|
2017-05-19 19:45:42 +03:00
|
|
|
title: 'Animated Searches',
|
|
|
|
|
link: '/pages/ui-features/search-fields',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Tabs',
|
|
|
|
|
link: '/pages/ui-features/tabs',
|
|
|
|
|
}]),
|
2017-04-29 18:53:19 +03:00
|
|
|
}, {
|
|
|
|
|
title: 'Components',
|
|
|
|
|
icon: 'ion ion-ios-gear-outline',
|
2017-05-19 14:40:20 +03:00
|
|
|
children: List<NgaMenuItem>([{
|
|
|
|
|
title: 'Tree',
|
|
|
|
|
link: '/pages/components/tree',
|
|
|
|
|
}]),
|
2017-04-29 18:53:19 +03:00
|
|
|
}, {
|
|
|
|
|
title: 'Maps',
|
|
|
|
|
icon: 'ion ion-ios-location-outline',
|
2017-05-06 20:02:26 +03:00
|
|
|
children: List<NgaMenuItem>([{
|
|
|
|
|
title: 'Gmaps',
|
|
|
|
|
link: '/pages/maps/gmaps',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Leaflet',
|
|
|
|
|
link: '/pages/maps/leaflet',
|
|
|
|
|
}]),
|
2017-04-29 18:53:19 +03:00
|
|
|
}, {
|
|
|
|
|
title: 'Charts',
|
|
|
|
|
icon: 'ion ion-arrow-graph-up-right',
|
2017-05-11 18:31:55 +03:00
|
|
|
children: List<NgaMenuItem>([{
|
|
|
|
|
title: 'Echarts',
|
|
|
|
|
link: '/pages/charts/echarts',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'D3',
|
|
|
|
|
link: '/pages/charts/d3',
|
2017-05-16 19:02:54 +03:00
|
|
|
}, {
|
|
|
|
|
title: 'Charts.js',
|
|
|
|
|
link: '/pages/charts/chartjs',
|
2017-05-11 18:31:55 +03:00
|
|
|
}]),
|
2017-04-29 18:53:19 +03:00
|
|
|
}, {
|
|
|
|
|
title: 'Editors',
|
|
|
|
|
icon: 'ion ion-edit',
|
2017-05-06 20:02:26 +03:00
|
|
|
children: List<NgaMenuItem>([{
|
2017-04-29 18:53:19 +03:00
|
|
|
title: 'TinyMCE',
|
|
|
|
|
link: '/pages/editors/tinymce',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'CKEditor',
|
|
|
|
|
link: '/pages/editors/ckeditor',
|
|
|
|
|
}]),
|
2017-05-05 15:49:52 +03:00
|
|
|
}, {
|
|
|
|
|
title: 'Forms',
|
|
|
|
|
icon: 'ion-compose',
|
2017-05-06 20:02:26 +03:00
|
|
|
children: List<NgaMenuItem>([{
|
2017-05-05 15:49:52 +03:00
|
|
|
title: 'Form Inputs',
|
|
|
|
|
link: '/pages/forms/inputs',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Form Layouts',
|
|
|
|
|
link: '/pages/forms/layouts',
|
|
|
|
|
}]),
|
2017-04-29 18:53:19 +03:00
|
|
|
}]);
|