OWL ITS + 탐지시스템(인터넷 진흥원)
jhjang
2021-10-14 b74776268dd3eb2bc57744928d6f7150ffcd4ec2
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/**
 * Created by wisestone on 2018-11-05.
 */
'use strict';
 
define(['app', 'saveSvgAsPng'],
    function (app, saveSvgAsPng) {
        app.directive('issueTypeWidget', ['$log', '$rootScope', '$resourceProvider', 'SweetAlert', 'Workspace', '$filter', 'Widget',
            function ($log, $rootScope, $resourceProvider, SweetAlert, Workspace, $filter, Widget) {
                return {
                    restrict : 'E',
                    scope : {
                        issueTypeWidget : '=',
                    },
                    replace : true,
                    templateUrl : '../custom_components/widget/issue-type-widget/issue-type-widget.html',
                    controller : function ($scope, $element, $attrs) {
 
                        //  함수 모음
                        $scope.fn = {
                            saveIssueTypeWidget : saveIssueTypeWidget,  //  마지막으로 선택한 프로젝트 정보를 저장한다.
                            findIssueTypeWidget : findIssueTypeWidget,  //  프로젝트 별 이슈 타입에 대한 이슈 현황을 조회한다.
                            downloadImage : downloadImage   //  이미지 다운로드
                        };
 
                        //  변수 모음
                        $scope.vm = {
                            projectId : "",
                            options : {
                                chart : {
                                    type : 'pieChart',
                                    height : 350,
                                    x : function (d) {
                                        return d.name;
                                    },
                                    y : function (d) {
                                        return d.issueCount;
                                    },
                                    showLabels : true,
                                    showTooltipPercent : true,
                                    duration : 500,
                                    labelThreshold : 0.01,
                                    labelSunbeamLayout : false,
                                    legendPosition : "bottom",
                                    legend : {
                                        maxKeyLength : 15
                                    },
                                    valueFormat : function (d) {
                                        return d3.format(',.0f')(d);
                                    }
                                }
                            }
                        };
 
                        //  전체 이슈 처리 현황 정보가 변경될때 감지한다.
                        $scope.$watch("issueTypeWidget", function (newValue) {
                            if ($rootScope.isDefined(newValue)) {
                                $scope.fn.saveIssueTypeWidget(newValue);
                            }
                        });
 
                        //  마지막으로 선택한 프로젝트 정보를 저장한다.
                        function saveIssueTypeWidget(result) {
                            $scope.vm.issueTypeWidget = result;
 
                            if ($scope.vm.issueTypeWidget.projectVos.length > 0) {
                                $scope.vm.issueTypeWidget.projectVos[0].checked = true;
                                //  최초 접근시 선택된 프로젝트 아이디
                                $scope.vm.projectId = $scope.vm.issueTypeWidget.projectVos[0].id;
                            }
                        }
 
                        //  이미지 다운로드
                        function downloadImage() {
                            if ((navigator.userAgent.indexOf('MSIE') > 0 || navigator.userAgent.indexOf('Trident') > 0)) {
                                SweetAlert.warning($filter("translate")("dashboard.notSupportedImageDownload"), $filter("translate")("dashboard.ieNotSupportedImageDownload")); // 이미지 다운로드 미지원, IE 에서는 이미지 다운로드를 지원하지 않습니다.
                                return;
                            }
 
                            //  업무 공간에서 해당 사용자가 활성 상태 인지 확인 후 이미지 다운로드를 실행한다.
                            Workspace.checkUseWorkspace($resourceProvider.getContent({},
                                $resourceProvider.getPageContent(0, 0))).then(function (result) {
 
                                if (result.data.message.status === "success") {
                                    saveSvgAsPng.saveSvgAsPng($($element).find("svg")[0], $filter("translate")("dashboard.issueTypeStandIssues"), {canvg : null, backgroundColor : '#f1f1f1'}); // 상태별 이슈 현황.png
                                }
                                else {
                                    //  웹 소켓 연결이 안되어 있을 경우에는 직접 alert 를 표시한다.
                                    if ($rootScope.getObjectKeys($rootScope.users) < 1) {
                                        SweetAlert.error($filter("translate")("dashboard.excludeWorkspaceParticipation"), result.data.message.message); // 업무 공간 참여 제외
                                    }
                                }
                            });
                        }
 
                        //  프로젝트 별 이슈 타입에 대한 이슈 현황을 조회한다.
                        function findIssueTypeWidget(projectId) {
                            //  검색 조건
                            var content = {
                                projectId : projectId
                            };
 
                            Widget.findByStandIssueType($resourceProvider.getContent(content,
                                $resourceProvider.getPageContent(0, 0))).then(function (result) {
 
                                if (result.data.message.status === "success") {
                                    //  멤버별 진행률 정보를 저장한다.
                                    $scope.fn.saveIssueTypeWidget(result.data.issueTypeWidget);
 
                                    angular.forEach($scope.vm.issueTypeWidget.projectVos, function (projectVo) {
                                        if (projectVo.id === projectId) {
                                            projectVo.checked = true;
                                            //  사용자가 프로젝트를 선택했을 때 프로젝트 아이디 정보를 다시 저장
                                            $scope.vm.projectId = projectVo.id;
                                        }
                                        else {
                                            projectVo.checked = false;
                                        }
                                    });
                                }
                                else {
                                    SweetAlert.error($filter("translate")("dashboard.failedToCheckProgressMember"), result.data.message.message); // 멤버별 진행률 조회 실패
                                }
                            });
                        }
                    },
                    link : function (scope, element, attrs) {
 
                    }
                };
            }])
    });