Last change
on this file was 6fe77af, checked in by Ema <ema_spirova@…>, 3 years ago |
add location feature
|
-
Property mode
set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | import { Component, OnInit } from '@angular/core';
|
---|
2 | import { ActivatedRoute } from '@angular/router';
|
---|
3 | import { Images } from 'src/app/_models/images';
|
---|
4 | import { Location } from 'src/app/_models/location';
|
---|
5 | import { ImagesService } from 'src/app/_services/images.service';
|
---|
6 | import { LocationService } from 'src/app/_services/location.service';
|
---|
7 |
|
---|
8 | @Component({
|
---|
9 | selector: 'app-location-details',
|
---|
10 | templateUrl: './location-details.component.html',
|
---|
11 | styleUrls: ['./location-details.component.css']
|
---|
12 | })
|
---|
13 | export class LocationDetailsComponent implements OnInit {
|
---|
14 |
|
---|
15 | locationId: number;
|
---|
16 | locationDetails: Location;
|
---|
17 | images: Images[];
|
---|
18 |
|
---|
19 | constructor(private route: ActivatedRoute, private locationService: LocationService,
|
---|
20 | private imagesService: ImagesService) {
|
---|
21 | this.locationId = 1;
|
---|
22 | this.locationDetails = new Location();
|
---|
23 | this.images = [];
|
---|
24 | }
|
---|
25 |
|
---|
26 | responsiveOptions:any[] = [
|
---|
27 | {
|
---|
28 | breakpoint: '1024px',
|
---|
29 | numVisible: 5
|
---|
30 | },
|
---|
31 | {
|
---|
32 | breakpoint: '768px',
|
---|
33 | numVisible: 3
|
---|
34 | },
|
---|
35 | {
|
---|
36 | breakpoint: '560px',
|
---|
37 | numVisible: 1
|
---|
38 | }
|
---|
39 | ];
|
---|
40 | ngOnInit(): void {
|
---|
41 | this.route.queryParams
|
---|
42 | .subscribe(params => {
|
---|
43 | this.locationId = params.id;
|
---|
44 | });
|
---|
45 |
|
---|
46 | this.locationService.getLocation(this.locationId).subscribe(
|
---|
47 | data => {
|
---|
48 | this.locationDetails = data;
|
---|
49 | }
|
---|
50 | );
|
---|
51 |
|
---|
52 | this.imagesService.getAllImagesForLocation(this.locationId).subscribe(
|
---|
53 | image => {
|
---|
54 | this.images = image;
|
---|
55 | }
|
---|
56 | );
|
---|
57 | }
|
---|
58 |
|
---|
59 |
|
---|
60 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.