2021-01-26 18:30:00 +01:00
|
|
|
// (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.
|
|
|
|
|
2021-03-01 16:12:38 +01:00
|
|
|
import { APP_INITIALIZER, NgModule, Type } from '@angular/core';
|
2021-01-26 18:30:00 +01:00
|
|
|
import { Routes } from '@angular/router';
|
2021-01-27 11:31:17 +01:00
|
|
|
import { CoreContentLinksDelegate } from '@features/contentlinks/services/contentlinks-delegate';
|
2021-02-09 17:04:04 +01:00
|
|
|
import { CoreCourseIndexRoutingModule } from '@features/course/pages/index/index-routing.module';
|
2021-01-27 11:31:17 +01:00
|
|
|
import { CoreCourseOptionsDelegate } from '@features/course/services/course-options-delegate';
|
2021-01-26 18:30:00 +01:00
|
|
|
import { CoreMainMenuRoutingModule } from '@features/mainmenu/mainmenu-routing.module';
|
2021-01-27 11:31:17 +01:00
|
|
|
import { CoreMainMenuTabRoutingModule } from '@features/mainmenu/mainmenu-tab-routing.module';
|
2021-01-26 18:30:00 +01:00
|
|
|
import { CoreMainMenuDelegate } from '@features/mainmenu/services/mainmenu-delegate';
|
2021-01-27 11:31:17 +01:00
|
|
|
import { CoreUserDelegate } from '@features/user/services/user-delegate';
|
2021-03-01 16:12:38 +01:00
|
|
|
import { CoreGradesProvider } from './services/grades';
|
|
|
|
import { CoreGradesHelperProvider } from './services/grades-helper';
|
2021-01-27 11:31:17 +01:00
|
|
|
import { CoreGradesCourseOptionHandler } from './services/handlers/course-option';
|
2021-03-02 11:41:04 +01:00
|
|
|
import { CoreGradesMainMenuHandler, CoreGradesMainMenuHandlerService } from './services/handlers/mainmenu';
|
2021-01-27 11:31:17 +01:00
|
|
|
import { CoreGradesOverviewLinkHandler } from './services/handlers/overview-link';
|
|
|
|
import { CoreGradesUserHandler } from './services/handlers/user';
|
|
|
|
import { CoreGradesUserLinkHandler } from './services/handlers/user-link';
|
2021-01-26 18:30:00 +01:00
|
|
|
|
2021-03-01 16:12:38 +01:00
|
|
|
export const CORE_GRADES_SERVICES: Type<unknown>[] = [
|
|
|
|
CoreGradesProvider,
|
|
|
|
CoreGradesHelperProvider,
|
|
|
|
];
|
|
|
|
|
2021-01-26 18:30:00 +01:00
|
|
|
const routes: Routes = [
|
|
|
|
{
|
|
|
|
path: CoreGradesMainMenuHandlerService.PAGE_NAME,
|
|
|
|
loadChildren: () => import('@features/grades/grades-lazy.module').then(m => m.CoreGradesLazyModule),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2021-02-09 17:04:04 +01:00
|
|
|
const courseIndexRoutes: Routes = [
|
|
|
|
{
|
|
|
|
path: 'grades',
|
|
|
|
loadChildren: () => import('@features/grades/grades-course-lazy.module').then(m => m.CoreGradesCourseLazyModule),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2021-01-26 18:30:00 +01:00
|
|
|
@NgModule({
|
2021-01-27 11:31:17 +01:00
|
|
|
imports: [
|
|
|
|
CoreMainMenuTabRoutingModule.forChild(routes),
|
|
|
|
CoreMainMenuRoutingModule.forChild({ children: routes }),
|
2021-02-09 17:04:04 +01:00
|
|
|
CoreCourseIndexRoutingModule.forChild({ children: courseIndexRoutes }),
|
2021-01-27 11:31:17 +01:00
|
|
|
],
|
2021-01-26 18:30:00 +01:00
|
|
|
providers: [
|
|
|
|
{
|
|
|
|
provide: APP_INITIALIZER,
|
|
|
|
multi: true,
|
|
|
|
deps: [],
|
|
|
|
useValue: () => {
|
2021-03-02 11:41:04 +01:00
|
|
|
CoreMainMenuDelegate.registerHandler(CoreGradesMainMenuHandler.instance);
|
|
|
|
CoreUserDelegate.registerHandler(CoreGradesUserHandler.instance);
|
|
|
|
CoreContentLinksDelegate.registerHandler(CoreGradesUserLinkHandler.instance);
|
|
|
|
CoreContentLinksDelegate.registerHandler(CoreGradesOverviewLinkHandler.instance);
|
|
|
|
CoreCourseOptionsDelegate.registerHandler(CoreGradesCourseOptionHandler.instance);
|
2021-01-26 18:30:00 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
})
|
|
|
|
export class CoreGradesModule {}
|