MOBILE-3639 compile: Pass all error classes to compiled instances
parent
fc6a95cb34
commit
36c2e45921
|
@ -0,0 +1,37 @@
|
||||||
|
// (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 { Type } from '@angular/core';
|
||||||
|
|
||||||
|
import { CoreError } from './error';
|
||||||
|
import { CoreWSError } from './wserror';
|
||||||
|
import { CoreCanceledError } from './cancelederror';
|
||||||
|
import { CoreSilentError } from './silenterror';
|
||||||
|
import { CoreAjaxError } from './ajaxerror';
|
||||||
|
import { CoreAjaxWSError } from './ajaxwserror';
|
||||||
|
import { CoreCaptureError } from './captureerror';
|
||||||
|
import { CoreNetworkError } from './network-error';
|
||||||
|
import { CoreSiteError } from './siteerror';
|
||||||
|
|
||||||
|
export const CORE_ERRORS_CLASSES: Type<unknown>[] = [
|
||||||
|
CoreAjaxError,
|
||||||
|
CoreAjaxWSError,
|
||||||
|
CoreCanceledError,
|
||||||
|
CoreCaptureError,
|
||||||
|
CoreError,
|
||||||
|
CoreNetworkError,
|
||||||
|
CoreSilentError,
|
||||||
|
CoreSiteError,
|
||||||
|
CoreWSError,
|
||||||
|
];
|
|
@ -88,6 +88,7 @@ import { CoreContentLinksModuleIndexHandler } from '@features/contentlinks/class
|
||||||
import { CoreCourseActivityPrefetchHandlerBase } from '@features/course/classes/activity-prefetch-handler';
|
import { CoreCourseActivityPrefetchHandlerBase } from '@features/course/classes/activity-prefetch-handler';
|
||||||
import { CoreCourseResourcePrefetchHandlerBase } from '@features/course/classes/resource-prefetch-handler';
|
import { CoreCourseResourcePrefetchHandlerBase } from '@features/course/classes/resource-prefetch-handler';
|
||||||
import { CoreGeolocationError, CoreGeolocationErrorReason } from '@services/geolocation';
|
import { CoreGeolocationError, CoreGeolocationErrorReason } from '@services/geolocation';
|
||||||
|
import { CORE_ERRORS_CLASSES } from '@classes/errors/errors';
|
||||||
|
|
||||||
// Import all core modules that define components, directives and pipes.
|
// Import all core modules that define components, directives and pipes.
|
||||||
import { CoreSharedModule } from '@/core/shared.module';
|
import { CoreSharedModule } from '@/core/shared.module';
|
||||||
|
@ -361,6 +362,9 @@ export class CoreCompileProvider {
|
||||||
instance['CoreSitePluginsAssignSubmissionComponent'] = CoreSitePluginsAssignSubmissionComponent;
|
instance['CoreSitePluginsAssignSubmissionComponent'] = CoreSitePluginsAssignSubmissionComponent;
|
||||||
instance['CoreGeolocationError'] = CoreGeolocationError;
|
instance['CoreGeolocationError'] = CoreGeolocationError;
|
||||||
instance['CoreGeolocationErrorReason'] = CoreGeolocationErrorReason;
|
instance['CoreGeolocationErrorReason'] = CoreGeolocationErrorReason;
|
||||||
|
CORE_ERRORS_CLASSES.forEach((classDef) => {
|
||||||
|
instance[classDef.name] = classDef;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue