source: Farmatiko/ClientApp/src/app/korona/korona.component.ts@ 1f4846d

Last change on this file since 1f4846d was 1f4846d, checked in by Mile Jankuloski <mile.jankuloski@…>, 3 years ago

Jwt token auth interceptors, services and guards

  • Property mode set to 100644
File size: 698 bytes
RevLine 
[ee137aa]1import { Component, OnInit } from '@angular/core';
[1f4846d]2import { DataService } from '../shared/services/data.service';
[ee137aa]3import { IPandemic } from '../shared/interfaces';
[ec6ac45]4
5@Component({
6 selector: 'app-korona',
7 templateUrl: './korona.component.html',
8 styleUrls: ['./korona.component.css']
9})
10export class KoronaComponent implements OnInit {
[993189e]11 public korona: IPandemic;
[ee137aa]12
13 constructor(private dataService: DataService) {
[ec6ac45]14
[de18858]15 }
[ec6ac45]16
17 ngOnInit(): void {
[ee137aa]18 this.dataService.getPandemic()
[993189e]19 .subscribe((res: IPandemic) => {
[ee137aa]20 this.korona = res;
[5d02859]21 console.log(this.korona);
[ee137aa]22 },
23 (err: any) => console.log(err),
24 () => console.log('Pandemic data retrieved'));
[ec6ac45]25 }
26
27}
Note: See TracBrowser for help on using the repository browser.