Merge "Handle template names that contains '-'"
authorKAPIL SINGAL <ks220y@att.com>
Mon, 5 Oct 2020 18:03:36 +0000 (18:03 +0000)
committerGerrit Code Review <gerrit@onap.org>
Mon, 5 Oct 2020 18:03:36 +0000 (18:03 +0000)
cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-creation/templ-mapp-creation.component.ts
cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-listing/templ-mapp-listing.component.ts
cds-ui/designer-client/src/styles.css

index 8c1279f..56ed042 100644 (file)
@@ -79,7 +79,7 @@ export class TemplMappCreationComponent implements OnInit, OnDestroy {
             this.fileToDelete = templateInfo.fileName;
             this.fileName = templateInfo.fileName.split('/')[1];
             if (this.fileName) {
-                this.fileName = this.fileName.split('-')[0];
+                this.fileName = this.fileName.substr(0, this.fileName.lastIndexOf('-'));
             }
             if (templateInfo.type === 'mapping' || templateInfo.type.includes('mapping')) {
                 this.mappingRes = templateInfo.mapping;
index 561642e..3a05bcf 100644 (file)
@@ -1,12 +1,12 @@
-import {Component, EventEmitter, OnDestroy, OnInit, Output} from '@angular/core';
-import {PackageCreationStore} from '../../package-creation.store';
-import {Mapping, Template} from '../../mapping-models/CBAPacakge.model';
-import {TemplateInfo, TemplateStore} from '../../template.store';
-import {TemplateAndMapping} from '../TemplateAndMapping';
-import {ActivatedRoute} from '@angular/router';
-import {SharedService} from '../shared-service';
-import {TourService} from 'ngx-tour-md-menu';
-import {TemplateType} from '../utils/TemplateType';
+import { Component, EventEmitter, OnDestroy, OnInit, Output } from '@angular/core';
+import { PackageCreationStore } from '../../package-creation.store';
+import { Mapping, Template } from '../../mapping-models/CBAPacakge.model';
+import { TemplateInfo, TemplateStore } from '../../template.store';
+import { TemplateAndMapping } from '../TemplateAndMapping';
+import { ActivatedRoute } from '@angular/router';
+import { SharedService } from '../shared-service';
+import { TourService } from 'ngx-tour-md-menu';
+import { TemplateType } from '../utils/TemplateType';
 
 
 @Component({
@@ -186,8 +186,9 @@ export class TemplMappListingComponent implements OnInit, OnDestroy {
     }
 
     condifrmDelete() {
-        const file = this.fileToDelete.split('/')[1].split('-')[0];
-        const ext = this.fileToDelete.split('/')[1].split('.')[1];
+        const fullName = this.fileToDelete.split('/')[1];
+        const file = fullName.substr(0, fullName.lastIndexOf('-'));
+        const ext = fullName.substr(fullName.lastIndexOf('.') + 1);
         this.templateAndMappingMap.delete(file);
         if (this.templateAndMappingMap.size <= 0) {
             this.openCreationView();
index ac2a874..b215dd4 100644 (file)
@@ -2928,7 +2928,7 @@ animation: glowing 1500ms infinite;
   top: 13px;
 }
 .ace_scroller{
-  overflow: auto !important;
+  /* overflow: auto !important; */
 }
 .ace_print-margin{
   left: 100% !important;