fuse-angular/src/app/core/components/navigation/navigation.model.ts

369 lines
13 KiB
TypeScript
Raw Normal View History

export class FuseNavigation
{
2017-07-09 10:38:38 +00:00
public items: any[];
constructor()
{
this.items = [
{
'title': 'APPS',
'type' : 'subheader'
},
{
'title' : 'Dashboards',
'type' : 'nav-collapse',
'icon' : 'dashboard',
'children': [
{
'type' : 'nav-item',
'title': 'Project',
'url' : '/apps/dashboards/project'
},
{
'type' : 'nav-item',
'title': 'Server',
'url' : '/apps/dashboards/server'
}
]
},
{
'title': 'Calendar',
'type' : 'nav-item',
'icon' : 'today',
'url' : '/apps/calendar'
},
{
'title' : 'Ecommerce',
'type' : 'nav-collapse',
'icon' : 'shopping_cart',
'children': [
{
'title': 'Products',
'type' : 'nav-item',
'url' : '/apps/e-commerce/products'
},
{
'title': 'Product',
'type' : 'nav-item',
'url' : '/apps/e-commerce/product'
},
{
'title': 'Orders',
'type' : 'nav-item',
'url' : '/apps/e-commerce/orders'
}
]
},
{
'title': 'Mail',
'type' : 'nav-item',
'icon' : 'email',
2017-07-17 15:11:34 +00:00
'url' : '/apps/mail'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Chat',
'type' : 'nav-item',
'icon' : 'chat',
'url' : '/apps/chat'
},
{
'title': 'File Manager',
'type' : 'nav-item',
'icon' : 'folder',
'url' : '/apps/file-manager'
},
{
'title': 'Contacts',
'type' : 'nav-item',
'icon' : 'account_box',
'url' : '/apps/contacts'
},
{
'title': 'To-Do',
'type' : 'nav-item',
'icon' : 'checkbox_cricle',
'url' : '/apps/todo'
},
{
'title': 'PAGES',
'type' : 'subheader'
},
{
'title' : 'Authentication',
'type' : 'nav-collapse',
'icon' : 'lock',
'children': [
{
'title': 'Login',
'type' : 'nav-item',
'url' : '/pages/auth/login'
},
{
'title': 'Login v2',
'type' : 'nav-item',
2017-07-28 13:03:32 +00:00
'url' : '/pages/auth/login-2'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Register',
'type' : 'nav-item',
'url' : '/pages/auth/register'
},
{
'title': 'Register v2',
'type' : 'nav-item',
2017-07-28 13:03:32 +00:00
'url' : '/pages/auth/register-2'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Forgot Password',
'type' : 'nav-item',
'url' : '/pages/auth/forgot-password'
},
{
'title': 'Reset Password',
'type' : 'nav-item',
'url' : '/pages/auth/reset-password'
},
{
'title': 'Lock Screen',
'type' : 'nav-item',
2017-07-28 13:03:32 +00:00
'url' : '/pages/auth/lock'
2017-07-09 10:38:38 +00:00
}
]
},
{
'title': 'Coming Soon',
'type' : 'nav-item',
'icon' : 'alarm',
'url' : '/pages/coming-soon'
},
{
'title' : 'Errors',
'type' : 'nav-collapse',
'icon' : 'error',
'children': [
{
'title': '404',
'type' : 'nav-item',
2017-07-28 13:03:32 +00:00
'url' : '/pages/errors/error-404'
2017-07-09 10:38:38 +00:00
},
{
'title': '500',
'type' : 'nav-item',
2017-07-28 13:03:32 +00:00
'url' : '/pages/errors/error-500'
2017-07-09 10:38:38 +00:00
}
]
},
{
'title': 'Maintenance',
'type' : 'nav-item',
'icon' : 'build',
'url' : '/pages/maintenance'
},
{
'title': 'Profile',
'type' : 'nav-item',
2017-07-29 11:25:23 +00:00
'icon' : 'person',
2017-07-09 10:38:38 +00:00
'url' : '/pages/profile'
},
{
'title': 'Search',
'type' : 'nav-item',
'icon' : 'search',
'url' : '/pages/search'
},
{
'title': 'USER INTERFACE',
'type' : 'subheader'
},
{
'title' : 'Elements',
'type' : 'nav-collapse',
'icon' : 'layers',
'children': [
{
'title': 'Alerts',
'type' : 'nav-item',
'url' : '/ui/elements/alerts'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Badges',
'type' : 'nav-item',
'url' : '/ui/elements/badges'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Breadcrumb',
'type' : 'nav-item',
'url' : '/ui/elements/breadcrumb'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Buttons',
'type' : 'nav-item',
'url' : '/ui/elements/buttons'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Button Group',
'type' : 'nav-item',
'url' : '/ui/elements/button-group'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Cards',
'type' : 'nav-item',
'url' : '/ui/elements/cards'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Dropdowns',
'type' : 'nav-item',
'url' : '/ui/elements/dropdowns'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Forms',
'type' : 'nav-item',
'url' : '/ui/elements/forms'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Input Group',
'type' : 'nav-item',
'url' : '/ui/elements/input-group'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Jumbotron',
'type' : 'nav-item',
'url' : '/ui/elements/jumbotron'
2017-07-09 10:38:38 +00:00
},
{
'title': 'List Group',
'type' : 'nav-item',
'url' : '/ui/elements/list-group'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Navs',
'type' : 'nav-item',
'url' : '/ui/elements/navs'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Navbar',
'type' : 'nav-item',
'url' : '/ui/elements/navbar'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Pagination',
'type' : 'nav-item',
'url' : '/ui/elements/pagination'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Progress',
'type' : 'nav-item',
'url' : '/ui/elements/progress'
2017-07-09 10:38:38 +00:00
}
]
},
{
'title' : 'Page Layouts',
'type' : 'nav-collapse',
'icon' : 'view_quilt',
'children': [
{
'title' : 'Carded',
'type' : 'nav-collapse',
'children': [
{
'title': 'Full Width',
'type' : 'nav-item',
2017-07-13 14:43:22 +00:00
'url' : '/ui/page-layouts/carded/full-width'
2017-07-09 10:38:38 +00:00
},
{
2017-07-13 14:43:22 +00:00
'title': 'Full Width 2',
2017-07-09 10:38:38 +00:00
'type' : 'nav-item',
2017-07-13 14:43:22 +00:00
'url' : '/ui/page-layouts/carded/full-width-2'
2017-07-09 10:38:38 +00:00
},
{
2017-07-13 14:43:22 +00:00
'title': 'Left Sidenav',
'type' : 'nav-item',
'url' : '/ui/page-layouts/carded/left-sidenav'
},
{
'title': 'Left Sidenav 2',
'type' : 'nav-item',
'url' : '/ui/page-layouts/carded/left-sidenav-2'
},
{
'title': 'Right Sidenav',
'type' : 'nav-item',
'url' : '/ui/page-layouts/carded/right-sidenav'
},
{
2017-07-15 15:03:40 +00:00
'title': 'Right Sidenav 2',
2017-07-09 10:38:38 +00:00
'type' : 'nav-item',
2017-07-13 14:43:22 +00:00
'url' : '/ui/page-layouts/carded/right-sidenav-2'
2017-07-09 10:38:38 +00:00
}
]
},
{
'title' : 'Simple',
'type' : 'nav-collapse',
'children': [
{
'title': 'Full Width',
'type' : 'nav-item',
2017-07-13 14:43:22 +00:00
'url' : '/ui/page-layouts/simple/full-width'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Left Sidenav',
2017-07-09 10:38:38 +00:00
'type' : 'nav-item',
'url' : '/ui/page-layouts/simple/left-sidenav'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Left Sidenav 2',
2017-07-09 10:38:38 +00:00
'type' : 'nav-item',
'url' : '/ui/page-layouts/simple/left-sidenav-2'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Right Sidenav',
2017-07-09 10:38:38 +00:00
'type' : 'nav-item',
'url' : '/ui/page-layouts/simple/right-sidenav'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Right Sidenav 2',
2017-07-09 10:38:38 +00:00
'type' : 'nav-item',
'url' : '/ui/page-layouts/simple/right-sidenav-2'
2017-07-09 10:38:38 +00:00
},
{
'title': 'Tabbed',
'type' : 'nav-item',
2017-07-13 14:43:22 +00:00
'url' : '/ui/page-layouts/simple/tabbed'
2017-07-09 10:38:38 +00:00
}
]
},
{
'title': 'Blank',
'type' : 'nav-item',
2017-07-13 14:43:22 +00:00
'url' : '/ui/page-layouts/blank'
2017-07-09 10:38:38 +00:00
}
]
},
{
'title': 'Colors',
'type' : 'nav-item',
'icon' : 'color_lens',
'url' : '/ui/colors'
2017-07-09 10:38:38 +00:00
},
{
'title': 'COMPONENTS',
'type' : 'subheader'
},
{
2017-07-29 13:42:53 +00:00
'title' : 'Datatables',
2017-07-09 10:38:38 +00:00
'type' : 'nav-collapse',
2017-07-29 12:26:46 +00:00
'icon' : 'border_all',
2017-07-09 10:38:38 +00:00
'children': [
{
2017-07-29 13:42:53 +00:00
'title': 'ngx-datatable',
2017-07-09 10:38:38 +00:00
'type' : 'nav-item',
2017-07-29 13:42:53 +00:00
'url' : '/components/datatables/ngx-datatable'
2017-07-09 10:38:38 +00:00
}
]
},
];
}
}