mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-01-20 11:38:59 +00:00
Removing data from appliance dialog
This commit is contained in:
parent
5270134626
commit
62c94275a9
@ -129,31 +129,23 @@
|
||||
<mat-step *ngIf="applianceToInstall">
|
||||
<ng-template matStepLabel>{{ secondActionTitle }}</ng-template>
|
||||
|
||||
<mat-card [hidden]="!(!isLinuxPlatform && !isGns3VmAvailable && !applianceToInstall.dynamips)">
|
||||
<mat-card [hidden]="!(!isLinuxPlatform && !applianceToInstall.dynamips)">
|
||||
Please configure GNS3 VM to install selected appliance
|
||||
</mat-card>
|
||||
|
||||
<mat-card [hidden]="!(isLinuxPlatform || isGns3VmAvailable || applianceToInstall.dynamips)">
|
||||
<mat-card [hidden]="!(isLinuxPlatform || applianceToInstall.dynamips)">
|
||||
<div *ngIf="applianceToInstall.qemu">
|
||||
<div>
|
||||
Server type<br />
|
||||
<mat-radio-group class="radio-group">
|
||||
<mat-radio-button
|
||||
[disabled]="!isLinuxPlatform"
|
||||
[checked]="!isGns3VmChosen"
|
||||
[checked]="isLocalComputerChosen"
|
||||
class="radio-button"
|
||||
value="1"
|
||||
(click)="setServerType('local')"
|
||||
>Install the appliance locally</mat-radio-button
|
||||
>
|
||||
<mat-radio-button
|
||||
[disabled]="!isGns3VmAvailable"
|
||||
[checked]="isGns3VmChosen"
|
||||
class="radio-button"
|
||||
value="2"
|
||||
(click)="setServerType('gns3 vm')"
|
||||
>Install the appliance on the GNS3 VM</mat-radio-button
|
||||
>
|
||||
</mat-radio-group>
|
||||
</div>
|
||||
<div>
|
||||
@ -302,20 +294,12 @@
|
||||
<mat-radio-group class="radio-group">
|
||||
<mat-radio-button
|
||||
[disabled]="!isLinuxPlatform"
|
||||
[checked]="!isGns3VmChosen"
|
||||
[checked]="isLocalComputerChosen"
|
||||
class="radio-button"
|
||||
value="1"
|
||||
(click)="setServerType('local')"
|
||||
>Install the appliance locally</mat-radio-button
|
||||
>
|
||||
<mat-radio-button
|
||||
[disabled]="!isGns3VmAvailable"
|
||||
[checked]="isGns3VmChosen"
|
||||
class="radio-button"
|
||||
value="2"
|
||||
(click)="setServerType('gns3 vm')"
|
||||
>Install the appliance on the GNS3 VM</mat-radio-button
|
||||
>
|
||||
</mat-radio-group>
|
||||
</div>
|
||||
<button mat-raised-button color="primary" (click)="createDockerTemplate()" class="create-button">
|
||||
@ -328,20 +312,12 @@
|
||||
Server type<br />
|
||||
<mat-radio-group class="radio-group">
|
||||
<mat-radio-button
|
||||
[checked]="!isGns3VmChosen"
|
||||
[checked]="isLocalComputerChosen"
|
||||
class="radio-button"
|
||||
value="1"
|
||||
(click)="setServerType('local')"
|
||||
>Install the appliance locally</mat-radio-button
|
||||
>
|
||||
<mat-radio-button
|
||||
[disabled]="!isGns3VmAvailable"
|
||||
[checked]="isGns3VmChosen"
|
||||
class="radio-button"
|
||||
value="2"
|
||||
(click)="setServerType('gns3 vm')"
|
||||
>Install the appliance on the GNS3 VM</mat-radio-button
|
||||
>
|
||||
</mat-radio-group>
|
||||
</div>
|
||||
<div>
|
||||
@ -386,20 +362,12 @@
|
||||
<mat-radio-group class="radio-group">
|
||||
<mat-radio-button
|
||||
[disabled]="!isLinuxPlatform"
|
||||
[checked]="!isGns3VmChosen"
|
||||
[checked]="isLocalComputerChosen"
|
||||
class="radio-button"
|
||||
value="1"
|
||||
(click)="setServerType('local')"
|
||||
>Install the appliance locally</mat-radio-button
|
||||
>
|
||||
<mat-radio-button
|
||||
[disabled]="!isGns3VmAvailable"
|
||||
[checked]="isGns3VmChosen"
|
||||
class="radio-button"
|
||||
value="2"
|
||||
(click)="setServerType('gns3 vm')"
|
||||
>Install the appliance on the GNS3 VM</mat-radio-button
|
||||
>
|
||||
</mat-radio-group>
|
||||
</div>
|
||||
<div>
|
||||
|
@ -58,11 +58,7 @@ export class NewTemplateDialogComponent implements OnInit {
|
||||
public appliances: Appliance[] = [];
|
||||
public applianceToInstall: Appliance;
|
||||
public selectedImages: any[];
|
||||
|
||||
public isGns3VmAvailable = false;
|
||||
public isLinuxPlatform = false;
|
||||
|
||||
private isGns3VmChosen = false;
|
||||
private isLocalComputerChosen = false;
|
||||
|
||||
public qemuBinaries: QemuBinary[] = [];
|
||||
@ -106,10 +102,6 @@ export class NewTemplateDialogComponent implements OnInit {
|
||||
|
||||
this.computeService.getComputes(this.server).subscribe((computes) => {
|
||||
computes.forEach((compute) => {
|
||||
if (compute.compute_id === 'vm') {
|
||||
this.isGns3VmAvailable = true;
|
||||
this.isGns3VmChosen = true;
|
||||
}
|
||||
if (compute.capabilities.platform === 'linux') this.isLinuxPlatform = true;
|
||||
});
|
||||
});
|
||||
@ -283,14 +275,8 @@ export class NewTemplateDialogComponent implements OnInit {
|
||||
}
|
||||
|
||||
setServerType(serverType: string) {
|
||||
if (serverType === 'gns3 vm') {
|
||||
this.isGns3VmChosen = true;
|
||||
this.isLocalComputerChosen = false;
|
||||
} else {
|
||||
this.isGns3VmChosen = false;
|
||||
this.isLocalComputerChosen = true;
|
||||
}
|
||||
}
|
||||
|
||||
sortData(sort: Sort) {
|
||||
if (!sort.active || sort.direction === '') return;
|
||||
@ -487,7 +473,7 @@ export class NewTemplateDialogComponent implements OnInit {
|
||||
iouTemplate.category = this.getCategory();
|
||||
iouTemplate.default_name_format = this.applianceToInstall.port_name_format;
|
||||
iouTemplate.symbol = this.applianceToInstall.symbol;
|
||||
iouTemplate.compute_id = this.isGns3VmChosen ? 'vm' : 'local';
|
||||
iouTemplate.compute_id = 'local';
|
||||
iouTemplate.template_id = uuid();
|
||||
iouTemplate.path = image.filename;
|
||||
iouTemplate.template_type = 'iou';
|
||||
@ -536,7 +522,7 @@ export class NewTemplateDialogComponent implements OnInit {
|
||||
iosTemplate.category = this.getCategory();
|
||||
iosTemplate.default_name_format = this.applianceToInstall.port_name_format;
|
||||
iosTemplate.symbol = this.applianceToInstall.symbol;
|
||||
iosTemplate.compute_id = this.isGns3VmChosen ? 'vm' : 'local';
|
||||
iosTemplate.compute_id = 'local';
|
||||
iosTemplate.template_id = uuid();
|
||||
iosTemplate.image = image.filename;
|
||||
iosTemplate.template_type = 'dynamips';
|
||||
@ -574,7 +560,7 @@ export class NewTemplateDialogComponent implements OnInit {
|
||||
dockerTemplate.category = this.getCategory();
|
||||
dockerTemplate.default_name_format = this.applianceToInstall.port_name_format;
|
||||
dockerTemplate.symbol = this.applianceToInstall.symbol;
|
||||
dockerTemplate.compute_id = this.isGns3VmChosen ? 'vm' : 'local';
|
||||
dockerTemplate.compute_id = 'local';
|
||||
dockerTemplate.template_id = uuid();
|
||||
dockerTemplate.image = this.applianceToInstall.docker.image;
|
||||
dockerTemplate.template_type = 'docker';
|
||||
@ -631,7 +617,7 @@ export class NewTemplateDialogComponent implements OnInit {
|
||||
qemuTemplate.port_name_format = this.applianceToInstall.port_name_format;
|
||||
qemuTemplate.symbol = this.applianceToInstall.symbol;
|
||||
qemuTemplate.qemu_path = this.selectedBinary.path;
|
||||
qemuTemplate.compute_id = this.isGns3VmChosen ? 'vm' : 'local';
|
||||
qemuTemplate.compute_id = 'local';
|
||||
qemuTemplate.template_id = uuid();
|
||||
qemuTemplate.hda_disk_image = version.images.hda_disk_image;
|
||||
qemuTemplate.hdb_disk_image = version.images.hdb_disk_image;
|
||||
|
Loading…
Reference in New Issue
Block a user