ecosystem/shared/add-application.component.ts
selector | c8y-add-application |
templateUrl | ./add-application.component.html |
Properties |
Methods |
Inputs |
Accessors |
constructor(ecosystemService: EcosystemService, alertService: AlertService, applicationService: ApplicationService, wizardComponent: WizardComponent)
|
|||||||||||||||
Parameters :
|
canGoBack |
Type : boolean
|
Default value : false
|
createApplicationHandler |
Type : any
|
headerIcon |
Type : string
|
headerText |
Type : string
|
successText |
Type : string
|
uploadApplicationHandler |
Type : any
|
back |
back()
|
Returns :
void
|
cancel |
cancel()
|
Returns :
void
|
done |
done()
|
Returns :
void
|
getHref | ||||||
getHref(app: IApplication)
|
||||||
Parameters :
Returns :
string
|
Async onFile | ||||||
onFile(file: File)
|
||||||
Parameters :
Returns :
any
|
onFileDroppedEvent | ||||
onFileDroppedEvent(event)
|
||||
Parameters :
Returns :
void
|
canOpenInBrowser |
Type : boolean
|
Default value : false
|
createdApp |
Type : IApplication
|
dropAreaComponent |
Decorators :
@ViewChild(DropAreaComponent)
|
errorMessage |
Type : string
|
isAppCreated |
Type : boolean
|
isLoading |
Type : boolean
|
progress |
getprogress()
|
<c8y-wizard-header>
<h1 [c8yIcon]="headerIcon"></h1>
<h4>{{ headerText | translate }}</h4>
</c8y-wizard-header>
<div class="modal-inner-scroll animated fadeIn">
<p class="p-16 text-center text-medium separator-bottom sticky-top bg-component">
{{ 'Upload a *.zip file' | translate }}
</p>
<c8y-form-group
*ngIf="!isAppCreated; else appCreated"
[hasError]="errorMessage"
class="m-t-16 m-l-auto m-r-auto"
style="max-width: 285px"
>
<c8y-drop-area
(dropped)="onFileDroppedEvent($event)"
[accept]="'.zip'"
[loading]="isLoading"
[maxAllowedFiles]="1"
[progress]="progress | async"
class="drop-area"
>
</c8y-drop-area>
<c8y-messages>
<c8y-message *ngIf="errorMessage">
{{ errorMessage | translate }}
</c8y-message>
</c8y-messages>
</c8y-form-group>
<ng-template #appCreated>
<div class="d-flex a-i-center j-c-center" style="min-height: 285px">
<c8y-operation-result
text="{{ successText | translate }}"
[vertical]="true"
[size]="84"
class="lead"
type="success"
>
</c8y-operation-result>
</div>
</ng-template>
</div>
<c8y-wizard-footer>
<button
(click)="back()"
*ngIf="!isAppCreated && canGoBack"
class="btn btn-default"
title="{{ 'Back' | translate }}"
translate
type="button"
>
Back
</button>
<button
(click)="cancel()"
*ngIf="!isAppCreated"
class="btn btn-default"
title="{{ 'Cancel' | translate }}"
translate
type="button"
>
Cancel
</button>
<button
(click)="done()"
*ngIf="isAppCreated"
class="btn btn-default"
title="{{ 'Done' | translate }}"
translate
type="button"
>
Done
</button>
<a
(click)="$event.stopPropagation()"
*ngIf="isAppCreated && canOpenInBrowser"
[href]="getHref(createdApp)"
target="_blank"
class="btn btn-primary"
title="{{ 'Open' | translate }}"
>
<i c8yIcon="external-link" class="m-r-4"></i>
{{ 'Open' | translate }}
</a>
</c8y-wizard-footer>