// (C) Copyright 2015 Moodle Pty Ltd. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import { APP_INITIALIZER, NgModule, Type } from '@angular/core'; import { Routes } from '@angular/router'; import { CoreMainMenuTabRoutingModule } from '@features/mainmenu/mainmenu-tab-routing.module'; import { CORE_SITE_SCHEMAS } from '@services/sites'; import { SITE_SCHEMA, OFFLINE_SITE_SCHEMA } from './services/database/user'; import { CoreUserComponentsModule } from './components/components.module'; import { CoreUserDelegate, CoreUserDelegateService } from './services/user-delegate'; import { CoreUserProfileMailHandler } from './services/handlers/profile-mail'; import { CoreContentLinksDelegate } from '@features/contentlinks/services/contentlinks-delegate'; import { CoreUserProfileLinkHandler } from './services/handlers/profile-link'; import { CoreCronDelegate } from '@services/cron'; import { CoreUserSyncCronHandler } from './services/handlers/sync-cron'; import { CoreUserTagAreaHandler } from './services/handlers/tag-area'; import { CoreTagAreaDelegate } from '@features/tag/services/tag-area-delegate'; import { CoreCourseIndexRoutingModule } from '@features/course/pages/index/index-routing.module'; import { CoreCourseOptionsDelegate } from '@features/course/services/course-options-delegate'; import { CoreUserCourseOptionHandler } from './services/handlers/course-option'; import { CoreUserProfileFieldDelegateService } from './services/user-profile-field-delegate'; import { CoreUserProvider } from './services/user'; import { CoreUserHelper, CoreUserHelperProvider } from './services/user-helper'; import { CoreUserOfflineProvider } from './services/user-offline'; import { CoreUserSyncProvider } from './services/user-sync'; import { AppRoutingModule, conditionalRoutes } from '@/app/app-routing.module'; import { CoreScreen } from '@services/screen'; import { COURSE_PAGE_NAME } from '@features/course/course.module'; import { COURSE_INDEX_PATH } from '@features/course/course-lazy.module'; import { CoreEvents } from '@singletons/events'; export const CORE_USER_SERVICES: Type[] = [ CoreUserDelegateService, CoreUserProfileFieldDelegateService, CoreUserProvider, CoreUserHelperProvider, CoreUserOfflineProvider, CoreUserSyncProvider, ]; export const PARTICIPANTS_PAGE_NAME = 'participants'; const appRoutes: Routes = [ { path: 'user', loadChildren: () => import('@features/user/user-app-lazy.module').then(m => m.CoreUserAppLazyModule), }, ]; const routes: Routes = [ { path: 'user', loadChildren: () => import('@features/user/user-lazy.module').then(m => m.CoreUserLazyModule), }, ...conditionalRoutes([ { path: `${COURSE_PAGE_NAME}/${COURSE_INDEX_PATH}/${PARTICIPANTS_PAGE_NAME}/:userId`, loadChildren: () => import('@features/user/pages/profile/profile.module').then(m => m.CoreUserProfilePageModule), data: { swipeManagerSource: 'participants', }, }, ], () => CoreScreen.isMobile), ]; const courseIndexRoutes: Routes = [ { path: PARTICIPANTS_PAGE_NAME, loadChildren: () => import('@features/user/user-course-lazy.module').then(m => m.CoreUserCourseLazyModule), }, ]; @NgModule({ imports: [ AppRoutingModule.forChild(appRoutes), CoreMainMenuTabRoutingModule.forChild(routes), CoreCourseIndexRoutingModule.forChild({ children: courseIndexRoutes }), CoreUserComponentsModule, ], providers: [ { provide: CORE_SITE_SCHEMAS, useValue: [ SITE_SCHEMA, OFFLINE_SITE_SCHEMA, ], multi: true, }, { provide: APP_INITIALIZER, multi: true, useValue: () => { CoreUserDelegate.registerHandler(CoreUserProfileMailHandler.instance); CoreContentLinksDelegate.registerHandler(CoreUserProfileLinkHandler.instance); CoreCronDelegate.register(CoreUserSyncCronHandler.instance); CoreTagAreaDelegate.registerHandler(CoreUserTagAreaHandler.instance); CoreCourseOptionsDelegate.registerHandler(CoreUserCourseOptionHandler.instance); CoreEvents.on(CoreEvents.USER_NOT_FULLY_SETUP, (data) => { CoreUserHelper.openCompleteProfile(data.siteId); }); }, }, ], }) export class CoreUserModule {}