Set default value for first time user 20/104920/1
authorjz385p <jegadeesh.babu@att.com>
Thu, 2 Apr 2020 10:03:12 +0000 (15:33 +0530)
committerSunder Tattavarada <statta@research.att.com>
Thu, 2 Apr 2020 17:55:25 +0000 (17:55 +0000)
Default user for first time user

Issue-ID: PORTAL-862
Change-Id: I671ffb2574d4fc05602f218aa625248d35e666f4
Signed-off-by: jz385p <jegadeesh.babu@att.com>
portal-FE-common/src/app/pages/dashboard-application-catalog/dashboard-application-catalog.component.ts

index baaa4c4..ce37339 100644 (file)
@@ -121,10 +121,15 @@ export class DashboardApplicationCatalogComponent implements OnInit {
 
         }
 
-        this.selectedSortType = this.sortOptions[resJson.index];
-        //console.log(this.selectedSortType);
-        this.getAppCatalogService(data);
+        
       }
+         else {
+                 resJson.index = 0;
+         }
+         this.selectedSortType = this.sortOptions[resJson.index];
+        //console.log(this.selectedSortType);
+      this.getAppCatalogService(data);
+                 
     }, error => {
       console.log('getUserAppsSortTypePreference Error Object' + error.message);
     });
@@ -152,6 +157,12 @@ export class DashboardApplicationCatalogComponent implements OnInit {
 
   getAppCatalogService(userAppSortTypePref: string) {
     //console.log("getAppCatalogServices called");
+       if(!userAppSortTypePref)
+    {
+      userAppSortTypePref = "N";
+         this.selectedSortType = this.sortOptions[0];
+      //console.log("userAppSortTypePref"+userAppSortTypePref);
+    }
     this.applicationCatalogService.getAppsOrderBySortPref(userAppSortTypePref).subscribe(data => {
       //console.log("Response data" + data);
       this.appCatalogData = data;