Fix mod ui build issues
[dcaegen2/platform.git] / mod2 / ui / src / app / services / global-filters.service.ts
1 /* 
2  *  # ============LICENSE_START=======================================================
3  *  # Copyright (c) 2020 AT&T Intellectual Property. All rights reserved.
4  *  # ================================================================================
5  *  # Licensed under the Apache License, Version 2.0 (the "License");
6  *  # you may not use this file except in compliance with the License.
7  *  # You may obtain a copy of the License at
8  *  #
9  *  #      http://www.apache.org/licenses/LICENSE-2.0
10  *  #
11  *  # Unless required by applicable law or agreed to in writing, software
12  *  # distributed under the License is distributed on an "AS IS" BASIS,
13  *  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  # See the License for the specific language governing permissions and
15  *  # limitations under the License.
16  *  # ============LICENSE_END=========================================================
17  */
18
19 import { Injectable } from '@angular/core';
20
21 @Injectable({
22   providedIn: 'root'
23 })
24 export class GlobalFiltersService {
25
26   //global filter values
27   instanceName: string;
28   instanceTag: string;
29   release: string;
30   status: string;
31
32   shouldFilter: boolean = false;
33
34   constructor() { }
35
36   setFilters(filters){
37     this.instanceName = filters.instanceName
38     this.instanceTag = filters.instanceTag
39     this.release = filters.release
40     this.status = filters.status
41   }
42
43   getFilters(){
44     let globalFilters = {instanceName: this.instanceName, instanceTag: this.instanceTag, release: this.release, status: this.status}
45     return globalFilters
46   }
47
48   checkShouldFilter(){
49     return this.shouldFilter
50   }
51
52   setShouldFilter(){
53     this.shouldFilter = !this.shouldFilter
54   }
55 }