fb791da65239d4668de3d73ac8a802cf46ade5bb
[clamp.git] / src / main / resources / META-INF / resources / designer / scripts / AlertService.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License"); 
9  * you may not use this file except in compliance with the License. 
10  * You may obtain a copy of the License at
11  * 
12  * http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software 
15  * distributed under the License is distributed on an "AS IS" BASIS, 
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
17  * See the License for the specific language governing permissions and 
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23
24 app.service('alertService', [function () {
25         console.log("/////////////alertService");
26         this.alertMessage=function(msg,typeNumber){
27                 var typeMessage="";
28                 switch(typeNumber){
29                         case 1:
30                                 typeMessage="success";
31                                 break;
32                         case 2:
33                                 typeMessage="info";
34                                 break;
35                         case 3:
36                                 typeMessage="warning";
37                                 break;
38                         case 4:
39                                 typeMessage="danger";
40                                 break;
41                         default:
42                                 typeMessage="info";
43                 }
44                 $("#activity_modeler").prepend('<div id="alert_message_" style="postion:absolute;left:25;width:50%;" class="alert alert-'+typeMessage+'">'+msg+'</div>')
45                 setTimeout(function(){
46                 console.log("setTimeout");
47                  $("#alert_message_").slideUp(500);}, 3000);
48
49                 
50         }
51  }]);