I am refactoring a poorly written Angular2 code which has service methods like:
fooServiceName(body): Observable<any> {
let headers = new Headers();
this.loginService.writeAuthToHeaders(headers);
return this.http.put(this.loginService.url() + '/url', body, { headers: headers })
.map(response => response.json());
}
barResource(body): Observable<any> {
let headers = new Headers();
this.loginService.writeAuthToHeaders(headers);
return this.http.post(this.loginService.url() + '/url', body, { headers: headers })
.map(response => response.json());
}
I see that following lines are used repetitively at many places:
let headers = new Headers();
this.loginService.writeAuthToHeaders(headers);
I thought to write a separate method which would call these lines but the issue is that someone new to the project has to remember to call that method, is there any better approach?
Update:
Adding missing method definition:
/** function to write username and password to local storage of browser*/
public writeAuthToHeaders(headers: Headers): void {
headers.append('Accept', 'application/json');
headers.append('Content-Type', 'application/json');
headers.append('Authorization', 'Basic ' + btoa(getUsername() + ':' + this.getPassword()));
}
You could write a complex type if the classes are almost identical, and pass differences to the
constructor
. I wrote the following as an example:Generic.Service.ts
Example usage:
Vegetable.Service.ts
Vegetable.ts
Some.Component.ts