src/app/app-routing.module.ts
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { RouterLinks } from './app.constant';
import { HasNotBeenOnboardedGuard } from '@app/guards/has-not-been-onboarded.guard';
import { HasNotSelectedFrameworkGuard } from '@app/guards/has-not-selected-framework.guard';
import { HasNotSelectedLanguageGuard } from '@app/guards/has-not-selected-language.guard';
import { HasNotSelectedUserTypeGuard } from '@app/guards/has-not-selected-user-type.guard';
import { IsGuestUserGuard } from '@app/guards/is-guest-user.guard';
import { MlGuard } from './manage-learn/core/guards/ml.guard';
const routes: Routes = [
{
path: '',
redirectTo: `${'language-setting'}`,
pathMatch: 'full'
},
{
path: `${'language-setting'}/:isFromSettings`,
loadChildren: './language-settings/language-settings.module#LanguageSettingsModule'
},
{
path: `${'language-setting'}`,
loadChildren: './language-settings/language-settings.module#LanguageSettingsModule',
canLoad: [HasNotBeenOnboardedGuard],
resolve: { message: HasNotSelectedLanguageGuard }
},
{
path: `${'user-type-selection'}`,
loadChildren: './user-type-selection/user-type-selection.module#UserTypeSelectionPageModule',
canLoad: [HasNotBeenOnboardedGuard],
resolve: { message: HasNotSelectedUserTypeGuard }
},
{
path: `${'user-type-selection-loggedin'}`,
loadChildren: './user-type-selection/user-type-selection.module#UserTypeSelectionPageModule'
},
{
path: 'profile-settings',
loadChildren: './profile-settings/profile-settings.module#ProfileSettingsPageModule',
canLoad: [HasNotBeenOnboardedGuard],
resolve: { message: HasNotSelectedFrameworkGuard }
},
{
path: 'tabs',
loadChildren: './tabs/tabs.module#TabsPageModule'
},
{
path: 'resources',
loadChildren: './resources/resources.module#ResourcesModule',
},
{
path: 'home',
loadChildren: './home/home.module#HomePageModule'
},
{ path: 'view-more-activity', loadChildren: './view-more-activity/view-more-activity.module#ViewMoreActivityModule' },
{ path: 'settings', loadChildren: './settings/settings.module#SettingsPageModule' },
{ path: 'download-manager', loadChildren: './download-manager/download-manager.module#DownloadManagerPageModule' },
{ path: 'storage-settings', loadChildren: './storage-settings/storage-settings.module#StorageSettingsPageModule' },
{ path: 'courses', loadChildren: './courses/courses.module#CoursesPageModule' },
{ path: 'search', loadChildren: './search/search.module#SearchPageModule' },
{ path: 'profile', loadChildren: './profile/profile.module#ProfilePageModule' },
{ path: 'active-downloads', loadChildren: './active-downloads/active-downloads.module#ActiveDownloadsPageModule' },
{ path: 'course-batches', loadChildren: './course-batches/course-batches.module#CourseBatchesPageModule' },
{
path: 'enrolled-course-details',
loadChildren: './enrolled-course-details-page/enrolled-course-details-page.module#EnrolledCourseDetailsPagePageModule'
},
{ path: 'qrscanner-alert', loadChildren: './qrscanner-alert/qrscanner-alert.module#QrscannerAlertPageModule' },
{
path: 'collection-detail-etb',
loadChildren: './collection-detail-etb/collection-detail-etb.module#CollectionDetailEtbPageModule'
},
{ path: `${'content-details'}/:id`, loadChildren: './content-details/content-details.module#ContentDetailsPageModule' },
{ path: 'content-details', loadChildren: './content-details/content-details.module#ContentDetailsPageModule' },
{ path: 'player', loadChildren: './player/player.module#PlayerPageModule' },
{ path: 'page-filter', loadChildren: './page-filter/page-filter.module#PageFilterPageModule' },
{
path: 'page-filter-options',
loadChildren: './page-filter/page-filter-options/page-filter-options.module#PageFilterOptionsPageModule'
},
{ path: 'qrcoderesult', loadChildren: './qrcoderesult/qrcoderesult.module#QrcoderesultPageModule' },
{ path: 'notification', loadChildren: './notification/notification.module#NotificationPageModule' },
{ path: 'faq-help', loadChildren: './faq-help/faq-help.module#FaqHelpPageModule' },
{
path: 'terms-and-conditions',
loadChildren: './terms-and-conditions/terms-and-conditions.module#TermsAndConditionsPageModule'
},
{ path: 'filters', loadChildren: './search/filters/filters.module#FiltersPageModule' },
{ path: 'textbook-view-more', loadChildren: './textbook-view-more/textbook-view-more.module#TextbookViewMorePageModule' },
{ path: 'guest-edit', loadChildren: './profile/guest-edit/guest-edit.module#GuestEditPageModule' },
{ path: 'explore-book', loadChildren: './resources/explore-books/explore-books.module#ExploreBooksPageModule' },
{ path: 'faq-report-issue', loadChildren: './faq-report-issue/faq-report-issue.module#FaqReportIssuePageModule' },
{
path: 'district-mapping',
loadChildren: './district-mapping/district-mapping.module#DistrictMappingPageModule'
},
{ path: 'my-groups', loadChildren: './my-groups/my-groups.module#MyGroupsPageModule' },
{ path: 'curriculum-courses', loadChildren: './curriculum-courses/curriculum-courses.module#CurriculumCoursesPageModule' },
{ path: 'program', loadChildren: './manage-learn/programs/programs.module#ProgramsModule', canActivate:[MlGuard] },
{ path: 'survey', loadChildren: './manage-learn/survey/survey.module#SurveyModule', canActivate:[MlGuard] },
{ path: 'project', loadChildren: './manage-learn/project/project.module#ProjectModule'},
{ path: "reports", loadChildren: './manage-learn/reports/reports.module#ReportsModule',canActivate:[MlGuard] },
{
path: 'questionnaire',
loadChildren: './manage-learn/questionnaire/questionnaire.module#QuestionnairePageModule'
},
{ path: 'observation', loadChildren: './manage-learn/observation/observation.module#ObservationModule' , canActivate:[MlGuard]},
{ path: 'category-list', loadChildren: './category-list/category-list-page.module#CategoryListPageModule' },
{ path: 'guest-profile', loadChildren: './profile/guest-profile/guest-profile.module#GuestProfilePageModule' },
{ path: 'ecm-listing', loadChildren: './manage-learn/ecm-listing/ecm-listing.module#EcmListingPageModule' },
{ path: 'section-listing', loadChildren: './manage-learn/section-listing/section-listing.module#SectionListingPageModule' },
{ path: 'submission_preview', loadChildren: './manage-learn/submission-preview/submission-preview.module#SubmissionPreviewModule' },
{ path: 'image-listing', loadChildren: './manage-learn/image-listing/image-listing.module#ImageListingModule' },
{ path: 'all-evidence', loadChildren: './manage-learn/all-evidence-list/all-evidence-list.module#AllEvidenceListModule' },
{ path: "project-report", loadChildren: './manage-learn/project-report/project-report.module#ProjectReportModule' },
{ path: `${"deeplink-redirect"}/:extra`, loadChildren: './manage-learn/deeplink-redirect/deeplink-redirect.module#DeeplinkRedirectModule' },
{ path: 'category-list', loadChildren: './category-list/category-list-page.module#CategoryListPageModule'},
{ path: 'guest-profile', loadChildren: './profile/guest-profile/guest-profile.module#GuestProfilePageModule' },
{ path: 'discussion-forum', loadChildren: './discussion-forum/discussion-forum.module#DiscussionForumModule' },
{ path: 'search-filter', loadChildren: './search-filter/search-filter.module#SearchFilterPageModule' },
{ path: 'generic-report', loadChildren: './manage-learn/generic-reports/generic-reports.module#GenericReportsModule' , canActivate:[MlGuard]},
{ path: 'domain-ecm-listing', loadChildren: './manage-learn/domain-ecm-listing/domain-ecm-listing.module#DomainEcmListingModule' },
{
path: 'imp-suggestions',
loadChildren: './manage-learn/imp-suggestions/imp-suggestions.module#ImpSuggestionsPageModule'
},
{ path: 'sign-in', loadChildren: './sign-in/sign-in.module#SignInPageModule'},
{
path: 'signup-basic-info',
loadChildren: './signup/signup-basic-info/signup-basic-info.module#SignupBasicInfoPageModule'
},
{
path: 'signup-email',
loadChildren: './signup/signup-email-password/signup-email-password.module#SignupEmailPasswordPageModule'
},
{
path: 'otp',
loadChildren: './signup/otp/otp.module#OtpPageModule'
}
];
@NgModule({
imports: [
RouterModule.forRoot(routes, { relativeLinkResolution: 'legacy' })
],
exports: [RouterModule],
providers: [
HasNotBeenOnboardedGuard,
HasNotSelectedLanguageGuard,
HasNotSelectedUserTypeGuard,
HasNotSelectedFrameworkGuard,
IsGuestUserGuard],
})
export class AppRoutingModule { }