Now all that is needed is to make it ready for strict compiling. Removed eslint-plugin-prettier as it is not recommended and causes errors for both eslint and prettier Bumped to v8.0.0
22 lines
632 B
TypeScript
22 lines
632 B
TypeScript
import { Injectable } from '@angular/core';
|
|
import { ActivatedRouteSnapshot, Resolve } from '@angular/router';
|
|
import { Observable } from 'rxjs/internal/Observable';
|
|
|
|
import { Voucher } from '../core/voucher';
|
|
import { VoucherService } from '../core/voucher.service';
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class IssueResolver implements Resolve<Voucher> {
|
|
constructor(private ser: VoucherService) {}
|
|
|
|
resolve(route: ActivatedRouteSnapshot): Observable<Voucher> {
|
|
const id = route.paramMap.get('id');
|
|
if (id === null) {
|
|
return this.ser.getOfType('Issue');
|
|
}
|
|
return this.ser.get(id, 'Issue');
|
|
}
|
|
}
|