From 57dbba269d19bc59fad89160200bb2dbcccb9003 Mon Sep 17 00:00:00 2001 From: shentao Date: Fri, 1 Sep 2017 11:57:47 +0800 Subject: Upload Monitor function code Change-Id: I33ad76221b4cb771a298ff240245fc24be664efb Issue-Id: USECASEUI-6 Signed-off-by: shentao --- .../app/fusionapp/scripts/controller/dummy.txt | 0 .../scripts/controller/sample-page-controller.js | 61 ++++++++++++++++++++++ .../controller/sample-page-iframe-controller.js | 4 ++ .../scripts/controller/sampleController.js | 11 ++++ 4 files changed, 76 insertions(+) create mode 100644 usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/dummy.txt create mode 100644 usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-controller.js create mode 100644 usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-iframe-controller.js create mode 100644 usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sampleController.js (limited to 'usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller') diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/dummy.txt b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/dummy.txt new file mode 100644 index 00000000..e69de29b diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-controller.js b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-controller.js new file mode 100644 index 00000000..ad4f777e --- /dev/null +++ b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-controller.js @@ -0,0 +1,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; + }) + }; + +}); \ No newline at end of file diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-iframe-controller.js b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-iframe-controller.js new file mode 100644 index 00000000..8ba4eb54 --- /dev/null +++ b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-iframe-controller.js @@ -0,0 +1,4 @@ +app.controller('samplePageWithIframeController', function($scope, $http,ProfileService,modalService){ + + +}); \ No newline at end of file diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sampleController.js b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sampleController.js new file mode 100644 index 00000000..518880c7 --- /dev/null +++ b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sampleController.js @@ -0,0 +1,11 @@ +app.config(function($routeProvider) { + $routeProvider + .when('/iframe', { + templateUrl: 'app/fusionapp/scripts/view-models/sampleWithIframe.html', + controller : "samplePageWithIframeController" + }) + .otherwise({ + templateUrl: 'app/fusionapp/scripts/view-models/sample.html', + controller : "samplePageController" + }); +}); \ No newline at end of file -- cgit 1.2.3-korg