2017-09-21 09:08:52 +00:00
|
|
|
export class NavigationModel
|
2017-07-08 16:12:52 +00:00
|
|
|
{
|
2017-09-21 09:08:52 +00:00
|
|
|
model: any[];
|
2017-07-09 10:38:38 +00:00
|
|
|
|
|
|
|
constructor()
|
|
|
|
{
|
2017-09-21 09:08:52 +00:00
|
|
|
this.model = [
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
|
|
|
'title' : 'Applications',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'apps',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title' : 'Dashboards',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'dashboard',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title': 'Project',
|
|
|
|
'url' : '/apps/dashboards/project'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Calendar',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'today',
|
|
|
|
'url' : '/apps/calendar'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Mail',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'email',
|
|
|
|
'url' : '/apps/mail',
|
|
|
|
'badge': {
|
|
|
|
'title': 25,
|
|
|
|
'bg' : '#F44336',
|
|
|
|
'fg' : '#FFFFFF'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Chat',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'chat',
|
|
|
|
'url' : '/apps/chat',
|
|
|
|
'badge': {
|
|
|
|
'title': 13,
|
|
|
|
'bg' : '#09d261',
|
|
|
|
'fg' : '#FFFFFF'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'File Manager',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'folder',
|
|
|
|
'url' : '/apps/file-manager'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Contacts',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'account_box',
|
|
|
|
'url' : '/apps/contacts'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'To-Do',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'check_box',
|
|
|
|
'url' : '/apps/todo',
|
|
|
|
'badge': {
|
|
|
|
'title': 3,
|
|
|
|
'bg' : '#FF6F00',
|
|
|
|
'fg' : '#FFFFFF'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Scrumboard',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'assessment',
|
|
|
|
'url' : '/apps/scrumboard'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Pages',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'pages',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title' : 'Authentication',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'lock',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Login',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/login'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Login v2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/login-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Register',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/register'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Register v2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/register-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Forgot Password',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/forgot-password'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Reset Password',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/reset-password'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Lock Screen',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/lock'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Coming Soon',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'alarm',
|
|
|
|
'url' : '/pages/coming-soon'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Errors',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'error',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': '404',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/errors/error-404'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': '500',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/errors/error-500'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Invoice',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'receipt',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Modern',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/invoices/modern'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Compact',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/invoices/compact'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Maintenance',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'build',
|
|
|
|
'url' : '/pages/maintenance'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Profile',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'person',
|
|
|
|
'url' : '/pages/profile'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Search',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'search',
|
|
|
|
'url' : '/pages/search'
|
|
|
|
}
|
|
|
|
]
|
2017-07-09 10:38:38 +00:00
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
|
|
|
'title' : 'User Interface',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'web',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Forms',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'web_asset',
|
|
|
|
'url' : '/ui/forms'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Icons',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'photo',
|
|
|
|
'url' : '/ui/icons'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Typography',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'text_fields',
|
|
|
|
'url' : '/ui/typography'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Helper Classes',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'help',
|
|
|
|
'url' : '/ui/helper-classes'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Page Layouts',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'view_quilt',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title' : 'Carded',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Full Width',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/full-width'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Full Width 2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/full-width-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Left Sidenav',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/left-sidenav'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Left Sidenav 2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/left-sidenav-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Right Sidenav',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/right-sidenav'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Right Sidenav 2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/right-sidenav-2'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Simple',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Full Width',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/full-width'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Left Sidenav',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/left-sidenav'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Left Sidenav 2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/left-sidenav-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Left Sidenav 3',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/left-sidenav-3'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Right Sidenav',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/right-sidenav'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Right Sidenav 2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/right-sidenav-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Right Sidenav 3',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/right-sidenav-3'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Tabbed',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/tabbed'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Blank',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/blank'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Colors',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'color_lens',
|
|
|
|
'url' : '/ui/colors'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Services',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Config',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings',
|
|
|
|
'url' : '/services/config'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Splash Screen',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings',
|
|
|
|
'url' : '/services/splash-screen'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Components',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Countdown',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/countdown'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Highlight.js',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/highlightjs'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Material Color Picker',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/material-color-picker'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Navigation',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/navigation'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Price Tables',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/price-tables'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Search Bar',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/search-bar'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Shortcuts',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/shortcuts'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Widget',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/widget'
|
2017-09-21 09:08:52 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : '3rd Party components',
|
|
|
|
'type' : 'group',
|
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'children': [
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
2017-09-21 09:08:52 +00:00
|
|
|
'title' : 'Datatables',
|
|
|
|
'type' : 'collapse',
|
|
|
|
'icon' : 'border_all',
|
2017-09-11 09:30:01 +00:00
|
|
|
'children': [
|
|
|
|
{
|
2017-09-21 09:08:52 +00:00
|
|
|
'title': 'ngx-datatable',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components-third-party/datatables/ngx-datatable'
|
2017-09-11 09:30:01 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2017-07-09 10:38:38 +00:00
|
|
|
];
|
|
|
|
}
|
2017-07-08 16:12:52 +00:00
|
|
|
}
|