blob: 4f9738f47337ee4bfe0b180f54d92000e242ee49 [file] [log] [blame]
kumaran.m3b4814a2020-05-01 19:48:54 +05301/*
2 Copyright 2020 TATA ELXSI
3
4 Licensed under the Apache License, Version 2.0 (the 'License');
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 Author: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in)
17*/
18/**
19 * @file Projects Action Component
20 */
21import { Component, Injector } from '@angular/core';
22import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
23import { MODALCLOSERESPONSEDATA } from 'CommonModel';
24import { DeleteComponent } from 'DeleteComponent';
25import { ProjectCreateUpdateComponent } from 'ProjectCreateUpdate';
26import { ProjectData } from 'ProjectModel';
27import { SharedService } from 'SharedService';
28
29/**
30 * Creating component
31 * @Component takes ProjectsActionComponent.html as template url
32 */
33@Component({
34 selector: 'app-projects-action',
35 templateUrl: './ProjectsActionComponent.html',
36 styleUrls: ['./ProjectsActionComponent.scss']
37})
38/** Exporting a class @exports ProjectsActionComponent */
39export class ProjectsActionComponent {
40 /** To get the value from the nspackage via valuePrepareFunction default Property of ng-smarttable @public */
41 public value: ProjectData;
42
43 /** To inject services @public */
44 public injector: Injector;
45
46 /** Instance of the modal service @private */
47 private modalService: NgbModal;
48
49 /** Contains all methods related to shared @private */
50 private sharedService: SharedService;
51
52 constructor(injector: Injector) {
53 this.injector = injector;
54 this.modalService = this.injector.get(NgbModal);
55 this.sharedService = this.injector.get(SharedService);
56 }
57
58 /** Delete project @public */
59 public projectDelete(): void {
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +053060 // eslint-disable-next-line security/detect-non-literal-fs-filename
kumaran.m3b4814a2020-05-01 19:48:54 +053061 const modalRef: NgbModalRef = this.modalService.open(DeleteComponent, { backdrop: 'static' });
62 modalRef.result.then((result: MODALCLOSERESPONSEDATA) => {
63 if (result) {
64 this.sharedService.callData();
65 }
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +053066 }).catch((): void => {
67 // Catch Navigation Error
68 });
kumaran.m3b4814a2020-05-01 19:48:54 +053069 }
70
71 /** Edit project @public */
72 public projectEdit(): void {
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +053073 // eslint-disable-next-line security/detect-non-literal-fs-filename
Barath Kumar R2e02e7d2021-06-09 09:18:17 +053074 const modalRef: NgbModalRef = this.modalService.open(ProjectCreateUpdateComponent, { size: 'lg', backdrop: 'static' });
kumaran.m3b4814a2020-05-01 19:48:54 +053075 modalRef.componentInstance.projectType = 'Edit';
76 modalRef.result.then((result: MODALCLOSERESPONSEDATA) => {
77 if (result) {
78 this.sharedService.callData();
79 }
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +053080 }).catch((): void => {
81 // Catch Navigation Error
82 });
kumaran.m3b4814a2020-05-01 19:48:54 +053083 }
84}