feature done

This commit is contained in:
Drew Ansbacher
2021-09-16 10:08:37 -06:00
committed by Drew Ansbacher
parent 288c385037
commit 04e01c683e
4 changed files with 60 additions and 10 deletions

View File

@@ -165,11 +165,29 @@
<ion-menu-button></ion-menu-button>
</section>
</ion-content>
<!-- <ion-footer *ngIf="patch.data && patch.data['server-info'] && patch.data['server-info']['update-status']">
<ion-toolbar>
<ion-title>{{ patch.data['server-info']['update-status'] }}</ion-title>
<ion-footer
[ngStyle]="{
'max-height': osUpdateProgress ? '100px' : '0px',
'overflow': 'hidden',
'transition-property': 'max-height',
'transition-duration': '1s',
'transition-delay': '.05s'
}"
>
<ion-toolbar style="border-top: 1px solid var(--ion-color-dark);" color="light">
<ion-list>
<ion-list-header>
<ion-label>Install Progress</ion-label>
</ion-list-header>
<div style="padding: 0 15px;">
<ion-progress-bar
color="secondary"
[value]="osUpdateProgress && osUpdateProgress.downloaded / osUpdateProgress.size"
></ion-progress-bar>
</div>
</ion-list>
</ion-toolbar>
</ion-footer> -->
</ion-footer>
</ion-app>