summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select/select.component.html
blob: 1533b94395eb457a3c112e1335642487585d1202 (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
<ng-template #popTemplate>
  <form name="form"
        #formDir="ngForm"
        [formGroup]="form"
        novalidate>
    <div>
      <input type="text"
             formControlName="filter"
             i18n-placeholder
             [placeholder]="messages.filter"
             (keyup)="$event.keyCode == 13 ? selectOption() : updateFilter()"
             class="form-control text-center" />
      <ng-container *ngFor="let error of Object.keys(messages.customValidations)">
        <span class="invalid-feedback text-center d-block"
              *ngIf="form.showError('filter', formDir) && filter.hasError(error)">
          {{ messages.customValidations[error] }}
        </span>
      </ng-container>
    </div>
  </form>
  <div *ngFor="let option of filteredOptions"
       class="select-menu-item"
       [ngClass]="{'help-block disabled': (data.length === selectionLimit || !option.enabled) && !option.selected}"
       (click)="triggerSelection(option)">
    <div class="select-menu-item-icon">
      <i [ngClass]="[icons.check]"
         aria-hidden="true"
         *ngIf="option.selected"></i>
      &nbsp;
    </div>
    <div class="select-menu-item-content">
      {{ option.name }}
      <ng-container *ngIf="option.description">
        <br>
        <small class="form-text text-muted">
          {{ option.description }}&nbsp;
        </small>
      </ng-container>
    </div>
  </div>
  <div *ngIf="isCreatable()"
       class="select-menu-item"
       (click)="addCustomOption()">
    <div class="select-menu-item-icon">
      <i [ngClass]="[icons.tag]"
         aria-hidden="true"></i>
      &nbsp;
    </div>
    <div class="select-menu-item-content">
      {{ messages.add }} '{{ filter.value }}'
    </div>
  </div>
  <div class="is-invalid"
       *ngIf="data.length === selectionLimit">
    <span class="form-text text-muted text-center text-warning"
          [ngbTooltip]="messages.selectionLimit.tooltip"
          *ngIf="data.length === selectionLimit">
      {{ messages.selectionLimit.text }}
    </span>
  </div>
</ng-template>

<a class="select-menu-edit float-left"
   [ngClass]="elemClass"
   [ngbPopover]="popTemplate"
   data-testid="select-menu-edit"
   *ngIf="customBadges || options.length > 0">
  <ng-content></ng-content>
</a>

<span class="form-text text-muted float-left"
      *ngIf="data.length === 0 && !(!customBadges && options.length === 0)">
  {{ messages.empty }}
</span>

<span class="form-text text-muted  float-left"
      *ngIf="!customBadges && options.length === 0">
  {{ messages.noOptions }}
</span>