Yoshie Muranaka | 8c80dbd | 2019-08-08 10:58:04 -0500 | [diff] [blame] | 1 | <table class="bmc-table {{$ctrl.size}}"> |
Yoshie Muranaka | b1f6424 | 2019-09-04 11:40:51 -0700 | [diff] [blame^] | 2 | <thead class="bmc-table__head"> |
| 3 | <!-- Header row (non-sortable) --> |
| 4 | <tr ng-if="!$ctrl.sortable"> |
| 5 | <th ng-repeat="headerItem in $ctrl.header" |
Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame] | 6 | class="bmc-table__column-header"> |
Yoshie Muranaka | b1f6424 | 2019-09-04 11:40:51 -0700 | [diff] [blame^] | 7 | {{headerItem.label}} |
| 8 | </th> |
| 9 | </tr> |
| 10 | <!-- Header row (sortable) --> |
| 11 | <tr ng-if="$ctrl.sortable"> |
| 12 | <th ng-repeat="headerItem in $ctrl.header track by $index" |
| 13 | class="bmc-table__column-header"> |
| 14 | <span ng-if="!headerItem.sortable"> |
| 15 | {{headerItem.label}} |
| 16 | </span> |
| 17 | <span ng-if="headerItem.sortable" |
| 18 | ng-click="$ctrl.onClickSort($index)" |
| 19 | class="bmc-table__column-header--sortable"> |
| 20 | {{headerItem.label}} |
| 21 | <!-- Sort icons --> |
| 22 | <button class="sort-icon" |
| 23 | type="button" |
| 24 | aria-label="sort {{headerItem.label}}"> |
| 25 | <icon file="icon-arrow--up.svg" |
| 26 | ng-if="$index === $ctrl.activeSort" |
| 27 | ng-class="{ |
| 28 | 'sort-icon--descending': !$ctrl.sortAscending, |
| 29 | 'sort-icon--ascending' : $ctrl.sortAscending }" |
| 30 | class="sort-icon--active" |
| 31 | aria-hidden="true"></icon> |
| 32 | <span ng-if="$index !== $ctrl.activeSort" |
| 33 | class="sort-icon--inactive" |
| 34 | aria-hidden="true"> |
| 35 | <icon file="icon-arrow--up.svg"></icon> |
| 36 | <icon file="icon-arrow--down.svg"></icon> |
| 37 | </span> |
| 38 | </button> |
| 39 | </span> |
Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame] | 40 | </th> |
| 41 | </tr> |
| 42 | </thead> |
Yoshie Muranaka | b1f6424 | 2019-09-04 11:40:51 -0700 | [diff] [blame^] | 43 | <tbody class="bmc-table__body"> |
Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame] | 44 | <!-- Data rows --> |
Yoshie Muranaka | b1f6424 | 2019-09-04 11:40:51 -0700 | [diff] [blame^] | 45 | <tr ng-if="$ctrl.data.length > 0" |
| 46 | ng-repeat="row in $ctrl.data" |
Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame] | 47 | class="bmc-table__row"> |
| 48 | <!-- Row item --> |
Yoshie Muranaka | 8c80dbd | 2019-08-08 10:58:04 -0500 | [diff] [blame] | 49 | <td ng-repeat="item in row.uiData track by $index" |
Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame] | 50 | class="bmc-table__cell"> |
Yoshie Muranaka | 8c80dbd | 2019-08-08 10:58:04 -0500 | [diff] [blame] | 51 | <ng-bind-html ng-bind-html="item"></ng-bind-html> |
Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame] | 52 | </td> |
| 53 | <!-- Row Actions --> |
Yoshie Muranaka | bb68879 | 2019-08-12 09:31:52 -0500 | [diff] [blame] | 54 | <td ng-if="$ctrl.rowActionsEnabled" |
Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame] | 55 | class="bmc-table__cell bmc-table__row-actions"> |
Yoshie Muranaka | bb68879 | 2019-08-12 09:31:52 -0500 | [diff] [blame] | 56 | <table-actions |
| 57 | actions="row.actions" |
| 58 | emit-action="$ctrl.onEmitTableAction(action, row)"> |
| 59 | </table-actions> |
Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame] | 60 | </td> |
| 61 | </tr> |
| 62 | <!-- Empty table --> |
Yoshie Muranaka | b1f6424 | 2019-09-04 11:40:51 -0700 | [diff] [blame^] | 63 | <tr ng-if="$ctrl.data.length === 0"> |
Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame] | 64 | <td>No data</td> |
| 65 | </tr> |
| 66 | </tbody> |
| 67 | </table> |