2017-06-16 07:32:15 -05:00
|
|
|
import { NgModule } from '@angular/core'
|
2019-03-21 10:49:46 -05:00
|
|
|
import { RouteReuseStrategy, RouterModule, Routes } from '@angular/router'
|
2017-10-09 07:28:44 -05:00
|
|
|
|
|
|
|
import { PreloadSelectedModulesList } from './core'
|
2018-06-28 10:16:22 -05:00
|
|
|
import { AppComponent } from '@app/app.component'
|
2019-03-21 10:49:46 -05:00
|
|
|
import { CustomReuseStrategy } from '@app/core/routing/custom-reuse-strategy'
|
2016-11-20 10:18:15 -06:00
|
|
|
|
|
|
|
const routes: Routes = [
|
2018-05-17 08:25:50 -05:00
|
|
|
{
|
|
|
|
path: 'admin',
|
|
|
|
loadChildren: './+admin/admin.module#AdminModule'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: 'my-account',
|
|
|
|
loadChildren: './+my-account/my-account.module#MyAccountModule'
|
|
|
|
},
|
2018-08-31 02:18:19 -05:00
|
|
|
{
|
|
|
|
path: 'verify-account',
|
2019-05-29 07:39:49 -05:00
|
|
|
loadChildren: './+signup/+verify-account/verify-account.module#VerifyAccountModule'
|
2018-08-31 02:18:19 -05:00
|
|
|
},
|
2018-05-17 08:25:50 -05:00
|
|
|
{
|
|
|
|
path: 'accounts',
|
|
|
|
loadChildren: './+accounts/accounts.module#AccountsModule'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: 'video-channels',
|
|
|
|
loadChildren: './+video-channels/video-channels.module#VideoChannelsModule'
|
2018-05-31 04:35:01 -05:00
|
|
|
},
|
2018-06-27 07:21:03 -05:00
|
|
|
{
|
|
|
|
path: 'about',
|
|
|
|
loadChildren: './+about/about.module#AboutModule'
|
|
|
|
},
|
2019-05-29 07:39:49 -05:00
|
|
|
{
|
|
|
|
path: 'signup',
|
|
|
|
loadChildren: './+signup/+register/register.module#RegisterModule'
|
|
|
|
},
|
2018-06-28 10:16:22 -05:00
|
|
|
{
|
|
|
|
path: '',
|
|
|
|
component: AppComponent // Avoid 404, app component will redirect dynamically
|
|
|
|
},
|
2018-05-31 04:35:01 -05:00
|
|
|
{
|
|
|
|
path: '**',
|
|
|
|
loadChildren: './+page-not-found/page-not-found.module#PageNotFoundModule'
|
2018-05-17 08:25:50 -05:00
|
|
|
}
|
2017-06-16 07:32:15 -05:00
|
|
|
]
|
2016-11-20 10:18:15 -06:00
|
|
|
|
|
|
|
@NgModule({
|
2017-09-06 14:48:15 -05:00
|
|
|
imports: [
|
|
|
|
RouterModule.forRoot(routes, {
|
|
|
|
useHash: Boolean(history.pushState) === false,
|
2019-03-21 10:49:46 -05:00
|
|
|
scrollPositionRestoration: 'disabled',
|
2019-01-08 08:06:58 -06:00
|
|
|
preloadingStrategy: PreloadSelectedModulesList,
|
2019-03-21 10:49:46 -05:00
|
|
|
anchorScrolling: 'disabled'
|
2017-09-06 14:48:15 -05:00
|
|
|
})
|
|
|
|
],
|
2018-03-01 06:57:29 -06:00
|
|
|
providers: [
|
2019-03-21 10:49:46 -05:00
|
|
|
PreloadSelectedModulesList,
|
|
|
|
{ provide: RouteReuseStrategy, useClass: CustomReuseStrategy }
|
2018-03-01 06:57:29 -06:00
|
|
|
],
|
2016-11-20 10:18:15 -06:00
|
|
|
exports: [ RouterModule ]
|
|
|
|
})
|
|
|
|
export class AppRoutingModule {}
|