2017-08-01 17:42:21 +03:00
|
|
|
import { NbMenuItem } from '@nebular/theme';
|
2017-04-14 18:28:27 +03:00
|
|
|
|
|
|
|
|
import { List } from 'immutable';
|
|
|
|
|
|
2017-08-01 17:42:21 +03:00
|
|
|
export const MENU_ITEMS: List<NbMenuItem> = List([{
|
2017-07-24 20:14:06 +03:00
|
|
|
title: 'Dashboard',
|
2017-09-05 17:30:24 +03:00
|
|
|
icon: 'nb-home',
|
2017-07-24 20:14:06 +03:00
|
|
|
link: '/pages/dashboard',
|
|
|
|
|
home: true,
|
|
|
|
|
}, {
|
|
|
|
|
title: 'FEATURES',
|
|
|
|
|
group: true,
|
|
|
|
|
}, {
|
|
|
|
|
title: 'UI Features',
|
2017-09-05 17:30:24 +03:00
|
|
|
icon: 'nb-keypad',
|
2017-07-24 20:14:06 +03:00
|
|
|
link: '/pages/ui-features',
|
2017-08-01 17:42:21 +03:00
|
|
|
children: List<NbMenuItem>([{
|
2017-07-24 20:14:06 +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',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Typography',
|
|
|
|
|
link: '/pages/ui-features/typography',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Animated Searches',
|
|
|
|
|
link: '/pages/ui-features/search-fields',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Tabs',
|
|
|
|
|
link: '/pages/ui-features/tabs',
|
|
|
|
|
}]),
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Forms',
|
2017-09-05 17:30:24 +03:00
|
|
|
icon: 'nb-compose',
|
2017-08-01 17:42:21 +03:00
|
|
|
children: List<NbMenuItem>([{
|
2017-07-24 20:14:06 +03:00
|
|
|
title: 'Form Inputs',
|
|
|
|
|
link: '/pages/forms/inputs',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Form Layouts',
|
|
|
|
|
link: '/pages/forms/layouts',
|
|
|
|
|
}]),
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Components',
|
2017-09-05 17:30:24 +03:00
|
|
|
icon: 'nb-gear',
|
2017-08-01 17:42:21 +03:00
|
|
|
children: List<NbMenuItem>([{
|
2017-07-24 20:14:06 +03:00
|
|
|
title: 'Tree',
|
|
|
|
|
link: '/pages/components/tree',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Notifications',
|
|
|
|
|
link: '/pages/components/notifications',
|
|
|
|
|
}]),
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Maps',
|
2017-09-05 17:30:24 +03:00
|
|
|
icon: 'nb-location',
|
2017-08-01 17:42:21 +03:00
|
|
|
children: List<NbMenuItem>([{
|
2017-07-26 15:40:20 +03:00
|
|
|
title: 'Google Maps',
|
2017-07-24 20:14:06 +03:00
|
|
|
link: '/pages/maps/gmaps',
|
|
|
|
|
}, {
|
2017-07-26 15:40:20 +03:00
|
|
|
title: 'Leaflet Maps',
|
2017-07-24 20:14:06 +03:00
|
|
|
link: '/pages/maps/leaflet',
|
2017-07-26 15:40:20 +03:00
|
|
|
}, {
|
|
|
|
|
title: 'Bubble Maps',
|
|
|
|
|
link: '/pages/maps/bubble',
|
2017-07-24 20:14:06 +03:00
|
|
|
}]),
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Charts',
|
2017-09-05 17:30:24 +03:00
|
|
|
icon: 'nb-bar-chart',
|
2017-08-01 17:42:21 +03:00
|
|
|
children: List<NbMenuItem>([{
|
2017-07-24 20:14:06 +03:00
|
|
|
title: 'Echarts',
|
|
|
|
|
link: '/pages/charts/echarts',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Charts.js',
|
|
|
|
|
link: '/pages/charts/chartjs',
|
2017-08-29 11:42:03 +03:00
|
|
|
}, {
|
|
|
|
|
title: 'D3',
|
|
|
|
|
link: '/pages/charts/d3',
|
2017-07-24 20:14:06 +03:00
|
|
|
}]),
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Editors',
|
2017-09-05 17:30:24 +03:00
|
|
|
icon: 'nb-title',
|
2017-08-01 17:42:21 +03:00
|
|
|
children: List<NbMenuItem>([{
|
2017-07-24 20:14:06 +03:00
|
|
|
title: 'TinyMCE',
|
|
|
|
|
link: '/pages/editors/tinymce',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'CKEditor',
|
|
|
|
|
link: '/pages/editors/ckeditor',
|
|
|
|
|
}]),
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Tables',
|
2017-09-05 17:30:24 +03:00
|
|
|
icon: 'nb-tables',
|
2017-08-01 17:42:21 +03:00
|
|
|
children: List<NbMenuItem>([{
|
2017-07-24 20:14:06 +03:00
|
|
|
title: 'Smart Table',
|
|
|
|
|
link: '/pages/tables/smart-table',
|
|
|
|
|
}]),
|
2017-08-02 17:27:19 +03:00
|
|
|
}, {
|
|
|
|
|
title: 'Auth',
|
2017-09-05 17:30:24 +03:00
|
|
|
icon: 'nb-locked',
|
2017-08-02 18:13:50 +03:00
|
|
|
children: List<NbMenuItem>([{
|
2017-08-02 17:27:19 +03:00
|
|
|
title: 'Login',
|
|
|
|
|
link: '/auth/login',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Register',
|
|
|
|
|
link: '/auth/register',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Request Password',
|
|
|
|
|
link: '/auth/request-password',
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Reset Password',
|
|
|
|
|
link: '/auth/reset-password',
|
|
|
|
|
}]),
|
2017-07-24 20:14:06 +03:00
|
|
|
}]);
|