Initial Commit - NG UI
[osm/NG-UI.git] / src / app / utilities / loader / LoaderComponent.ts
1 /*
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 Delete Model
20  */
21 import { Component, Input, OnInit } from '@angular/core';
22 /**
23  * Creating component
24  * @Component takes LoaderComponent.html as template url
25  */
26 @Component({
27   selector: 'app-loader',
28   templateUrl: './LoaderComponent.html',
29   styleUrls: ['./LoaderComponent.scss']
30 })
31 /** Exporting a class @exports LoaderComponent */
32 export class LoaderComponent implements OnInit {
33   /** Variables declared to get the message from parents @public */
34   @Input() public waitingMessage: string;
35   /** Variables declared to get the message of loader @public */
36   public getMessage: string;
37
38   constructor() {
39     // Empty block
40   }
41
42   public ngOnInit(): void {
43     if (this.waitingMessage !== '') {
44       this.getMessage = this.waitingMessage;
45     } else {
46       this.getMessage = '';
47     }
48   }
49
50 }