nebular update and structure refactoring

This commit is contained in:
Dmitry Nehaychik 2019-06-11 18:18:58 +03:00
parent 78e4d2cfe9
commit df489ad17e
100 changed files with 736 additions and 3945 deletions

View file

@ -9,60 +9,74 @@ import { NotFoundComponent } from './miscellaneous/not-found/not-found.component
const routes: Routes = [{
path: '',
component: PagesComponent,
children: [{
path: 'dashboard',
component: ECommerceComponent,
}, {
path: 'iot-dashboard',
component: DashboardComponent,
}, {
path: 'ui-features',
loadChildren: () => import('./ui-features/ui-features.module')
.then(m => m.UiFeaturesModule),
}, {
path: 'modal-overlays',
loadChildren: () => import('./modal-overlays/modal-overlays.module')
.then(m => m.ModalOverlaysModule),
}, {
path: 'extra-components',
loadChildren: () => import('./extra-components/extra-components.module')
.then(m => m.ExtraComponentsModule),
}, {
path: 'bootstrap',
loadChildren: () => import('./bootstrap/bootstrap.module')
.then(m => m.BootstrapModule),
}, {
path: 'maps',
loadChildren: () => import('./maps/maps.module')
.then(m => m.MapsModule),
}, {
path: 'charts',
loadChildren: () => import('./charts/charts.module')
.then(m => m.ChartsModule),
}, {
path: 'editors',
loadChildren: () => import('./editors/editors.module')
.then(m => m.EditorsModule),
}, {
path: 'forms',
loadChildren: () => import('./forms/forms.module')
.then(m => m.FormsModule),
}, {
path: 'tables',
loadChildren: () => import('./tables/tables.module')
.then(m => m.TablesModule),
}, {
path: 'miscellaneous',
loadChildren: () => import('./miscellaneous/miscellaneous.module')
.then(m => m.MiscellaneousModule),
}, {
path: '',
redirectTo: 'dashboard',
pathMatch: 'full',
}, {
path: '**',
component: NotFoundComponent,
}],
children: [
{
path: 'dashboard',
component: ECommerceComponent,
},
{
path: 'iot-dashboard',
component: DashboardComponent,
},
{
path: 'layout',
loadChildren: () => import('./layout/layout.module')
.then(m => m.LayoutModule),
},
{
path: 'forms',
loadChildren: () => import('./forms/forms.module')
.then(m => m.FormsModule),
},
{
path: 'ui-features',
loadChildren: () => import('./ui-features/ui-features.module')
.then(m => m.UiFeaturesModule),
},
{
path: 'modal-overlays',
loadChildren: () => import('./modal-overlays/modal-overlays.module')
.then(m => m.ModalOverlaysModule),
},
{
path: 'extra-components',
loadChildren: () => import('./extra-components/extra-components.module')
.then(m => m.ExtraComponentsModule),
},
{
path: 'maps',
loadChildren: () => import('./maps/maps.module')
.then(m => m.MapsModule),
},
{
path: 'charts',
loadChildren: () => import('./charts/charts.module')
.then(m => m.ChartsModule),
},
{
path: 'editors',
loadChildren: () => import('./editors/editors.module')
.then(m => m.EditorsModule),
},
{
path: 'tables',
loadChildren: () => import('./tables/tables.module')
.then(m => m.TablesModule),
},
{
path: 'miscellaneous',
loadChildren: () => import('./miscellaneous/miscellaneous.module')
.then(m => m.MiscellaneousModule),
},
{
path: '',
redirectTo: 'dashboard',
pathMatch: 'full',
},
{
path: '**',
component: NotFoundComponent,
}],
}];
@NgModule({