Merge "Fix Sphinx version"
[ccsdk/cds.git] / cds-ui / designer-client / src / app / modules / feature-modules / packages / configuration-dashboard / configuration-dashboard.component.ts
index 471b253..42b7af9 100644 (file)
@@ -6,52 +6,86 @@ import {FilesContent, FolderNodeElement, MetaDataTabModel} from '../package-crea
 import {MetadataTabComponent} from '../package-creation/metadata-tab/metadata-tab.component';
 import * as JSZip from 'jszip';
 import {ConfigurationDashboardService} from './configuration-dashboard.service';
-import {VlbDefinition} from '../package-creation/mapping-models/definitions/VlbDefinition';
-import {DslDefinition} from '../package-creation/mapping-models/CBAPacakge.model';
+import {TemplateTopology, VlbDefinition} from '../package-creation/mapping-models/definitions/VlbDefinition';
+import {CBAPackage, DslDefinition} from '../package-creation/mapping-models/CBAPacakge.model';
 import {PackageCreationUtils} from '../package-creation/package-creation.utils';
 import {PackageCreationModes} from '../package-creation/creationModes/PackageCreationModes';
 import {PackageCreationBuilder} from '../package-creation/creationModes/PackageCreationBuilder';
 import {saveAs} from 'file-saver';
 import {DesignerStore} from '../designer/designer.store';
-import {DesignerService} from '../designer/designer.service';
 import {ToastrService} from 'ngx-toastr';
+import {NgxFileDropEntry} from 'ngx-file-drop';
+import {PackageCreationService} from '../package-creation/package-creation.service';
+import {ComponentCanDeactivate} from '../../../../common/core/canDactivate/ComponentCanDeactivate';
 
 @Component({
     selector: 'app-configuration-dashboard',
     templateUrl: './configuration-dashboard.component.html',
     styleUrls: ['./configuration-dashboard.component.css'],
 })
-export class ConfigurationDashboardComponent implements OnInit {
+export class ConfigurationDashboardComponent extends ComponentCanDeactivate implements OnInit {
     viewedPackage: BluePrintDetailModel = new BluePrintDetailModel();
     @ViewChild(MetadataTabComponent, {static: false})
-    private metadataTabComponent: MetadataTabComponent;
+    metadataTabComponent: MetadataTabComponent;
     public customActionName = '';
 
     entryDefinitionKeys: string[] = ['template_tags', 'user-groups',
         'author-email', 'template_version', 'template_name', 'template_author', 'template_description'];
     @ViewChild('nameit', {static: true})
-    private elementRef: ElementRef;
+    elementRef: ElementRef;
+    uploadedFiles = [];
+    zipFile: JSZip = new JSZip();
+    filesData: any = [];
+    folder: FolderNodeElement = new FolderNodeElement();
+    id: any;
 
-    private zipFile: JSZip = new JSZip();
-    private filesData: any = [];
-    private folder: FolderNodeElement = new FolderNodeElement();
+    currentBlob = new Blob();
+    vlbDefinition: VlbDefinition = new VlbDefinition();
+    isSaveEnabled = false;
+    versionPattern = '^(\\d+\\.)?(\\d+\\.)?(\\*|\\d+)$';
+    metadataClasses = 'nav-item nav-link active';
+    private cbaPackage: CBAPackage = new CBAPackage();
 
-    private currentBlob = new Blob();
-
-    constructor(private route: ActivatedRoute, private configurationDashboardService: ConfigurationDashboardService,
-                private packageCreationStore: PackageCreationStore,
-                private packageCreationUtils: PackageCreationUtils,
-                private router: Router,
-                private designerStore: DesignerStore,
-                private designerService: DesignerService,
-                private toastService: ToastrService
+    constructor(
+        private route: ActivatedRoute,
+        private configurationDashboardService: ConfigurationDashboardService,
+        private packageCreationStore: PackageCreationStore,
+        private packageCreationService: PackageCreationService,
+        private packageCreationUtils: PackageCreationUtils,
+        private router: Router,
+        private designerStore: DesignerStore,
+        private toastService: ToastrService
     ) {
+        super();
+        this.packageCreationStore.state$.subscribe(
+            cbaPackage => {
+                this.cbaPackage = cbaPackage;
+            });
     }
 
     ngOnInit() {
+        this.vlbDefinition.topology_template = new TemplateTopology();
+
         this.elementRef.nativeElement.focus();
-        const id = this.route.snapshot.paramMap.get('id');
-        this.configurationDashboardService.getPagedPackages(id).subscribe(
+        this.refreshCurrentPackage();
+        const regexp = RegExp(this.versionPattern);
+        if (this.cbaPackage && this.cbaPackage.metaData && this.cbaPackage.metaData.description
+            && this.cbaPackage.metaData.name && this.cbaPackage.metaData.version &&
+            regexp.test(this.cbaPackage.metaData.version)) {
+            if (!this.metadataClasses.includes('complete')) {
+                this.metadataClasses += ' complete';
+            }
+        } else {
+            this.metadataClasses = this.metadataClasses.replace('complete', '');
+            this.isSaveEnabled = false;
+        }
+
+
+    }
+
+    private refreshCurrentPackage() {
+        this.id = this.route.snapshot.paramMap.get('id');
+        this.configurationDashboardService.getPagedPackages(this.id).subscribe(
             (bluePrintDetailModels) => {
                 if (bluePrintDetailModels) {
                     this.viewedPackage = bluePrintDetailModels[0];
@@ -61,44 +95,49 @@ export class ConfigurationDashboardComponent implements OnInit {
             });
     }
 
-
     private downloadCBAPackage(bluePrintDetailModels: BluePrintDetailModel) {
         this.configurationDashboardService.downloadResource(
             bluePrintDetailModels[0].artifactName + '/' + bluePrintDetailModels[0].artifactVersion).subscribe(response => {
             const blob = new Blob([response], {type: 'application/octet-stream'});
             this.currentBlob = blob;
-            this.zipFile.loadAsync(blob).then((zip) => {
-                Object.keys(zip.files).forEach((filename) => {
-                    zip.files[filename].async('string').then((fileData) => {
-                        if (fileData) {
-                            if (filename.includes('Scripts/')) {
-                                this.setScripts(filename, fileData);
-                            } else if (filename.includes('Templates/')) {
-                                if (filename.includes('-mapping.')) {
-                                    this.setMapping(filename, fileData);
-                                } else if (filename.includes('-template.')) {
-                                    this.setTemplates(filename, fileData);
-                                }
-
-                            } else if (filename.includes('Definitions/')) {
-                                this.setImports(filename, fileData, bluePrintDetailModels);
-                            } else if (filename.includes('TOSCA-Metadata/')) {
-                                const metaDataTabInfo: MetaDataTabModel = this.getMetaDataTabInfo(fileData);
-                                this.setMetaData(metaDataTabInfo, bluePrintDetailModels[0]);
+            this.extractBlobToStore(blob, bluePrintDetailModels[0]);
+        });
+    }
+
+    private extractBlobToStore(blob: Blob, bluePrintDetailModel: BluePrintDetailModel) {
+        this.zipFile.loadAsync(blob).then((zip) => {
+            Object.keys(zip.files).forEach((filename) => {
+                zip.files[filename].async('string').then((fileData) => {
+                    console.log(filename);
+                    if (fileData) {
+                        if (filename.includes('Scripts/')) {
+                            this.setScripts(filename, fileData);
+                        } else if (filename.includes('Templates/')) {
+                            if (filename.includes('-mapping.')) {
+                                this.setMapping(filename, fileData);
+                            } else if (filename.includes('-template.')) {
+                                this.setTemplates(filename, fileData);
                             }
+
+                        } else if (filename.includes('Definitions/')) {
+                            this.setImports(filename, fileData, bluePrintDetailModel);
+                        } else if (filename.includes('TOSCA-Metadata/')) {
+                            const metaDataTabInfo: MetaDataTabModel = this.getMetaDataTabInfo(fileData);
+                            this.setMetaData(metaDataTabInfo, bluePrintDetailModel);
                         }
-                    });
+                    }
                 });
             });
         });
     }
 
-    private setScripts(filename: string, fileData: any) {
+    setScripts(filename: string, fileData: any) {
         this.packageCreationStore.addScripts(filename, fileData);
     }
 
-    private setImports(filename: string, fileData: any, bluePrintDetailModels: BluePrintDetailModel) {
-        if (filename.includes(bluePrintDetailModels[0].artifactName)) {
+    setImports(filename: string, fileData: any, bluePrintDetailModels: BluePrintDetailModel) {
+        console.log(filename);
+        if (filename.includes(bluePrintDetailModels.artifactName)) {
             let definition = new VlbDefinition();
             definition = fileData as VlbDefinition;
             definition = JSON.parse(fileData);
@@ -115,35 +154,39 @@ export class ConfigurationDashboardComponent implements OnInit {
             if (definition.topology_template && definition.topology_template.content) {
                 this.designerStore.saveSourceContent(definition.topology_template.content);
             }
-        } else {
-            this.packageCreationStore.addDefinition(filename, fileData);
 
         }
+        this.packageCreationStore.addDefinition(filename, fileData);
+
     }
 
-    private setTemplates(filename: string, fileData: any) {
+    setTemplates(filename: string, fileData: any) {
         this.packageCreationStore.addTemplate(filename, fileData);
     }
 
-    private setMapping(fileName: string, fileData: string) {
+    setMapping(fileName: string, fileData: string) {
         this.packageCreationStore.addMapping(fileName, fileData);
     }
 
     editBluePrint() {
-        this.packageCreationStore.state$.subscribe(
-            cbaPackage => {
-                FilesContent.clear();
-                let packageCreationModes: PackageCreationModes;
-                cbaPackage = PackageCreationModes.mapModeType(cbaPackage);
-                cbaPackage.metaData = PackageCreationModes.setEntryPoint(cbaPackage.metaData);
-                packageCreationModes = PackageCreationBuilder.getCreationMode(cbaPackage);
-                packageCreationModes.execute(cbaPackage, this.packageCreationUtils);
-                this.filesData.push(this.folder.TREE_DATA);
-                this.saveBluePrintToDataBase();
-            });
+        this.configurationDashboardService.deletePackage(this.viewedPackage.id).subscribe(res => {
+            this.formTreeData();
+            this.saveBluePrintToDataBase();
+
+        });
+    }
+
+    private formTreeData() {
+        FilesContent.clear();
+        let packageCreationModes: PackageCreationModes;
+        this.cbaPackage = PackageCreationModes.mapModeType(this.cbaPackage);
+        this.cbaPackage.metaData = PackageCreationModes.setEntryPoint(this.cbaPackage.metaData);
+        packageCreationModes = PackageCreationBuilder.getCreationMode(this.cbaPackage);
+        packageCreationModes.execute(this.cbaPackage, this.packageCreationUtils);
+        this.filesData.push(this.folder.TREE_DATA);
     }
 
-    private setMetaData(metaDataObject: MetaDataTabModel, bluePrintDetailModel: BluePrintDetailModel) {
+    setMetaData(metaDataObject: MetaDataTabModel, bluePrintDetailModel: BluePrintDetailModel) {
         metaDataObject.description = bluePrintDetailModel.artifactDescription;
         this.packageCreationStore.changeMetaData(metaDataObject);
 
@@ -151,6 +194,7 @@ export class ConfigurationDashboardComponent implements OnInit {
 
     saveMetaData() {
         this.metadataTabComponent.saveMetaDataToStore();
+
     }
 
     getMetaDataTabInfo(fileData: string) {
@@ -168,7 +212,7 @@ export class ConfigurationDashboardComponent implements OnInit {
         this.create();
         this.zipFile.generateAsync({type: 'blob'})
             .then(blob => {
-                this.packageCreationStore.saveBluePrint(blob).subscribe(
+                this.packageCreationService.savePackage(blob).subscribe(
                     bluePrintDetailModels => {
                         if (bluePrintDetailModels) {
                             const id = bluePrintDetailModels.toString().split('id')[1].split(':')[1].split('"')[1];
@@ -182,6 +226,15 @@ export class ConfigurationDashboardComponent implements OnInit {
             });
     }
 
+    deletePackage() {
+        this.configurationDashboardService.deletePackage(this.id).subscribe(res => {
+            console.log('Deleted');
+            console.log(res);
+            this.router.navigate(['/packages']);
+        }, err => {
+            console.log(err);
+        });
+    }
 
     create() {
         this.zipFile = new JSZip();
@@ -192,8 +245,8 @@ export class ConfigurationDashboardComponent implements OnInit {
 
     }
 
-    goBacktoDashboard() {
-        this.router.navigate(['/packages']);
+    discardChanges() {
+        this.refreshCurrentPackage();
     }
 
     downloadPackage(artifactName: string, artifactVersion: string) {
@@ -204,23 +257,78 @@ export class ConfigurationDashboardComponent implements OnInit {
     }
 
     deployCurrentPackage() {
-        console.log('happened');
-        /*   this.zipFile.generateAsync({type: 'blob'})
-               .then(blob => {
-                   const formData = new FormData();
-                   formData.append('file', this.currentBlob);
-                   this.configurationDashboardService.deployPost(formData)
-                       .subscribe(data => {
-                       }, error => {
-                       });
-                   this.router.navigate(['/packages']);
-               });
-   */
-        this.router.navigate(['/packages']);
+        this.formTreeData();
+        this.deployPackage();
+
     }
 
     goToDesignerMode(id) {
         //  this.designerService.setActionName(this.customActionName);
         this.router.navigate(['/packages/designer', id, {actionName: this.customActionName}]);
     }
+
+    public dropped(files: NgxFileDropEntry[]) {
+
+    }
+
+    public fileOver(event) {
+        console.log(event);
+    }
+
+    public fileLeave(event) {
+        console.log(event);
+    }
+
+    textChanged($event: {}) {
+        this.packageCreationStore.addTopologyTemplate(this.vlbDefinition.topology_template);
+    }
+
+    enrichBluePrint() {
+
+        this.formTreeData();
+        this.enrichPackage();
+    }
+
+
+    private enrichPackage() {
+        this.create();
+        this.zipFile.generateAsync({type: 'blob'})
+            .then(blob => {
+                this.packageCreationService.enrichPackage(blob).subscribe(response => {
+                    console.log('success');
+                    const blobInfo = new Blob([response], {type: 'application/octet-stream'});
+                    this.currentBlob = blobInfo;
+                    this.packageCreationStore.clear();
+                    this.extractBlobToStore(this.currentBlob, this.viewedPackage);
+                    this.isSaveEnabled = true;
+                    this.toastService.info('enriched successfully ');
+                });
+            }, error => {
+                this.toastService.error('error happened when enrich ' + error.message);
+                console.error('Error -' + error.message);
+            });
+    }
+
+    private deployPackage() {
+        this.create();
+        this.zipFile.generateAsync({type: 'blob'})
+            .then(blob => {
+                this.packageCreationService.enrichPackage(blob).subscribe(response => {
+                    console.log('success');
+                    console.log(response);
+                });
+            }, error => {
+                this.toastService.error('error happened when deploying ' + error.message);
+                console.log('Error -' + error.message);
+            });
+    }
+
+    clickEvent() {
+        this.isSaveEnabled = true;
+    }
+
+    canDeactivate(): boolean {
+        return this.isSaveEnabled;
+    }
+
 }