]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/share/t_autogrid.tt2
941aa630862a16ae21b53ead2ad6ca04d0bd68ee
[Evergreen.git] / Open-ILS / src / templates / staff / share / t_autogrid.tt2
1
2 <!-- 
3   Actions row.
4   This sits above the grid and contains the column picker, etc.
5 -->
6
7 <div class="eg-grid-row eg-grid-action-row">
8
9   <div class="eg-grid-primary-label">{{mainLabel}}</div>
10
11   <div class="btn-group" style="margin-top: 4px"
12     is-open="gridMenuIsOpen" ng-if="menuLabel && showMenu" uib-dropdown>
13     <button type="button" class="btn btn-default eg-grid-menu-item" uib-dropdown-toggle>
14       {{menuLabel}}<span class="caret"></span>
15     </button>
16     <ul class="scrollable-menu" uib-dropdown-menu>
17       <li ng-repeat="item in menuItems | filter : { standalone : 'false' }" ng-if="!item.checkbox && !item.hidden()" ng-class="{divider: item.divider}">
18         <a ng-if="!item.divider" href a-disabled="item.disabled()"
19           ng-click="item.handler()">{{item.label}}</a>
20       </li>
21     </ul>
22     <button ng-if="!item.checkbox && !item.hidden()"
23       class="btn btn-default eg-grid-menu-item"
24       ng-disabled="item.disabled()"
25       ng-repeat="item in menuItems | filter : { standalone : 'true' }"
26       ng-click="item.handler()">{{item.label}}</button>
27   </div>
28
29   <!-- if no menu label is present, present menu-items as a 
30        horizontal row of buttons -->
31   <div class="btn-group" ng-if="!menuLabel && showMenu">
32     <button ng-if="!item.checkbox && !item.hidden()"
33       class="btn btn-default eg-grid-menu-item"
34       ng-repeat="item in menuItems"
35       ng-disabled="item.disabled()"
36       ng-click="item.handler(item, item.handlerData)">
37         {{item.label}}
38     </button>
39   </div>
40
41   <!-- Always show checkbox items as a
42        horizontal row of buttons -->
43   <div class="btn-group" ng-if="showMenu">
44     <div ng-if="item.checkbox"
45       class="btn btn-default eg-grid-menu-item"
46       ng-repeat="item in menuItems">
47         <label for="{{item.checkbox}}">{{item.label}}</label>
48         <input style="padding-left: 5px"
49                type="checkbox"
50                id="{{item.checkbox}}"
51                ng-disabled="item.disabled()"
52                ng-model="item.checked"
53                ng-checked="item.checked"
54                ng-change="item.handler(item)"/>
55     </div>
56   </div>
57
58   <!-- putting a flex div here forces the remaining content to float right -->
59   <div class="flex-cell"></div>
60
61   <!-- column picker, pager, etc. -->
62   <div class="btn-group column-picker" ng-show="showPagination || showActions || showPicker">
63
64     <!-- first page -->
65     <button type="button" class="btn btn-default" 
66       ng-show="showPagination"
67       ng-class="{disabled : onFirstPage()}" 
68       ng-click="offset(0);collect()"
69       title="[% l('Start') %]">
70         <span class="glyphicon glyphicon-fast-backward"></span>
71     </button>
72
73     <!-- previous page -->
74     <button type="button" class="btn btn-default" 
75       ng-show="showPagination"
76       ng-class="{disabled : onFirstPage()}"
77       ng-click="decrementPage()"
78       title="[% l('Previous Page') %]">
79         <span class="glyphicon glyphicon-backward"></span>
80     </button>
81
82     <!-- next page -->
83     <!-- todo: paging needs a total count value to be fully functional -->
84     <button type="button" class="btn btn-default" 
85       ng-show="showPagination"
86       ng-class="{disabled : !hasNextPage()}"
87       ng-click="incrementPage()"
88       title="[% l('Next Page') %]">
89         <span class="glyphicon glyphicon-forward"></span>
90     </button>
91
92     <!-- actions drop-down menu -->
93     <div class="btn-group" ng-show="showActions" ng-if="actionGroups.length > 1 || actionGroups[0].actions.length" uib-dropdown>                                                  
94       <button type="button" class="btn btn-default" uib-dropdown-toggle
95         ng-disabled="!hasSelected()">
96         [% l('Actions') %] <span class="caret"></span>                       
97       </button>                                                              
98       <ul class="pull-right grid-action-dropdown scrollable-menu" uib-dropdown-menu>
99         <li ng-repeat-start="group in actionGroups">
100           <span style="padding-left: 1em;" ng-if="group.label"><strong><u>{{group.label}}</u></strong></span>
101         </li>
102         <li ng-repeat="action in group.actions" ng-class="{divider: action.divider, disabled: actionDisable(action)}" ng-hide="actionHide(action)">
103           <a ng-if="!action.divider" href
104             ng-click="!actionDisable(action) && actionLauncher(action)">{{action.label}}</a>
105         </li>
106         <span ng-repeat-end/>
107       </ul>
108     </div>
109
110     <div class="btn-group" uib-dropdown is-open="gridRowCountIsOpen" ng-show="showPagination">
111       <button type="button" title="[% l('Select Row Count') %]"
112         class="btn btn-default" uib-dropdown-toggle>
113         [% l('Rows [_1]', '{{limit()}}') %]
114         <span class="caret"></span>
115       </button>
116       <ul uib-dropdown-menu>
117         <li ng-repeat="t in [5,10,25,50,100]">
118           <a href ng-click='offset(0);limit(t);collect()'>
119             {{t}}
120           </a>
121         </li>
122         <li ng-if="allowAll" >
123           <a href ng-click='offset(0);limit(10000);collect()'>[% l('All') %]</a>
124         </li>
125       </ul>
126     </div>
127
128     <div class="btn-group" uib-dropdown is-open="gridPageSelectIsOpen" ng-show="showPagination">
129       <button type="button" title="[% l('Select Page') %]"
130         class="btn btn-default" uib-dropdown-toggle>
131         [% l('Page [_1]', '{{page()}}') %]
132         <span class="caret"></span>
133       </button>
134       <ul uib-dropdown-menu>
135         <li>
136           <div class="input-group">
137             <input type="text" class="form-control"
138               ng-model="pageFromUI"
139               ng-click="$event.stopPropagation()"/>
140             <span class="input-group-btn">
141               <button class="btn btn-default" type="button"
142                 ng-click="goToPage(pageFromUI);pageFromUI='';">
143                 [% l('Go To...') %]
144               </button>
145             </span>
146           </div>
147         </li>
148         <li role="presentation" class="divider"></li>
149         <li ng-repeat="t in [1,2,3,4,5,10,25,50,100]">
150           <a href ng-click='goToPage(t);gridPageSelectIsOpen=false;'>{{t}}</a>
151         </li>
152       </ul>
153     </div>
154
155     <div class="btn-group" uib-dropdown is-open="gridColumnPickerIsOpen" ng-show="showPicker">
156       <button type="button" 
157         class="btn btn-default" uib-dropdown-toggle>
158         <span class="caret"></span>
159       </button>
160       <ul class="pull-right eg-grid-column-picker" uib-dropdown-menu>
161         <li>
162           <a href ng-click="showColumnDialog()">
163             <span class="glyphicon glyphicon-wrench"></span>
164             [% l('Manage Columns') %]
165           </a>
166         </li>
167         <li><a href ng-click="toggleConfDisplay()">
168           <span class="glyphicon glyphicon-resize-horizontal"></span>
169           [% l('Manage Column Widths') %]
170         </a></li>
171         <li><a href ng-click="saveConfig()">
172           <span class="glyphicon glyphicon-floppy-save"></span>
173           [% l('Save Columns') %]
174         </a></li>
175 <!--
176         <li><a href ng-click="showAllColumns()">
177           <span class="glyphicon glyphicon-resize-full"></span>
178           [% l('Show All Columns') %]
179         </a></li>
180         <li><a href ng-click="hideAllColumns()">
181           <span class="glyphicon glyphicon-resize-small"></span>
182           [% l('Hide All Columns') %]
183         </a></li>
184 -->
185         <li><a href ng-click="resetColumns()">
186           <span class="glyphicon glyphicon-refresh"></span>
187           [% l('Reset Columns') %]
188         </a></li>
189         <li><a ng-click="generateCSVExportURL($event)" 
190           download="{{csvExportFileName}}.csv" ng-href="{{csvExportURL}}">
191           <span class="glyphicon glyphicon-download"></span>
192           [% l('Download Full CSV') %]
193         </a></li>
194         <li><a href ng-click="printHTML()">
195           <span class="glyphicon glyphicon-print"></span>
196           [% l('Print Full Grid') %]
197         </a></li>
198         <li role="presentation" class="divider"></li>
199         <li ng-repeat="col in columns">
200           <a href title="{{col.idlclass}}" ng-click="toggleColumnVisibility(col)">
201               <span ng-if="col.visible" 
202                 class="label label-success">&#x2713;</span>
203               <span ng-if="!col.visible" 
204                 class="label label-warning">&#x2717;</span>
205               <span>{{col.label}}</span>
206           </a>
207         </li>
208       </ul>
209     </div>
210   </div>
211 </div>
212
213 <!-- Grid -->
214 <div class="eg-grid" ng-class="{'eg-grid-as-conf' : showGridConf}">
215
216   <!-- import our eg-grid-field defs -->
217   <div ng-transclude></div>
218
219   <div class="eg-grid-row eg-grid-header-row">
220     <div class="eg-grid-cell eg-grid-cell-stock" ng-show="showIndex">
221       <div title="[% l('Row Number Column') %]">[% l('#') %]</div>
222     </div>
223     <div class="eg-grid-cell eg-grid-cell-stock" ng-show="canMultiSelect">
224       <div>
225         <input title="[% l('Row Selector Column') %]"
226           focus-me="gridControls.focusRowSelector"
227           type='checkbox' ng-model="selectAll"/> 
228       </div>
229     </div>
230     <div class="eg-grid-cell"
231         eg-grid-column-drag-dest
232         ng-class="{'eg-grid-column-last-mod' : lastModColumn==col.name}"
233         column="{{col.name}}"
234         eg-right-click="onContextMenu($event)"
235         ng-repeat="col in columns"
236         style="flex:{{col.flex}}"
237         ng-show="col.visible">
238
239         <div style="display:flex">
240           <div style="flex:1" class="eg-grid-column-move-handle">
241             <div ng-if="col.sortable">
242               <a column="{{col.name}}" href
243                 eg-grid-column-drag-source
244                 ng-click="quickSort(col.name)">{{col.label}}</a>
245             </div>
246             <div ng-if="!col.sortable">
247               <div column="{{col.name}}" eg-grid-column-drag-source>{{col.label}}</div>
248             </div>
249           </div>
250           <div eg-grid-column-drag-source 
251             drag-type="resize" column="{{col.name}}" 
252             class="eg-grid-column-resize-handle">&nbsp;</div>
253         </div>
254     </div>
255   </div>
256
257   <!-- Inline grid configuration row -->
258   <div class="eg-grid-row eg-grid-conf-row" ng-show="showGridConf">
259     <div class="eg-grid-cell eg-grid-cell-conf-header">
260       <div class="eg-grid-conf-cell-entry">[% l('Expand') %]</div>
261       <div class="eg-grid-conf-cell-entry">[% l('Shrink') %]</div>
262     </div>
263     <div class="eg-grid-cell"
264       ng-repeat="col in columns"
265       style="flex:{{col.flex}}"
266       ng-show="col.visible">
267       <div class="eg-grid-conf-cell-entry">
268         <a href="" title="[% l('Make column wider') %]"
269           ng-click="modifyColumnFlex(col,1)">
270           <span class="glyphicon glyphicon-resize-full"></span>
271         </a>
272       </div>
273       <div class="eg-grid-conf-cell-entry">
274         <a href="" title="[% l('Make column narrower') %]"
275           ng-click="modifyColumnFlex(col,-1)">
276           <span class="glyphicon glyphicon-resize-small"></span>
277         </a>
278       </div>
279     </div>
280   </div>
281
282   <div class="eg-grid-content-body">
283     <div ng-show="items.length == 0" 
284       class="alert alert-info">[% l('No Items To Display') %]</div>
285
286     <div class="eg-grid-row" 
287         id="eg-grid-row-{{$index + 1}}"
288         ng-repeat="item in items"
289         ng-show="items.length > 0"
290         ng-class="{'eg-grid-row-selected' : selected[indexValue(item)]}">
291       <div class="eg-grid-cell eg-grid-cell-stock" ng-show="showIndex"
292         ng-click="handleRowClick($event, item)" title="[% l('Row Index') %]">
293         <a href ng-show="gridControls.activateItem" 
294           ng-click="gridControls.activateItem(item)" style="font-weight:bold">
295           {{$index + offset() + 1}}
296         </a>
297         <div ng-hide="gridControls.activateItem">{{$index + offset() + 1}}</div>
298       </div>
299       <div class="eg-grid-cell eg-grid-cell-stock" ng-show="canMultiSelect">
300         <!-- ng-click=handleRowClick here has unintended 
301              consequences and is unnecessary, avoid it -->
302         <div>
303           <input type='checkbox' title="[% l('Select Row') %]"
304             ng-change="updateSelected()"
305             ng-model="selected[indexValue(item)]"/>
306         </div>
307       </div>
308       <div class="eg-grid-cell eg-grid-cell-content"
309           ng-click="handleRowClick($event, item)"
310           ng-dblclick="gridControls.activateItem(item)"
311           ng-repeat="col in columns"
312           style="text-align:{{col.align}}; flex:{{col.flex}}"
313           ng-show="col.visible">
314
315           <!-- if the cell comes with its own template,
316                translate that content into HTML and insert it here -->
317           <span ng-if="col.template" style="padding-left:5px; padding-right:10px;"
318             ng-bind-html="translateCellTemplate(col, item)">
319           </span>
320
321           <!-- otherwise, simply display the item value, which may 
322                pass through datatype-specific filtering. -->
323           <span ng-if="!col.template" style="padding-left:5px; padding-right:10px;">
324             {{itemFieldValue(item, col) | egGridValueFilter:col:item}}
325           </span>
326       </div>
327     </div>
328   </div>
329
330
331 </div>
332