source: branches/2.5/expressoMail1_2/js/InfoContact.js @ 7924

Revision 7924, 6.8 KB checked in by douglas, 11 years ago (diff)

Ticket #3362 - Problema ao abrir mensagem da caixa de entrada

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1 function emInfoContact()
2{
3        this.email = "";
4        this.timeout = null;
5        this.timeout_hide = null;
6        this._mousemove = document.onmousemove;
7        this.td;
8        this.createCard();
9}
10
11emInfoContact.prototype.createCard = function(){
12        var pic= new Image();
13        pic.src="./templates/"+template+"/images/card.gif";
14        card = document.createElement("DIV");
15        card.id = "card_cc";
16        card.style.display = "none";
17        card.style.width = "244px";
18        card.style.backgroundImage = "url("+pic.src+")";
19        card.style.height = "134px";
20        card.style.position = "absolute";
21        card.innerHTML = "<table onmouseout='InfoContact.timeout_hide=setTimeout(\"InfoContact.hide()\",50);' onmouseover='clearTimeout(InfoContact.timeout_hide);' cellpadding=0 cellspacing=0 width='100%' height='100%'><tr><td valign='center' align='center' id='card_cc_td'></td></tr></table>";
22        document.body.appendChild(card);
23}
24emInfoContact.prototype.begin = function(td, email){
25
26        var card = Element("card_cc");
27        if(email.match(/<([^<]*)>[\s]*$/))
28                email = email.match(/<([^<]*)>[\s]*$/)[1];
29       
30        if(this.td != td){
31                this.email = email;
32                this.td = td;
33                clearTimeout(this.timeout);
34        }
35        this.timeout = setTimeout("InfoContact.search('"+email+"')",1000);             
36}
37
38emInfoContact.prototype.label = function (text){
39        InfoContact.hide();
40        var div_label = Element("div_label");
41        if(!div_label) {
42                div_label = document.createElement("DIV");
43                div_label.id = "div_label";
44                div_label.style.padding = "2px";
45                div_label.style.display = "none";
46                div_label.style.position = "absolute";
47                div_label.style.border = "1px solid black";
48                div_label.style.backgroundColor="#FFFFDC";
49                document.body.appendChild(div_label);
50        }
51        div_label.innerHTML = text;
52        div_label.style.top = (findPosY(this.td) + 20 - Element("divScrollMain_"+numBox).scrollTop)+"px";
53        div_label.style.left = (findPosX(this.td) + 20)+"px";
54        div_label.style.display = '';
55        setTimeout("InfoContact.hide()",1000);
56}
57
58emInfoContact.prototype.connectVoip = function (phoneUser, typePhone){
59        var handler_connectVoip = function(data){
60                if(!data) {
61                        alert(get_lang("Error contacting VoIP server."));
62                }
63                else{
64                        alert(get_lang("Requesting a VoIP call")+":\n"+data);
65                }
66        }
67        cExecute ("$this.functions.callVoipConnect&to="+phoneUser+"&typePhone="+typePhone, handler_connectVoip);
68}
69
70emInfoContact.prototype.show = function (data){
71        var _this = this;
72        var card = Element("card_cc");
73        card.style.left = (findPosX(this.td) + 20)+"px";
74        var divScroll = Element("divScrollMain_"+numBox);
75        var y = findPosY(this.td) + 20 - (divScroll ? divScroll.scrollTop : 0);
76        var w_height = is_ie ? document.body.clientHeight + document.body.scrollTop : window.innerHeight + window.pageYOffset;
77        if(y + 160 > w_height)
78                card.style.top =  (y - 160)+"px";       
79        else
80                card.style.top = y+"px";               
81        card.style.display = '';
82        var cn = data.cn;
83        if(cn && cn.toString().length > 35)
84                cn = cn.toString().substring(0,30) + "...";
85       
86                var phoneUser;
87
88                data.telefone ? phoneUser = data.telefone : phoneUser ="<br />";
89
90                data.mobile ? phoneUser += "<br />&nbsp;"+data.mobile :  phoneUser += "<br />";
91
92                data.employeeNumber ? employeeNumber = data.employeeNumber : employeeNumber ="";
93
94                data.ou ? ou = data.ou :  ou = "";
95
96
97
98        if(preferences.voip_enabled) {
99                phoneUser = '';
100                if(data.telefone)
101                        phoneUser = "<a title=\""+get_lang("Call to Comercial Number")+"\" href=\"#\" onclick=\"InfoContact.connectVoip('"+ data.telefone+"', 'com')\">"+ data.telefone+"</a>";
102                if(data.mobile){
103                        phoneUser += "<br>&nbsp;<a title=\""+get_lang("Call to Mobile Number")+"\" href=\"#\" onclick=\"InfoContact.connectVoip('"+data.mobile+"', 'mob')\">"+data.mobile+"</a>";
104                }
105        }
106
107                Element("card_cc_td").innerHTML =
108                                                "<table cellpadding=0 cellspacing=0 border=0 height='100%' width='100%'><tr>"+
109                                                "<td  style='padding-top:4px' align='center' valign='center' colspan ='2'><img src='templates/"+template+"/images/"+(data.type)+"_catalog.png' /><font size=1 color=BLACK>&nbsp;<b>"+get_lang("Sender's Information")+"</b></font>"+_this.verifyIM(data.uid,data.email)+"</td></tr>"+
110
111                                                "<tr><td align='center' style='width:70px;height:93px;padding-left:6px' align='center' valign='center'>"+
112                                                "<img style='float:left' src='./inc/show_img.php?email="+data.email+"'></td>"+
113                                                "<td style='padding-left:2px' width='70%' align='left' valign='top'>"+
114                                                "<br><img style='float:left'align='center' src='templates/"+template+"/images/phone.gif' />&nbsp;<font  size=1  color=BLACK>"+(phoneUser ? phoneUser : get_lang("None") )+"</font><br />"+
115                                                "<br><font size=1 color=BLACK>"+cn+"</font><br><b>"+employeeNumber+"</b>"+
116                                                "<br/>"+ou+"</td></tr>"+
117                                                "<tr><td  style='padding-bottom:4px' align='center' valign='center' colspan ='2' nowrap><span title='"+get_lang("Write message")+"' style='cursor:pointer' onclick='InfoContact.sendMail(\""+cn+"\",\""+data.email+"\")'><font size=1 color=DARKBLUE><u>"+data.email+"</u></font></span>"+
118                                                                                "</td></tr></table>";
119
120
121        this.timeout_hide = setTimeout("InfoContact.hide()",1000);     
122}
123
124emInfoContact.prototype.search = function (email){
125        var _this = this;
126        var trustedDomain = false;
127        //      If "preferences.notification_domains" was setted, then verify if "mail" has a trusted domain.   
128        if (preferences.notification_domains != undefined && preferences.notification_domains != "") {
129                var domains = preferences.notification_domains.split(',');
130                for (var i = 0; i < domains.length; i++) {
131                        if (email.toString().match(domains[i]))
132                                trustedDomain = true;
133                }
134        }
135        else
136                trustedDomain = true;
137
138        var handler_search = function(data){
139                if(data != null){
140                        _this.show(data);
141                }
142                else
143                        _this.label(email);                     
144        }
145       
146        if (trustedDomain)
147                cExecute ("$this.ldap_functions.getUserByEmail&email="+email, handler_search);
148        else
149                _this.label(email);
150}
151
152emInfoContact.prototype.hide = function(){
153        this.email = "";
154        if(Element("div_label"))
155                Element("div_label").style.display = 'none';
156
157        if(Element("card_cc"))
158                Element("card_cc").style.display = "none";     
159}
160
161emInfoContact.prototype.sendMail = function(name, email){
162        Element("msg_number").value = "\""+ name+"\" <"+email+">";
163        InfoContact.hide();
164        new_message("new","null");
165}
166
167emInfoContact.prototype.openChat = function(event, email){
168        IM.action_button(event, '1', email ,false);
169}
170
171emInfoContact.prototype.verifyIM = function(uid, email){
172
173        if ( !window.IM || !document.getElementById('myStatus') )
174                return  "";
175
176        var status = IM.infoContact(uid);
177        var _return = '<br/>';
178
179        if ( status )
180        {
181                _return += '<img align="center" src="'+status.src+'" />';
182                _return += '<span onclick="IM.action_button(event,\''+status.jid+'\');"><font size="1" color=';
183               
184                if( status.src != img_unavailable.src)
185                        _return         += '"DARKBLUE"><u style="cursor:pointer;">'+get_lang("User connected")+"</u>";
186                else
187                        _return         += '"BLACK">'+get_lang("User not connected");
188
189                _return += "</font></span><br />";
190        }
191
192        return _return;
193}
194/* Build the Object */
195var emInfoContact;
196InfoContact = new emInfoContact();
Note: See TracBrowser for help on using the repository browser.