Guest Book

Chore:
  Added New Day Offset and Timezone Offset in settings so that they can be shared consistently and also set in runtime.
This commit is contained in:
2020-09-22 10:53:31 +05:30
parent cabdd505e0
commit b19d8cc030
13 changed files with 223 additions and 75 deletions

View File

@ -9,7 +9,7 @@ const httpOptions = {
headers: new HttpHeaders({'Content-Type': 'application/json'})
};
const url = '/v1/guest-book';
const url = '/api/guest-book';
const serviceName = 'GuestBookService';
@Injectable({providedIn: 'root'})
@ -19,7 +19,7 @@ export class GuestBookService {
}
get(id: string): Observable<GuestBook> {
const getUrl: string = (id === null) ? `${url}/new` : `${url}/${id}`;
const getUrl: string = (id === null) ? url : `${url}/${id}`;
return <Observable<GuestBook>>this.http.get<GuestBook>(getUrl)
.pipe(
catchError(this.log.handleError(serviceName, `get id=${id}`))
@ -28,22 +28,21 @@ export class GuestBookService {
list(date: string): Observable<GuestBookList> {
const options = {params: new HttpParams().set('q', (date === null) ? '' : date)};
const listUrl: string = url;
return <Observable<GuestBookList>>this.http.get<GuestBookList>(listUrl, options)
return <Observable<GuestBookList>>this.http.get<GuestBookList>(`${url}/list`, options)
.pipe(
catchError(this.log.handleError(serviceName, 'list'))
);
}
save(guestBook: GuestBook): Observable<GuestBook> {
return <Observable<GuestBook>>this.http.put<GuestBook>(`${url}/new`, guestBook, httpOptions)
return <Observable<GuestBook>>this.http.post<GuestBook>(url, guestBook, httpOptions)
.pipe(
catchError(this.log.handleError(serviceName, 'save'))
);
}
update(guestBook: GuestBook): Observable<GuestBook> {
return <Observable<GuestBook>>this.http.post<GuestBook>(`${url}/${guestBook.id}`, guestBook, httpOptions)
return <Observable<GuestBook>>this.http.put<GuestBook>(`${url}/${guestBook.id}`, guestBook, httpOptions)
.pipe(
catchError(this.log.handleError(serviceName, 'update'))
);