summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusionapp/scripts/controller/sample-page-controller.js
blob: ad4f777e927eb688d42cf29dc2a363f82ea28207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
app.controller('samplePageController', function($scope, $http,ProfileService,modalService){
	$scope.tableData=[];
	$scope.viewPerPage=20;
	$scope.scrollViewPerPage=2;
	$scope.currentPage=1;
	$scope.totalPage;
	$scope.searchCategory;
	$scope.searchString="";
	$scope.currentPageNum=1;
	ProfileService.getProfilePagination(1,$scope.viewPerPage).then(function(data){
		var j = data;
  		$scope.data = JSON.parse(j.data);
  		$scope.tableData =JSON.parse($scope.data.profileList);
  		$scope.totalPages =JSON.parse($scope.data.totalPage);
		for(x in $scope.tableData){
			if($scope.tableData[x].active_yn=='Y')
				$scope.tableData[x].active_yn=true;
			else
				$scope.tableData[x].active_yn=false;
		}
		//$scope.resetMenu();
	},function(error){
		console.log("failed");
		reloadPageOnce();
	});
	
	$scope.$watch('currentPageNum', function(val) {
		
		ProfileService.getProfilePagination(val,$scope.viewPerPage).then(function(data){
			var j = data;
	  		$scope.data = JSON.parse(j.data);
	  		$scope.tableData =JSON.parse($scope.data.profileList);
	  		$scope.totalPages =JSON.parse($scope.data.totalPage);
			for(x in $scope.tableData){
				if($scope.tableData[x].active_yn=='Y')
					$scope.tableData[x].active_yn=true;
				else
					$scope.tableData[x].active_yn=false;
			}
			//$scope.resetMenu();
		},function(error){
			console.log("failed");
		});
	
    });
	
	$scope.editRow = function(profileId){
        window.location = 'userProfile#/profile/' + profileId;
    }
   
	$scope.toggleProfileActive = function(rowData) {
    	modalService.popupConfirmWinWithCancel("Confirm","You are about to change user's active status. Do you want to continue?",
    			function(){ 
    		        $http.get("profile/toggleProfileActive?profile_id="+rowData.id).success(function(){});
    	},
    	function(){
    		rowData.active=!rowData.active;
    	})
    };

});