aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/utils/change-lifecycle-state-handler.ts
blob: dc59e3bb98f23bb4bf325251309f939544142f70 (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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import {ComponentFactory} from "./component-factory";
import {Component, Service,IAppMenu, IAppConfigurtaion} from "../models";
import {IEmailModalModel, IEmailModalModel_Email, IEmailModalModel_Data} from "../view-models/modals/email-modal/email-modal-view-model";
import {AsdcComment} from "../models/comments";
import {ModalsHandler} from "./modals-handler";
import {ServiceServiceNg2} from "../ng2/services/component-services/service.service";

/**
 * Created by obarda on 2/11/2016.
 */

export class ChangeLifecycleStateHandler {

    static '$inject' = [
        'sdcConfig',
        'sdcMenu',
        'ComponentFactory',
        '$filter',
        'ModalsHandler',
        'ServiceServiceNg2'
    ];

    constructor(private sdcConfig:IAppConfigurtaion,
                private sdcMenu:IAppMenu,
                private ComponentFactory:ComponentFactory,
                private $filter:ng.IFilterService,
                private ModalsHandler:ModalsHandler,
                private ServiceServiceNg2:ServiceServiceNg2) {

    }

    private actualChangeLifecycleState = (component:Component, data:any, scope:any, onSuccessCallback?:Function, onErrorCallback?:Function):void => {

        let self = this;

        let getContacts = (component:Component):string => {
            let testers = this.sdcConfig.testers;
            let result:string = testers[component.componentType][component.categories[0].name] ?
                testers[component.componentType][component.categories[0].name] :
                testers[component.componentType]['default'];
            return result;
        };

        let onSuccess = (newComponent:Component):void => {
            //scope.isLoading = false;
            console.info(component.componentType.toLowerCase + ' change state ', newComponent);
            if (onSuccessCallback) {
                onSuccessCallback(self.ComponentFactory.createComponent(newComponent), data.url);
            }
        };

        let onError = (error):void => {
            scope.isLoading = false;
            console.info('Failed to changeLifecycleState to ', data.url);
            if (onErrorCallback) {
                onErrorCallback(error);
            }
        };

        let comment:AsdcComment = new AsdcComment();
        if (data.alertModal) {
            // Show alert dialog if defined in menu.json
            //-------------------------------------------------
            let onOk = (confirmationText):void => {
                comment.userRemarks = confirmationText;
                scope.isLoading = true;
                component.changeLifecycleState(data.url, comment).then(onSuccess, onError);
            };

            let onCancel = ():void => {
                console.info('Cancel pressed');
                scope.isLoading = false;
            };

            let modalTitle = this.sdcMenu.alertMessages[data.alertModal].title;
            let modalMessage = this.sdcMenu.alertMessages[data.alertModal].message.format([component.componentType.toLowerCase()]);
            this.ModalsHandler.openAlertModal(modalTitle, modalMessage).then(onOk, onCancel);
        } else if (data.confirmationModal) {
            // Show confirmation dialog if defined in menu.json
            //-------------------------------------------------
            let onOk = (confirmationText):void => {
                comment.userRemarks = confirmationText;
                scope.isLoading = true;
                component.changeLifecycleState(data.url, comment).then(onSuccess, onError);
            };

            let onCancel = ():void => {
                console.info('Cancel pressed');
                scope.isLoading = false;
            };

            let modalTitle = this.sdcMenu.confirmationMessages[data.confirmationModal].title;
            let modalMessage = this.sdcMenu.confirmationMessages[data.confirmationModal].message.format([component.componentType.toLowerCase()]);
            let modalShowComment = this.sdcMenu.confirmationMessages[data.confirmationModal].showComment;
            this.ModalsHandler.openConfirmationModal(modalTitle, modalMessage, modalShowComment).then(onOk, onCancel);

        } else if (data.emailModal) {
            // Show email dialog if defined in menu.json
            //-------------------------------------------------
            let onOk = (resource):void => {
                if (resource) {
                    onSuccess(resource);
                } else {
                    onError("Error changing life cycle state");
                }
            };

            let onCancel = ():void => {
                scope.isLoading = false;
            };

            let emailModel:IEmailModalModel = <IEmailModalModel>{};
            emailModel.email = <IEmailModalModel_Email>{};
            emailModel.data = <IEmailModalModel_Data>{};
            emailModel.title = this.$filter('translate')("EMAIL_MODAL_TITLE");
            emailModel.email.to = getContacts(component);
            emailModel.email.subject = this.$filter('translate')("EMAIL_MODAL_SUBJECT", "{'entityName': '" + this.$filter('resourceName')(component.name) + "','entityVersion': '" + component.version + "'}");
            emailModel.email.message = '';
            emailModel.data.component = component;
            emailModel.data.stateUrl = data.url;

            this.ModalsHandler.openEmailModal(emailModel).then(onOk, onCancel);

        } else {
            // Submit to server only (no modal is shown).
            scope.isLoading = true;
            component.changeLifecycleState(data.url, comment).then(onSuccess, onError);
        }

    }

    public changeLifecycleState = (component:Component, data:any, scope:any, onSuccessCallback?:Function, onErrorCallback?:Function):void => {

        if (data.conformanceLevelModal) {
            this.validateConformanceLevel(component, data, scope, onSuccessCallback, onErrorCallback);
        } else {
            this.actualChangeLifecycleState(component, data, scope, onSuccessCallback, onErrorCallback);
        }
    }

    private validateConformanceLevel = (component:Component, data:any, scope:any, onSuccessCallback?:Function, onErrorCallback?:Function):void => {
        // Validate conformance level if defined in menu.json
        //-------------------------------------------------
        this.ServiceServiceNg2.validateConformanceLevel(<Service>component).subscribe((res:boolean) => {
            if (res === true) {
                //conformance level is ok - continue
                this.actualChangeLifecycleState(component, data, scope, onSuccessCallback, onErrorCallback);

            } else {
                //show warning modal
                this.ModalsHandler.openConformanceLevelModal()
                    .then(() => {
                        //continue distribute
                        this.actualChangeLifecycleState(component, data, scope, onSuccessCallback, onErrorCallback);

                    }).catch(() => {
                        //reject distribution
                        this.actualChangeLifecycleState(component, data.conformanceLevelModal, scope, onSuccessCallback, onErrorCallback);
                });
            }
        });
    }
}