added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / shared / modules / select-strategy-modal / select-strategy-modal.component.ts
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 import { Component, Inject, OnInit } from '@angular/core';\r
18 import {MatDialog, MatDialogRef, MAT_DIALOG_DATA} from '@angular/material';\r
19 import { TestDefinitionService } from '../../services/test-definition.service';\r
20 import { GroupService } from 'app/shared/services/group.service';\r
21 \r
22 @Component({\r
23   selector: 'app-select-strategy-modal',\r
24   templateUrl: './select-strategy-modal.component.pug',\r
25   styleUrls: ['./select-strategy-modal.component.scss']\r
26 })\r
27 export class SelectStrategyModalComponent implements OnInit  {\r
28 \r
29   public data; \r
30   public test_definitions; \r
31   public search;\r
32 \r
33   constructor(\r
34     public dialogRef: MatDialogRef<SelectStrategyModalComponent>,\r
35     private testDefinitionService: TestDefinitionService, \r
36     private _groups: GroupService,\r
37     @Inject(MAT_DIALOG_DATA) public input_data\r
38   ) {\r
39     this.data = {};\r
40    }\r
41   \r
42   onNoClick(): void {\r
43     this.dialogRef.close();\r
44   }\r
45 \r
46   ngOnInit() {\r
47     this.test_definitions = [];\r
48     let groupId = this._groups.getGroup()['_id'];\r
49     \r
50     this.testDefinitionService.find({$limit: -1, groupId: groupId, disabled: { $ne: true }, 'bpmnInstances.isDeployed': true, $populate: ['bpmnInstances.testHeads.testHeadId'] })\r
51       .subscribe(\r
52         (result) => {\r
53             this.test_definitions = result;\r
54         },\r
55         (error) => {\r
56             console.log(error);\r
57       });\r
58 \r
59     \r
60     this.search = {};\r
61     this.search.testName = ""; \r
62     this.input_data.testDefinition = {};\r
63   }\r
64 \r
65 }\r