From 659025ea329c8e4f395d0a5bbd6a502b12885641 Mon Sep 17 00:00:00 2001 From: AhmedEldeeb50 Date: Tue, 16 Jun 2020 17:34:01 +0200 Subject: add delete modal in Template&Mapping Issue-ID: CCSDK-2449 Signed-off-by: AhmedEldeeb50 Change-Id: I76abe710016745802bad3b024415579f09a9ac18 --- .../configuration-dashboard/configuration-dashboard.component.html | 2 +- .../templ-mapp-listing/templ-mapp-listing.component.ts | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'cds-ui') diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html b/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html index 4abc93b55..ebfad93c3 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html @@ -22,7 +22,7 @@
- + Save 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 2e4d8c6e3..f25dcb1be 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 @@ -133,6 +133,10 @@ export class TemplMappListingComponent implements OnInit { if (this.templateAndMappingMap.size <= 0) { this.openCreationView(); } + // Delete from templates + this.packageCreationStore.state.templates.files.delete('Templates/' + this.fileToDelete + '-template.vtl'); + // Delete from Mapping + this.packageCreationStore.state.mapping.files.delete('Templates/' + this.fileToDelete + '-mapping.json'); } -- cgit 1.2.3-korg