1
- import { Component , OnInit , TemplateRef , ViewChild } from '@angular/core' ;
1
+ import { Component , OnInit , TemplateRef , ViewChild , inject } from '@angular/core' ;
2
2
import { IonicSlides } from '@ionic/angular' ;
3
3
import { register } from 'swiper/element/bundle' ;
4
4
import { HttpClient } from '@angular/common/http' ;
5
+ import { LoaderService } from '../services/loader/loader.service' ;
6
+ import { ApiBaseService } from '../services/base-api/api-base.service' ;
7
+ import urlConfig from 'src/app/config/url.config.json' ;
8
+ import { ToastService } from '../services/toast/toast.service' ;
9
+ import { Router } from '@angular/router' ;
10
+ import { finalize } from 'rxjs' ;
5
11
register ( ) ;
6
12
@Component ( {
7
13
selector : 'app-home' ,
@@ -10,23 +16,67 @@ register();
10
16
} )
11
17
export class HomePage implements OnInit {
12
18
swiperModules = [ IonicSlides ] ;
13
- jsonData :any ;
19
+ jsonData : any ;
20
+ baseApiService : any ;
21
+ toastService : any ;
22
+ loader : LoaderService ;
23
+ listResData : any = [ ] ;
14
24
typeTemplateMapping : { [ key : string ] : TemplateRef < any > } = { } ;
15
25
@ViewChild ( 'bannerTemplate' ) bannerTemplate ! : TemplateRef < any > ;
16
- @ViewChild ( 'productTemplate ' ) productTemplate ! : TemplateRef < any > ;
26
+ @ViewChild ( 'solutionTemplate ' ) solutionTemplate ! : TemplateRef < any > ;
17
27
@ViewChild ( 'recommendationTemplate' ) recommendationTemplate ! : TemplateRef < any > ;
18
28
19
- constructor ( private http : HttpClient ) {
29
+ constructor ( private http : HttpClient , private router : Router ) {
30
+ this . baseApiService = inject ( ApiBaseService ) ;
31
+ this . loader = inject ( LoaderService )
32
+ this . toastService = inject ( ToastService )
20
33
}
21
34
22
35
ngOnInit ( ) {
23
- this . http . get < any > ( 'assets/listingData.json' ) . subscribe ( data => {
24
- this . jsonData = data ;
25
- this . typeTemplateMapping = {
26
- "banner" : this . bannerTemplate ,
27
- "solutionList" : this . productTemplate ,
28
- "Recomendation" : this . recommendationTemplate
29
- } ;
30
- } ) ;
36
+ this . getHomeListing ( ) ;
37
+ }
38
+
39
+ getHomeListing ( ) {
40
+ this . loader . showLoading ( "Please wait while loading..." ) ;
41
+ this . baseApiService
42
+ . post (
43
+ urlConfig [ 'homeListing' ] . listingUrl )
44
+ . pipe (
45
+ finalize ( ( ) => {
46
+ this . loader . dismissLoading ( ) ;
47
+ } )
48
+ )
49
+ . subscribe ( ( res : any ) => {
50
+ if ( res ?. message == 'Forms version fetched successfully' ) {
51
+ const formData = res ?. result ;
52
+ const homeListData = formData . find ( ( item : any ) => item . type === "home" ) ;
53
+
54
+ this . baseApiService
55
+ . post (
56
+ urlConfig [ 'homeListing' ] . listingUrl + `/${ homeListData ?. _id } ` )
57
+ . subscribe ( ( res : any ) => {
58
+ if ( res ?. result ) {
59
+ this . listResData = res ?. result ?. data ;
60
+ }
61
+ this . typeTemplateMapping = {
62
+ "bannerList" : this . bannerTemplate ,
63
+ "solutionList" : this . solutionTemplate ,
64
+ "recomendationList" : this . recommendationTemplate
65
+ } ;
66
+ } ,
67
+ ( err : any ) => {
68
+ this . toastService . presentToast ( err ?. error ?. message ) ;
69
+ }
70
+ ) ;
71
+ }
72
+ } ,
73
+ ( err : any ) => {
74
+ this . toastService . presentToast ( err ?. error ?. message ) ;
75
+ }
76
+ ) ;
77
+ }
78
+
79
+ navigateTo ( data : any ) {
80
+ this . router . navigate ( [ data ?. redirectionUrl ] , { state : data } ) ;
31
81
}
32
82
}
0 commit comments