summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/view-models/workspace/tabs/management-workflow/management-workflow-view-model.ts
blob: b7428e990bf318e48819e3792361449e0191c9f5 (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
    'use strict';
    import {ArtifactType} from "app/utils";
    import {ArtifactGroupModel} from "app/models";
    import {participant} from "app/view-models/workspace/tabs/network-call-flow/network-call-flow-view-model";
    import {IWorkspaceViewModelScope} from "app/view-models/workspace/workspace-view-model";
    import {ComponentGenericResponse} from "../../../../ng2/services/responses/component-generic-response";
    import {ComponentServiceNg2} from "../../../../ng2/services/component-services/component.service";

    export interface IManagementWorkflowViewModelScope extends IWorkspaceViewModelScope {
        vendorModel:VendorModel;
    }

    export class VendorModel {
        artifacts: ArtifactGroupModel;
        serviceID: string;
        readonly: boolean;
        sessionID: string;
        requestID: string;
        diagramType: string;
        participants:Array<participant>;

        constructor(artifacts: ArtifactGroupModel, serviceID:string, readonly:boolean, sessionID:string,
                    requestID:string, diagramType:string, participants:Array<participant>){
            this.artifacts = artifacts;
            this.serviceID = serviceID;
            this.readonly = readonly;
            this.sessionID = sessionID;
            this.requestID = requestID;
            this.diagramType = diagramType;
            this.participants = participants;
        }
    }

    export class ManagementWorkflowViewModel {

        static '$inject' = [
            '$scope',
            'uuid4',
            'ComponentServiceNg2'
        ];

        constructor(private $scope:IManagementWorkflowViewModelScope,
                    private uuid4:any,
                    private ComponentServiceNg2: ComponentServiceNg2) {

            this.initInformationalArtifacts();
            this.$scope.updateSelectedMenuItem();
        }


        private initInformationalArtifacts = ():void => {
            if(!this.$scope.component.artifacts) {
                this.$scope.isLoading = true;
                this.ComponentServiceNg2.getComponentInformationalArtifacts(this.$scope.component).subscribe((response:ComponentGenericResponse) => {
                    this.$scope.component.artifacts = response.artifacts;
                    this.initScope();
                    this.$scope.isLoading = false;
                });
            } else {
                this.initScope();
            }
        }

        private static getParticipants():Array<participant> {
            return [
                {
                    "id": "1",
                    "name": "Customer"},
                {
                    "id": "2",
                    "name": "CCD"
                },
                {
                    "id": "3",
                    "name": "Infrastructure"
                },
                {
                    "id": "4",
                    "name": "MSO"
                },
                {
                    "id": "5",
                    "name": "SDN-C"
                },
                {
                    "id": "6",
                    "name": "A&AI"
                },
                {
                    "id": "7",
                    "name": "APP-C"
                },
                {
                    "id": "8",
                    "name": "Cloud"
                },
                {
                    "id": "9",
                    "name": "DCAE"
                },
                {
                    "id": "10",
                    "name": "ALTS"
                },
                {
                    "id": "11",
                    "name": "VF"
                }
            ]
        }


        private initScope():void {
            this.$scope.vendorModel = new VendorModel(
                this.$scope.component.artifacts.filteredByType(ArtifactType.THIRD_PARTY_RESERVED_TYPES.WORKFLOW),
                this.$scope.component.uniqueId,
                this.$scope.isViewMode(),
                this.$scope.user.userId,
                this.uuid4.generate(),
                ArtifactType.THIRD_PARTY_RESERVED_TYPES.WORKFLOW,
                ManagementWorkflowViewModel.getParticipants()
            );

            this.$scope.thirdParty = true;
            this.$scope.setValidState(true);
        }
    }