summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-listing/templ-mapp-listing.component.ts
diff options
context:
space:
mode:
authorKAPIL SINGAL <ks220y@att.com>2020-06-16 12:31:11 +0000
committerGerrit Code Review <gerrit@onap.org>2020-06-16 12:31:11 +0000
commitfd0084752dfa82159643798711650e9bb52e6160 (patch)
treee1a0cf2019bf354d5c2cd9bdcb0c8fa38fea91c5 /cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-listing/templ-mapp-listing.component.ts
parentd54169fb3fd48e8b4a984ed8ec6cc70624893a25 (diff)
parenteed29ac266b168c6ce084f5bf44dd0680cf13d2d (diff)
Merge "change template&mapping screen add "back to temmplate list" button fix mapping table"
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-listing/templ-mapp-listing.component.ts')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-listing/templ-mapp-listing.component.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-listing/templ-mapp-listing.component.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-listing/templ-mapp-listing.component.ts
index 338c8f7cd..2e4d8c6e3 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-listing/templ-mapp-listing.component.ts
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-listing/templ-mapp-listing.component.ts
@@ -21,6 +21,7 @@ export class TemplMappListingComponent implements OnInit {
isCreate = true;
currentFile: string;
edit = false;
+ fileToDelete: any = {};
constructor(
private packageCreationStore: PackageCreationStore,
@@ -122,5 +123,17 @@ export class TemplMappListingComponent implements OnInit {
getValue(file: string) {
return this.templateAndMappingMap.get(file);
}
+ initDelete(file) {
+ console.log(file);
+ this.fileToDelete = file;
+ }
+ condifrmDelete() {
+ console.log(this.templateAndMappingMap);
+ this.templateAndMappingMap.delete(this.fileToDelete);
+ if (this.templateAndMappingMap.size <= 0) {
+ this.openCreationView();
+ }
+
+ }
}