summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole3/frontend/src/app/pages/netboot/netboot.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'admin/WebConsole3/frontend/src/app/pages/netboot/netboot.component.ts')
-rw-r--r--admin/WebConsole3/frontend/src/app/pages/netboot/netboot.component.ts178
1 files changed, 89 insertions, 89 deletions
diff --git a/admin/WebConsole3/frontend/src/app/pages/netboot/netboot.component.ts b/admin/WebConsole3/frontend/src/app/pages/netboot/netboot.component.ts
index 78718ca9..a275e0be 100644
--- a/admin/WebConsole3/frontend/src/app/pages/netboot/netboot.component.ts
+++ b/admin/WebConsole3/frontend/src/app/pages/netboot/netboot.component.ts
@@ -1,89 +1,89 @@
-import {Component, OnInit} from '@angular/core';
-
-import { NetbootService } from 'src/app/api/netboot.service';
-import { Netboot } from 'src/app/model/netboot';
-import {OgSweetAlertService} from '../../service/og-sweet-alert.service';
-import {ToasterService} from '../../service/toaster.service';
-import {TranslateService} from '@ngx-translate/core';
-import {Router} from '@angular/router';
-
-@Component({
- selector: 'app-netboot',
- templateUrl: './netboot.component.html',
- styleUrls: [ './netboot.component.scss' ]
-})
-export class NetbootComponent implements OnInit {
- searchText: any;
- netboots: any[];
- tableOptions: any;
-
- // this tells the tabs component which Pages
- // should be each tab's root Page
- constructor(public netbootService: NetbootService, private router: Router, private ogSweetAlert: OgSweetAlertService, private toaster: ToasterService, private translate: TranslateService) {
- this.tableOptions = {
- override: false,
- buttons: [
- {
- action: 'edit'
- },
- {
- action: 'copy',
- label: 'copy',
- handler: (rowData) => this.goToNetbootCopy(rowData),
- classes: 'btn-default'
- },
- {
- action: 'delete'
- }
- ]
- };
- }
-
- ngOnInit(): void {
- this.netbootService.list().subscribe(
- response => {
- this.netboots = response;
- },
- error => {
- this.toaster.pop({type: 'error', title: 'error', body: error});
- }
- );
- }
-
- deleteNetboot(id) {
- const self = this;
- this.ogSweetAlert.question(this.translate.instant('sure_to_delete') + '?', this.translate.instant('action_cannot_be_undone'), function() {
- self.netbootService.delete(id).subscribe(
- (response) => {
- self.toaster.pop({type: 'success', title: self.translate.instant('success'), body: self.translate.instant('successfully_deleted')});
- const index = self.netboots.findIndex((object) => object.id === id);
- if (index !== -1) {
- self.netboots.splice(index, 1);
- }
- },
- (error) => {
- self.toaster.pop({type: 'error', title: 'error', body: error});
- }
- );
- });
- }
-
- goToNetbootEdit(id) {
- this.router.navigate(['/app/netboots/', id, 'edit']);
- }
-
- goToNetbootCopy(template: Netboot) {
- const copy = Object.assign({}, template);
- this.netbootService.create(copy).subscribe(
- data => {
- // Comprobar que en data viene el id
- const newId = data.id;
- this.goToNetbootEdit(newId);
- },
- error => {
- this.toaster.pop({type: 'error', title: 'error', body: error});
- }
- );
-
- }
-}
+import {Component, OnInit} from '@angular/core';
+
+import { NetbootService } from 'src/app/api/netboot.service';
+import { Netboot } from 'src/app/model/netboot';
+import {OgSweetAlertService} from '../../service/og-sweet-alert.service';
+import {ToasterService} from '../../service/toaster.service';
+import {TranslateService} from '@ngx-translate/core';
+import {Router} from '@angular/router';
+
+@Component({
+ selector: 'app-netboot',
+ templateUrl: './netboot.component.html',
+ styleUrls: [ './netboot.component.scss' ]
+})
+export class NetbootComponent implements OnInit {
+ searchText: any;
+ netboots: any[];
+ tableOptions: any;
+
+ // this tells the tabs component which Pages
+ // should be each tab's root Page
+ constructor(public netbootService: NetbootService, private router: Router, private ogSweetAlert: OgSweetAlertService, private toaster: ToasterService, private translate: TranslateService) {
+ this.tableOptions = {
+ override: false,
+ buttons: [
+ {
+ action: 'edit'
+ },
+ {
+ action: 'copy',
+ label: 'copy',
+ handler: (rowData) => this.goToNetbootCopy(rowData),
+ classes: 'btn-default'
+ },
+ {
+ action: 'delete',
+ }
+ ]
+ };
+ }
+
+ ngOnInit(): void {
+ this.netbootService.list().subscribe(
+ response => {
+ this.netboots = response;
+ },
+ error => {
+ this.toaster.pop({type: 'error', title: 'error', body: error});
+ }
+ );
+ }
+
+ deleteNetboot(id) {
+ const self = this;
+ this.ogSweetAlert.question(this.translate.instant('sure_to_delete') + '?', this.translate.instant('action_cannot_be_undone'), function() {
+ self.netbootService.delete(id).subscribe(
+ (response) => {
+ self.toaster.pop({type: 'success', title: self.translate.instant('success'), body: self.translate.instant('successfully_deleted')});
+ const index = self.netboots.findIndex((object) => object.id === id);
+ if (index !== -1) {
+ self.netboots.splice(index, 1);
+ }
+ },
+ (error) => {
+ self.toaster.pop({type: 'error', title: 'error', body: error});
+ }
+ );
+ });
+ }
+
+ goToNetbootEdit(id) {
+ this.router.navigate(['/app/netboots/', id, 'edit']);
+ }
+
+ goToNetbootCopy(template: Netboot) {
+ const copy = Object.assign({}, template);
+ this.netbootService.create(copy).subscribe(
+ data => {
+ // Comprobar que en data viene el id
+ const newId = data.id;
+ this.goToNetbootEdit(newId);
+ },
+ error => {
+ this.toaster.pop({type: 'error', title: 'error', body: error});
+ }
+ );
+
+ }
+}