summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE-common/client/app/views/catalog/catalog.tpl.html
blob: 3ba378546d67ab6637c02feb1a20cceb68bf66b4 (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
<!--
  ============LICENSE_START==========================================
  ONAP Portal
  ===================================================================
  Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
  ===================================================================
 
  Unless otherwise specified, all software contained herein is licensed
  under the Apache License, Version 2.0 (the "License");
  you may not use this software except in compliance with the License.
  You may obtain a copy of the License at
 
              http://www.apache.org/licenses/LICENSE-2.0
 
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
 
  Unless otherwise specified, all documentation contained herein is licensed
  under the Creative Commons License, Attribution 4.0 Intl. (the "License");
  you may not use this documentation except in compliance with the License.
  You may obtain a copy of the License at
 
              https://creativecommons.org/licenses/by/4.0/
 
  Unless required by applicable law or agreed to in writing, documentation
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
 
  ============LICENSE_END============================================
 
  
  -->
<div class="w-ecomp-app-catalog">
	<div class="app-catalog-container" id="page-content">
	        <div id="title" class="w-ecomp-main-view-title">
			<h1 class="heading-page">Application Catalog</h1>
		</div>
		<div class="app-catalog-list">
			<div class="simulateCatGridHeader"> 
				<span class="simulateCatGridHeaderDetails"> Click the check 
					boxes below to choose which applications are shown on the <a 
					href="applicationsHome">home page</a>. 
				</span> <br> <br> 
				<div class="catalog-radio-div"> 
					<label for="radio-button-all" class="radio"> 
						<span>Filter: </span> 
					</label> 
				</div> 
				<div class="catalog-radio-div"> 
					<label for="radio-button-all" class="radio"> 
		                <input type="radio" ng-model="radioValue" id="radio-button-all" name="All" value="All" > 
		                <i class="skin"></i> 
		                <span>All</span> 
		            </label> 
				</div> 
				<div class="catalog-radio-div"> 
		            <label for="radio-button-accessible" class="radio"> 
		                <input type="radio" ng-model="radioValue" id="radio-button-accessible" name="Accessible" value="Accessible" > 
		                <i class="skin"></i> 
		                <span>Accessible</span> 
		            </label> 
	            </div> 
	            <div class="catalog-radio-div"> 
		            <label for="radio-button-homepage" class="radio"> 
		                <input type="radio" ng-model="radioValue" id="radio-button-homepage" name="Selected" value="Selected"> 
		                <i class="skin"></i> 
		                <span>On Home Page</span> 
		            </label> 
				</div> 
			</div>
			<div class="appCatalogue-boarder" >
				<div gridster="catalog.gridsterOpts">	
					<ul>	
						<li gridster-item="item" ng-repeat="item in appCatalog"
							ng-if="(item.select && radioValue=='Selected') || (item.access && radioValue=='Accessible') || (radioValue == 'All')">
							<div class="gridster-box" ng-attr-style="{{!item.access?' color:lightgray !important':''}}">
								<div class="gridster-box-header"
									ng-show="(item.select && radioValue=='Selected') || (item.access && radioValue=='Accessible') || (radioValue == 'All')">
									<i id="gridster-{{item.headerText.split(' ').join('-')}}-icon" class="icon-content-gridguide"></i>
									<h3 style="cursor: context-menu">{{item.headerText |
										elipsis: 13}}</h3>
								            <div class="form-row" ng-show="item.access || isAdminPortalAdmin">
								                <label class="checkbox">
								                    <input id="gridster-{{item.headerText.split(' ').join('-')}}-icon-checkbox" type="checkbox" ng-model="item.select" ng-change="catalog.storeSelection(item)">
								                    <i id="gridster-{{item.headerText.split(' ').join('-')}}-icon-checkbox" class="skin"></i> 
								                </label> 
								                <i ng-show="item.pending" class="icon-tickets-contested"></i>							                      								                
									</div>
								</div>
								<div class="gridster-box-content"
									ng-style="{'cursor':'pointer',
										'background-image': 'url('+(item.imageLink)+')',
										'order': item.order, 
										'background-color':'white',
										'background-repeat': 'no-repeat',
										'background-size': '168px 118px'}"
									ng-click="catalog.openAddRoleModal(item)"
									ng-hide="users.isLoadingTable && !users.getAppCatalogIsDone">
								</div>
							</div>
						</li>
					</ul>
				</div>
			</div>
			
			<br>

			<div class="access-request-txt">
				To request access to an application, please visit the <a
					id="get-access-page-link" ng-href="getAccess">Get Access</a> page.
			</div>

			<br>
		</div>

	</div>
</div>