implemented a apollo error interceptor

pull/8/head
FlayInAHook 4 years ago
parent d32e27235a
commit 645c234216

@ -38,7 +38,7 @@ import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { LoginComponent } from './pages/login/login.component'; import { LoginComponent } from './pages/login/login.component';
import { BikesComponent } from './pages/tables/bikes/bikes.component'; import { BikesComponent } from './pages/tables/bikes/bikes.component';
import { GraphQLModule2 } from './graphql.module'; import { GraphQLModule } from './graphql.module';
import { ParticipantsComponent } from './pages/tables/participants/participants.component'; import { ParticipantsComponent } from './pages/tables/participants/participants.component';
import { LendingStationsComponent } from './pages/tables/lending-stations/lending-stations.component'; import { LendingStationsComponent } from './pages/tables/lending-stations/lending-stations.component';
import { TableOverviewComponent } from './pages/table-overview/table-overview.component'; import { TableOverviewComponent } from './pages/table-overview/table-overview.component';
@ -126,7 +126,7 @@ import { HttpLinkModule } from 'apollo-angular-link-http';
MatProgressBarModule, MatProgressBarModule,
MatCheckboxModule, MatCheckboxModule,
MatSnackBarModule, MatSnackBarModule,
GraphQLModule2, GraphQLModule,
DragDropModule, DragDropModule,
MatTooltipModule, MatTooltipModule,
MatSelectModule, MatSelectModule,

@ -1,29 +1,22 @@
/*import { NgModule } from '@angular/core'; import { NgModule } from '@angular/core';
import { APOLLO_OPTIONS } from 'apollo-angular'; import { APOLLO_OPTIONS } from 'apollo-angular';
import { import {
ApolloClientOptions, ApolloClientOptions,
HttpLink,
InMemoryCache, InMemoryCache,
} from '@apollo/client/core'; } from '@apollo/client/core';
//import { HttpLink } from 'apollo-angular/http';
import { environment } from '../environments/environment'; import { environment } from '../environments/environment';
import { DefaultOptions } from '@apollo/client/core/ApolloClient'; import { DefaultOptions } from '@apollo/client/core/ApolloClient';
//import { HttpLink } from 'apollo-link-http';
import { onError } from '@apollo/link-error'; import { onError } from '@apollo/link-error';
import {Apollo, gql} from 'apollo-angular';
import {HttpLink} from 'apollo-angular/http';
import { SnackBarService } from './services/snackbar.service';
const uri = environment.apiUrl + '/graphql'; // <-- add the URL of the GraphQL server here const uri = environment.apiUrl + '/graphql'; // <-- add the URL of the GraphQL server here
const errorLink = onError(({ graphQLErrors, networkError }) => {
if (graphQLErrors)
graphQLErrors.map(({ message, locations, path }) =>
console.log(
`[GraphQL error]: Message: ${message}, Location: ${locations}, Path: ${path}`,
),
);
if (networkError) console.log(`[Network error]: ${networkError}`);
});
const defaultOptions: DefaultOptions = { const defaultOptions: DefaultOptions = {
watchQuery: { watchQuery: {
@ -36,9 +29,29 @@ const defaultOptions: DefaultOptions = {
}, },
} }
export function createApollo(httpLink: HttpLink): ApolloClientOptions<any> {
export function createApollo(httpLink: HttpLink, snackBar: SnackBarService): ApolloClientOptions<any> {
const errorLink = onError(({ graphQLErrors, networkError }) => {
if (graphQLErrors)
graphQLErrors.map(({ message, locations, path }) => {
snackBar.openSnackBar(JSON.stringify(message), "Ok", true);
/*console.log(
`[GraphQL error]: Message: ${message}, Location: ${locations}, Path: ${path}`,
)*/
},
);
if (networkError) {
//console.log(`[Network error]: ${networkError}`);
// THE FOLLOWING CODE IS UNTESTED
snackBar.openSnackBar("Ein NetzwerkFehler ist aufgetreten", "Ok", true, [{"message": networkError}] );
}
});
return { return {
//link: errorLink.concat(new HttpLink({ uri })), link: errorLink.concat(httpLink.create({ uri })),
cache: new InMemoryCache({}), cache: new InMemoryCache({}),
defaultOptions: defaultOptions, defaultOptions: defaultOptions,
}; };
@ -49,63 +62,10 @@ export function createApollo(httpLink: HttpLink): ApolloClientOptions<any> {
{ {
provide: APOLLO_OPTIONS, provide: APOLLO_OPTIONS,
useFactory: createApollo, useFactory: createApollo,
deps: [HttpLink], deps: [HttpLink, SnackBarService],
} }
], ],
}) })
export class GraphQLModule {} export class GraphQLModule {
*/
import { Apollo } from 'apollo-angular';
import { HTTP_INTERCEPTORS } from '@angular/common/http';
import { TokenInterceptor } from './helper/token.interceptor';
import { NgModule } from '@angular/core';
import {
ApolloClientOptions,
HttpLink,
InMemoryCache,
} from '@apollo/client/core';
import { environment } from '../environments/environment';
import { onError } from '@apollo/link-error';
//import { HttpLink } from 'apollo-angular-link-http';
//import { HttpLink } from 'apollo-link-http';
//import { onError } from 'apollo-link-error';
@NgModule({
providers: [
{ provide: HTTP_INTERCEPTORS, useClass: TokenInterceptor, multi: true },
]
})
export class GraphQLModule2 {
constructor(
apollo: Apollo,
) {
const link = new HttpLink({
uri: environment.apiUrl + '/graphql',
});
const errorLink = onError(({ graphQLErrors, networkError }) => {
if (graphQLErrors)
graphQLErrors.map(({ message, locations, path }) =>
console.log(
`[GraphQL error]: Message: ${message}, Location: ${locations}, Path: ${path}`,
),
);
if (networkError) console.log(`[Network error]: ${networkError}`);
});
apollo.create({
link: errorLink.concat(link),
cache: new InMemoryCache()
});
}
} }

@ -19,7 +19,7 @@ export class TokenInterceptor implements HttpInterceptor {
constructor(private authService: AuthService, private snackBar : SnackBarService, private router: Router) { } constructor(private authService: AuthService, private snackBar : SnackBarService, private router: Router) { }
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> { intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
console.log("i intercepted something"); //console.log("i intercepted something");
if (this.authService.getRequestToken()) { if (this.authService.getRequestToken()) {
request = this.addToken(request, this.authService.getRequestToken()); request = this.addToken(request, this.authService.getRequestToken());
} }

Loading…
Cancel
Save