aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/automated-upgrade/automated-upgrade-ui-components/upgrade-list-item/upgrade-list-item.component.html
blob: 6e6af0cd1cdc829abb21c60fc68ebba26fe80d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="components-to-upgrade-list-item ">
    <div class="component-to-upgrade-data">
        <sdc-checkbox class="component-to-upgrade-checkbox"
                      *ngIf="!componentToUpgrade.isAlreadyUpgrade && !componentToUpgrade.isLock"
                      [checked]="true"
                      [disabled]="disabled"
                      (checkedChange)="onComponentChecked(componentToUpgrade.uniqueId)">
        </sdc-checkbox>
        <svg-icon *ngIf="componentToUpgrade.isAlreadyUpgrade" name="success-circle-o" mode="success"
                  size="medium"></svg-icon>
        <svg-icon *ngIf="!componentToUpgrade.isAlreadyUpgrade && componentToUpgrade.isLock" name="locked" mode="info"
                  size="small"></svg-icon>
        <div class="component-to-upgrade-icon small sprite-services-icons {{componentToUpgrade.icon}}"></div>
        <span class="component-to-upgrade-name">{{componentToUpgrade.name}} ({{componentToUpgrade.version}})</span>
    </div>

    <upgrade-list-item-inner-content [vspInstances]="componentToUpgrade.vspInstances"></upgrade-list-item-inner-content>

</div>