Matteo Scandolo | 500e4c4 | 2017-08-08 13:05:24 -0700 | [diff] [blame] | 1 | |
| 2 | <!-- |
| 3 | Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
Matteo Scandolo | 710dc15 | 2017-04-11 13:54:23 -0700 | [diff] [blame] | 17 | <div ng-show="vm.data.length > 0 && vm.loader == false"> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 18 | <div class="row" ng-if="vm.config.filter == 'fulltext'"> |
| 19 | <div class="col-xs-12"> |
| 20 | <input |
| 21 | class="form-control" |
| 22 | placeholder="Type to search.." |
| 23 | type="text" |
| 24 | ng-model="vm.query"/> |
| 25 | </div> |
| 26 | </div> |
Matteo Scandolo | d62ea79 | 2016-12-22 14:02:28 -0800 | [diff] [blame] | 27 | <div class="table-responsive"> |
| 28 | <table ng-class="vm.classes"> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 29 | <thead> |
| 30 | <tr> |
Matteo Scandolo | 5d962a3 | 2017-08-01 18:16:14 -0700 | [diff] [blame] | 31 | <th ng-repeat="col in vm.config.columns"> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 32 | {{col.label}} |
Matteo Scandolo | d62ea79 | 2016-12-22 14:02:28 -0800 | [diff] [blame] | 33 | <div ng-if="vm.config.order"> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 34 | <a href="" ng-click="vm.orderBy = col.prop; vm.reverse = false"> |
Matteo Scandolo | d58d504 | 2016-12-16 16:59:21 -0800 | [diff] [blame] | 35 | <i class="fa fa-chevron-up"></i> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 36 | </a> |
| 37 | <a href="" ng-click="vm.orderBy = col.prop; vm.reverse = true"> |
Matteo Scandolo | d58d504 | 2016-12-16 16:59:21 -0800 | [diff] [blame] | 38 | <i class="fa fa-chevron-down"></i> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 39 | </a> |
Matteo Scandolo | d62ea79 | 2016-12-22 14:02:28 -0800 | [diff] [blame] | 40 | </div> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 41 | </th> |
| 42 | <th ng-if="vm.config.actions">Actions:</th> |
| 43 | </tr> |
| 44 | </thead> |
| 45 | <tbody ng-if="vm.config.filter == 'field'"> |
Matteo Scandolo | ee655a1 | 2016-12-19 15:38:43 -0800 | [diff] [blame] | 46 | <tr> |
Matteo Scandolo | 5d962a3 | 2017-08-01 18:16:14 -0700 | [diff] [blame] | 47 | <td ng-repeat="col in vm.config.columns"> |
Matteo Scandolo | ee655a1 | 2016-12-19 15:38:43 -0800 | [diff] [blame] | 48 | <input |
| 49 | ng-if="col.type !== 'boolean' && col.type !== 'array' && col.type !== 'object' && col.type !== 'custom'" |
| 50 | class="form-control" |
| 51 | placeholder="Type to search by {{col.label}}" |
| 52 | type="text" |
| 53 | ng-model="vm.query[col.prop]"/> |
| 54 | <select |
| 55 | ng-if="col.type === 'boolean'" |
| 56 | class="form-control" |
| 57 | ng-model="vm.query[col.prop]"> |
| 58 | <option value="">-</option> |
| 59 | <option value="true">True</option> |
| 60 | <option value="false">False</option> |
| 61 | </select> |
| 62 | </td> |
| 63 | <td ng-if="vm.config.actions"></td> |
| 64 | </tr> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 65 | </tbody> |
| 66 | <tbody> |
Matteo Scandolo | c8a58c8 | 2017-08-17 17:14:38 -0700 | [diff] [blame] | 67 | <tr ng-class="{active: vm.config.selectedRow == $index}" ng-repeat="item in (vm.config.filteredData = (vm.data | filter:vm.query | orderBy:vm.orderBy:vm.reverse | pagination:vm.currentPage * vm.config.pagination.pageSize | limitTo: (vm.config.pagination.pageSize || vm.data.length))) track by $index"> |
Matteo Scandolo | 5d962a3 | 2017-08-01 18:16:14 -0700 | [diff] [blame] | 68 | <td ng-repeat="col in vm.config.columns" xos-link-wrapper> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 69 | <span ng-if="!col.type || col.type === 'text'">{{item[col.prop]}}</span> |
| 70 | <span ng-if="col.type === 'boolean'"> |
Matteo Scandolo | d58d504 | 2016-12-16 16:59:21 -0800 | [diff] [blame] | 71 | <i class="fa" |
| 72 | ng-class="{'fa-ok': item[col.prop], 'fa-remove': !item[col.prop]}"> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 73 | </i> |
| 74 | </span> |
| 75 | <span ng-if="col.type === 'date'"> |
| 76 | {{item[col.prop] | date:'H:mm MMM d, yyyy'}} |
| 77 | </span> |
| 78 | <span ng-if="col.type === 'array'"> |
| 79 | {{item[col.prop] | arrayToList}} |
| 80 | </span> |
| 81 | <span ng-if="col.type === 'object'"> |
| 82 | <dl class="dl-horizontal"> |
| 83 | <span ng-repeat="(k,v) in item[col.prop]"> |
| 84 | <dt>{{k}}</dt> |
| 85 | <dd>{{v}}</dd> |
| 86 | </span> |
| 87 | </dl> |
| 88 | </span> |
| 89 | <span ng-if="col.type === 'custom'"> |
Matteo Scandolo | 0496423 | 2017-01-07 12:53:46 -0800 | [diff] [blame] | 90 | {{item[col.prop + '-formatted']}} |
| 91 | <i class="ng-hide">{{col.formatter(item)}}</i> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 92 | </span> |
| 93 | <span ng-if="col.type === 'icon'"> |
Matteo Scandolo | d58d504 | 2016-12-16 16:59:21 -0800 | [diff] [blame] | 94 | <i class="fa fa-{{col.formatter(item)}}"> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 95 | </i> |
Matteo Scandolo | 8b2370c | 2017-02-02 17:19:07 -0800 | [diff] [blame] | 96 | </span> |
| 97 | <div class="xos-table-hover" ng-if="col.hover"> |
| 98 | <div class="alert alert-info"> |
| 99 | {{col.hover(item)}} |
| 100 | </div> |
| 101 | </div> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 102 | </td> |
Matteo Scandolo | cc4bce8 | 2017-08-07 13:11:47 -0700 | [diff] [blame] | 103 | <td class="xos-table-actions" ng-if="vm.config.actions"> |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 104 | <a href="" |
| 105 | ng-repeat="action in vm.config.actions" |
| 106 | ng-click="action.cb(item)" |
| 107 | title="{{action.label}}"> |
| 108 | <i |
Matteo Scandolo | d58d504 | 2016-12-16 16:59:21 -0800 | [diff] [blame] | 109 | class="fa fa-{{action.icon}}" |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 110 | style="color: {{action.color}};"></i> |
| 111 | </a> |
| 112 | </td> |
| 113 | </tr> |
| 114 | </tbody> |
| 115 | </table> |
Matteo Scandolo | 8b2370c | 2017-02-02 17:19:07 -0800 | [diff] [blame] | 116 | <xos-pagination |
| 117 | ng-if="vm.config.pagination" |
| 118 | page-size="vm.config.pagination.pageSize" |
| 119 | total-elements="vm.data.length" |
| 120 | change="vm.goToPage"> |
| 121 | </xos-pagination> |
Matteo Scandolo | d62ea79 | 2016-12-22 14:02:28 -0800 | [diff] [blame] | 122 | </div> |
Matteo Scandolo | 710dc15 | 2017-04-11 13:54:23 -0700 | [diff] [blame] | 123 | </div> |
| 124 | <div ng-show="(vm.data.length == 0 || !vm.data) && vm.loader == false"> |
| 125 | <xos-alert config="{type: 'info'}" show="true"> |
| 126 | No data to show. |
| 127 | </xos-alert> |
| 128 | </div> |
| 129 | <div ng-show="vm.loader == true"> |
| 130 | <div class="loader"></div> |
| 131 | </div> |