├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── cover-image.png ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.module.ts │ ├── core │ │ ├── core.module.ts │ │ └── errors │ │ │ ├── global-error-handler.ts │ │ │ └── http-loading.interceptor.ts │ ├── material.module.ts │ └── shared │ │ ├── errors │ │ ├── error-dialog.service.ts │ │ └── error-dialog │ │ │ ├── error-dialog.component.html │ │ │ ├── error-dialog.component.scss │ │ │ └── error-dialog.component.ts │ │ ├── loading │ │ ├── loading-dialog.service.ts │ │ └── loading-dialog │ │ │ ├── loading-dialog.component.html │ │ │ ├── loading-dialog.component.scss │ │ │ └── loading-dialog.component.ts │ │ └── shared.module.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/angular.json -------------------------------------------------------------------------------- /cover-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/cover-image.png -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/app/core/errors/global-error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/core/errors/global-error-handler.ts -------------------------------------------------------------------------------- /src/app/core/errors/http-loading.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/core/errors/http-loading.interceptor.ts -------------------------------------------------------------------------------- /src/app/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/material.module.ts -------------------------------------------------------------------------------- /src/app/shared/errors/error-dialog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/shared/errors/error-dialog.service.ts -------------------------------------------------------------------------------- /src/app/shared/errors/error-dialog/error-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/shared/errors/error-dialog/error-dialog.component.html -------------------------------------------------------------------------------- /src/app/shared/errors/error-dialog/error-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/shared/errors/error-dialog/error-dialog.component.scss -------------------------------------------------------------------------------- /src/app/shared/errors/error-dialog/error-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/shared/errors/error-dialog/error-dialog.component.ts -------------------------------------------------------------------------------- /src/app/shared/loading/loading-dialog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/shared/loading/loading-dialog.service.ts -------------------------------------------------------------------------------- /src/app/shared/loading/loading-dialog/loading-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/shared/loading/loading-dialog/loading-dialog.component.html -------------------------------------------------------------------------------- /src/app/shared/loading/loading-dialog/loading-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/shared/loading/loading-dialog/loading-dialog.component.scss -------------------------------------------------------------------------------- /src/app/shared/loading/loading-dialog/loading-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/shared/loading/loading-dialog/loading-dialog.component.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PKief/angular-global-error-handling/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------