aboutsummaryrefslogtreecommitdiffstats
path: root/gui/app/views/taskmodify.html
blob: d12df4ba2cd5ccc37e3ef5cc9ee48d921f29cee7 (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
<div class="content">
    <i class="fa fa-arrow-left fa-1x" aria-hidden="true" style="color: #999;cursor:pointer" ng-click="goBack()">Back</i>
    <h4>Modify </h4>

    <hr/>

    <div>
        <div style="display:inline">Name <input type="text" ng-model="taskDetailData.name" style="width:200px" /></div>

        <button class="btn btn-default" ng-click="runAtask()" style="float:right;margin-right:10px;">Run</button>
    </div>
    <hr/>

    <div bs-tabs>
        <div data-title="Environment" bs-pane>
            <div style="margin-top:10px">
                <div style="display:inline">Choose Environment : {{envName}}</div>
                <button class="btn btn-default" style="display:inline;float:right;margin-right:10px;margin-top: -4px;" ng-click="addEnvToTask()">Confirm</button>
            </div>
            <hr />
            <div dir-paginate="env in environmentList | orderBy:'-id' | itemsPerPage: 10 ">
                <div style="display:flex;flex-direction:row;justify-content:space-between;padding:8px;border-top: 1px solid #e9ecec;" ng-class="{deepColor: $index%2==0}">
                    <div> {{env.name}}</div>
                    <!--<button class="btn btn-default btn-sm" ng-click="gotoDetail('false',env.uuid)">detail</button>-->
                    <span class="glyphicon glyphicon-check" aria-hidden="true" ng-click="constructTestSuit(env.uuid,env.name)" ng-show="selectEnv==env.uuid"></span>
                    <span class="glyphicon glyphicon-unchecked" aria-hidden="true" ng-click="constructTestSuit(env.uuid,env.name)" ng-show="selectEnv!=env.uuid"></span>

                </div>
                <!--<hr style="margin-top:5px;margin-bottom:5px;" />-->
            </div>
            <center>
                <dir-pagination-controls></dir-pagination-controls>
            </center>

        </div>
        <div data-title="Content" bs-pane>
            <div style="margin-top:10px;">
                <button class="btn btn-default" ng-click="changeStatussourceFalse()">Modify Content</button>
                <button class="btn btn-default" ng-click="changeStatussourceTrue()">Modify Source</button>
                <div class="label-type" ng-show="taskDetailData.suite==false"> Test Case</div>
                <div class="label-type" ng-show="taskDetailData.suite==true"> Test Suite</div>
                <button class="btn btn-default" style="float:right" ng-disabled="sourceShow==null" ng-click="confirmToServer(contentInfo,taskDetailData.content)">Confirm</button>
            </div>


            <textarea ng-model="taskDetailData.content" ng-show="sourceShow==false" style="margin-top:5px;" spellcheck="false">


            </textarea>

            <div ng-show="sourceShow==true">
                <div style="display:flex;flex-direction:row">
                    <div style="margin-top:20px;">Source of Content</div>


                    <select ng-model="selectType" ng-change="triggerContent(selectType)" data-ng-options="blisterPackTemplate as blisterPackTemplate.name for blisterPackTemplate in blisterPackTemplates">
                  <option value="">Choose...</option>
            </select>

                </div>

                <div style="margin-top:10px" ng-show="selectCase!=null ">
                    <div style="display:inline">Choose Source : {{selectCase}}</div>
                    <!--<button class="btn btn-default" style="display:inline;float:right;margin-right:10px;margin-top: -4px;" ng-click="confirmAddCaseOrSuite(contentInfo)">Confirm</button>-->
                    <button class="btn btn-default" style="display:inline;float:right;margin-right:10px;margin-top: -4px;" ng-click="getTestDeatil()">Edit</button>
                </div>
                <hr/>

                <div ng-show="displayTable==true">
                    <div ng-show="testcaselist.testcases.length!=0 && selectType.name=='Test Case'">
                        <div dir-paginate="test in testcaselist.testcases | itemsPerPage: 10" pagination-id="testcase">
                            <div style="display:flex;flex-direction:row;justify-content:space-between;padding:8px;border-top: 1px solid #e9ecec;" ng-class="{deepColor: $index%2==0}">
                                <div> {{test.Name}}</div>
                                <div style="font-size:10px;">{{test.Description}}</div>
                                <span class="glyphicon glyphicon-check" aria-hidden="true" ng-click="constructTestCase(test.Name)" ng-show="selectCase==test.Name"></span>
                                <span class="glyphicon glyphicon-unchecked" aria-hidden="true" ng-click="constructTestCase(test.Name)" ng-show="selectCase!=test.Name"></span>

                            </div>
                            <!--<hr style="margin-top:5px;margin-bottom:5px;" />-->
                        </div>
                        <center>
                            <dir-pagination-controls pagination-id="testcase"></dir-pagination-controls>
                        </center>
                    </div>

                    <div ng-show="testsuitlist.length!=0 && selectType.name=='Test Suite'">
                        <div dir-paginate="suite in testsuitlist | itemsPerPage: 10" pagination-id="testsuite">
                            <div style="display:flex;flex-direction:row;justify-content:space-between;padding:8px;border-top: 1px solid #e9ecec;" ng-class="{deepColor: $index%2==0}">
                                <div> {{suite}}</div>

                                <span class="glyphicon glyphicon-check" aria-hidden="true" ng-click="constructTestCase(suite)" ng-show="selectCase==suite"></span>
                                <span class="glyphicon glyphicon-unchecked" aria-hidden="true" ng-click="constructTestCase(suite)" ng-show="selectCase!=suite"></span>

                            </div>
                            <!--<hr style="margin-top:5px;margin-bottom:5px;" />-->
                        </div>
                        <center>
                            <dir-pagination-controls pagination-id="testsuite"></dir-pagination-controls>
                        </center>
                    </div>
                </div>

                <div ng-show="displayTable==false">
                    <textarea ng-model="contentInfo" spellcheck="false">
            </textarea>


                </div>
            </div>




        </div>
    </div>


</div>
<toaster-container></toaster-container>


<style>
    input {
        border-radius: 10px;
        border: 1px solid #eeeeee;
        width: 100%;
        padding: 5px;
    }

    .deepColor {
        background-color: #f9f9f9;
    }

    select {
        height: 30px;
        border-radius: 5px;
        border: 1px solid #e8e8e8;
        width: 135px;
        margin-top: 20px;
        margin-left: 20px;
    }

    textarea {
        width: 100%;
        height: 350px;
        border-radius: 5px;
        border: 1px solid #e8e8e8;
    }

    .label-type {
        display: inline;
        background-color: #2ecc71;
        color: #fff;
        border-radius: 5px;
        padding: 3px;
        font-size: 10px;
    }

    .content {
        height: auto;
    }
</style>