source: trunk/expressoMail1_2/js/rich_text_editor.js @ 5973

Revision 5973, 10.2 KB checked in by gustavo, 12 years ago (diff)

Ticket #2611 - Refatorar interface de criação de nova mensagem

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1function cRichTextEditor(){
2    this.emwindow   = new Array;
3    this.editor = "body_1";
4    this.table = "";
5    this.id = "1";
6    this.saveFlag = 0;
7    this.signatures = false;
8    this.replyController = false;
9    this.newImageId = false;
10    this.plain = new Array;
11    this.editorReady = true;
12        this.hoho = '';
13}
14
15// This code was written by Tyler Akins and has been placed in the
16// public domain.  It would be nice if you left this header intact.
17// Base64 code from Tyler Akins -- http://rumkin.com
18
19var keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
20
21var ua = navigator.userAgent.toLowerCase();
22if (ua.indexOf(" chrome/") >= 0 || ua.indexOf(" firefox/") >= 0 || ua.indexOf(' gecko/') >= 0) {
23    var StringMaker = function () {
24        this.str = "";
25        this.length = 0;
26        this.append = function (s) {
27            this.str += s;
28            this.length += s.length;
29        }
30        this.prepend = function (s) {
31            this.str = s + this.str;
32            this.length += s.length;
33        }
34        this.toString = function () {
35            return this.str;
36        }
37    }
38} else {
39    var StringMaker = function () {
40        this.parts = [];
41        this.length = 0;
42        this.append = function (s) {
43            this.parts.push(s);
44            this.length += s.length;
45        }
46        this.prepend = function (s) {
47            this.parts.unshift(s);
48            this.length += s.length;
49        }
50        this.toString = function () {
51            return this.parts.join('');
52        }
53    }
54}
55
56cRichTextEditor.prototype.fromJSON = function( value )
57{
58        if(!value)
59                return '';
60        return (new Function( "return " + this.decode64( value )))();
61}
62
63cRichTextEditor.prototype.decode64 = function(input) {
64        if( typeof input === "undefined" ) return '';
65
66        var output = new StringMaker();
67        var chr1, chr2, chr3;
68        var enc1, enc2, enc3, enc4;
69        var i = 0;
70
71        // remove all characters that are not A-Z, a-z, 0-9, +, /, or =
72        input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
73
74        while (i < input.length) {
75                enc1 = keyStr.indexOf(input.charAt(i++));
76                enc2 = keyStr.indexOf(input.charAt(i++));
77                enc3 = keyStr.indexOf(input.charAt(i++));
78                enc4 = keyStr.indexOf(input.charAt(i++));
79
80                chr1 = (enc1 << 2) | (enc2 >> 4);
81                chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
82                chr3 = ((enc3 & 3) << 6) | enc4;
83
84                output.append(String.fromCharCode(chr1));
85
86                if (enc3 != 64) {
87                        output.append(String.fromCharCode(chr2));
88                }
89                if (enc4 != 64) {
90                        output.append(String.fromCharCode(chr3));
91                }
92        }
93
94        return output.toString();
95}
96
97
98cRichTextEditor.prototype.loadEditor = function(ID) {
99       
100        var parentDiv = document.getElementById("body_position_" + ID);
101        var pObj = "body_" + ID;
102        var textArea = document.createElement("TEXTAREA");
103        textArea.id = pObj;
104        textArea.style.width = '100%';
105        parentDiv.appendChild(textArea);
106        RichTextEditor.plain[ID] = false;
107       
108        if(preferences.plain_text_editor == 1)
109                {
110                        RichTextEditor.plain[ID] = true; 
111                        RichTextEditor.editorReady = true;
112                }
113        else
114                        RichTextEditor.active(pObj);
115}
116
117cRichTextEditor.prototype.loadEditor2 = function(ID) {     
118                var pObj = "body_" + ID;
119        RichTextEditor.plain[ID] = false;
120       
121        if(preferences.plain_text_editor == 1)
122                {
123                        RichTextEditor.plain[ID] = true; 
124                        RichTextEditor.editorReady = true;
125                }
126        else
127                        RichTextEditor.active(pObj);
128}
129
130
131cRichTextEditor.prototype.getSignaturesOptions = function() {
132       
133        if(RichTextEditor.signatures !== false)
134            return RichTextEditor.signatures;
135               
136        var signatures = this.fromJSON( preferences.signatures );
137        var signature_types = this.fromJSON( preferences.signature_types );
138
139        for( key in signatures )
140            if( !signature_types[key] )
141                signatures[key] = signatures[key].replace( /\n/g, "<br>" );
142                 
143        RichTextEditor.signatures = signatures;
144        return signatures;
145
146}
147
148cRichTextEditor.prototype.getSignatureDefault = function() {
149         
150        if(RichTextEditor.signatures === false)
151            RichTextEditor.signatures = RichTextEditor.getSignaturesOptions();
152         
153        if(!RichTextEditor.signatures || 
154           !RichTextEditor.signatures[preferences.signature_default || ""])
155        {
156          preferences.use_signature = "0"; //Desabilita o uso da assinatura
157          return '';
158        }
159       
160        return unescape(RichTextEditor.signatures[preferences.signature_default]);
161
162}
163
164
165
166cRichTextEditor.prototype.execPosInstance = function(inst) {
167     if(RichTextEditor.editorReady === false)
168     {
169        var editor =  CKEDITOR.instances[inst];
170        var id = inst.replace('body_','');
171        var content = $("#content_id_"+id)
172        editor.document.on('keydown', function(event)
173        {
174                away = false;
175                var save_link = content.find(".save");
176                save_link.unbind("click").click(function(){
177                        openTab.toPreserve[id] = true;save_msg(id);
178                });
179                save_link.button({ disabled: false });
180        });
181       
182       
183        // IM Module Enabled
184        if( window.parent.loadscript && loadscript.autoStatusIM )
185        {
186                CKEDITOR.instances[inst].document.on('keydown', function(event){
187                        loadscript.autoStatusIM;
188                });             
189        }
190
191        if (preferences.auto_save_draft == 1)
192        {
193            autoSaveControl.status[id] = true;
194            autoSaveControl.timer[id] = window.setInterval( "autoSave("+id+")" ,autosave_time); 
195
196            CKEDITOR.instances[inst].document.on('keydown', function(event){   
197                autoSaveControl.status[id] = false;
198            })
199        }
200       
201        $(".cke_editor").css("white-space", "normal");
202        RichTextEditor.editorReady = true;
203     } 
204}
205
206cRichTextEditor.prototype.setPlain = function (active,id){
207      RichTextEditor.plain[id] = active;
208          var content = $("#content_id_"+id);
209      if(active === true)
210      {
211            CKEDITOR.instances['body_'+id].destroy();
212            var height = document.body.scrollHeight;
213            height -= 330;
214            $('#body_'+id).height(height);
215            $('#body_'+id).keydown(function(event) {
216                away = false;
217                save_link = content.find(".save")[0];
218                save_link.onclick = function onclick() {openTab.toPreserve[id] = true;save_msg(id);} ;
219                                $("#save_message_options_"+id).button({ disabled: false });
220                //save_link.className = 'message_options';
221            });
222                        $("[name=textplain_rt_checkbox_"+id+"]").button({ disabled: false });
223      }   
224      else
225          RichTextEditor.active('body_'+id, id);
226}
227
228cRichTextEditor.prototype.getData = function (inst){ 
229    var id = inst.replace('body_','');
230   
231    if(RichTextEditor.plain[id] === true)
232        return $('#'+inst).val();
233    else
234        return CKEDITOR.instances[inst].getData();
235}
236cRichTextEditor.prototype.setData = function (id,data){
237   
238     if(this.plain[id] === true)
239        $('#'+id).val(data);
240     else
241        CKEDITOR.instances[id].setData(data)
242}
243cRichTextEditor.prototype.setInitData = function (id,data,reply,recursion, callback){
244        var content = $("#content_id_"+id);
245        if(recursion === undefined){
246                recursion = 1;
247        }else{
248                recursion++;   
249        }
250        if(this.plain[id] === true){               
251                data =  data.replace( new RegExp('<pre>((.\n*)*)</pre>'),'$1');
252                if($('#'+id) !== undefined){
253                        $('#'+id).val(data);
254                        if (reply === undefined){       
255                                $('#to_'+id).focus();
256                        }
257                }
258                else{
259                        setTimeout(function() {RichTextEditor.setInitData(id,data,reply,recursion); }, 500);
260                }
261        } 
262        else{
263                if( RichTextEditor.editorReady === true && CKEDITOR.instances['body_'+id] !== undefined ){
264                        var editor =   CKEDITOR.instances['body_'+id];
265                        var selection = editor.getSelection();
266                        var fontSize = '';
267                        var fontFamily = '';
268                        if(typeof(preferences.font_size_editor) !== 'undefined')
269                                fontSize = 'font-size:' + preferences.font_size_editor;
270                        if(fontSize != '')
271                                fontFamily = ';'
272                        if(typeof(preferences.font_family_editor) !== 'undefined')
273                                fontFamily += 'font-family:' + preferences.font_family_editor + ';';
274                        var divBr = '<div style="'+fontSize+fontFamily+'"><br type="_moz"></div>';
275                       
276                        if(selection !== undefined && selection !== null){
277                                var selectionRanges = selection.getRanges();
278                        }
279                        if(reply !== undefined){
280                                if(reply == 'edit')
281                                        editor.insertHtml(data);
282                                else
283                                        editor.insertHtml(divBr+data);
284                                editor.focus();
285                        }
286
287                        if(selection !== null){
288                                if(selectionRanges[selectionRanges.length-1] !== undefined){
289                                        selectionRanges[selectionRanges.length-1].setStart(selectionRanges[selectionRanges.length-1].getTouchedStartNode().getParents()[1].getChild(0), 0);
290                                        selectionRanges[selectionRanges.length-1].setEnd(selectionRanges[selectionRanges.length-1].getTouchedStartNode().getParents()[1].getChild(0), 0);
291                                }
292                                selection.selectRanges(selectionRanges);
293                        }
294                       
295                        if (is_webkit){
296                                $('#cke_contents_body_'+id+'>iframe').scrollTo(':first');
297                        }
298                        if(callback !== undefined)
299                                callback();
300                }
301                else if(recursion < 20){
302                        setTimeout(function() {RichTextEditor.setInitData(id,data,reply,recursion); }, 500);
303                }
304        }
305}
306
307cRichTextEditor.prototype.destroy = function(id)
308{
309        //Remove Instancia do editor
310        if( CKEDITOR.instances[id] !== undefined )   
311             CKEDITOR.remove(CKEDITOR.instances[id]);
312}
313cRichTextEditor.prototype.active = function(id, just_id)
314{
315   
316   //Remove Instancia do editor caso ela exista
317    if( CKEDITOR.instances[id] !== undefined )   
318         CKEDITOR.remove(CKEDITOR.instances[id]);
319     
320    var height = document.body.scrollHeight;
321     height -= 375;
322     $('#'+id).ckeditor(
323                function() {
324                        RichTextEditor.execPosInstance(id)
325                },
326                {
327                        toolbar:'mail',
328                        height: height
329                }
330        );
331        //$("[name=textplain_rt_checkbox_"+just_id+"]").button({ disabled: false });
332}
333cRichTextEditor.prototype.focus = function(id)
334{
335    if(RichTextEditor.plain[id]  === true)
336        $('#body_'+id).focus();
337    else
338        CKEDITOR.instances['body_'+id].focus();
339
340}
341//Função reseta o atributo contentEditable para resolver bug de cursor ao trocar abas
342cRichTextEditor.prototype.setEditable = function(id) {
343        if( CKEDITOR.instances['body_'+ id] === undefined ) return;   
344        var element = CKEDITOR.instances['body_'+ id].document.getBody();
345        element.removeAttribute('contentEditable');
346        element.setAttribute('contentEditable','true');
347}
348//Build the Object
349RichTextEditor = new cRichTextEditor();
Note: See TracBrowser for help on using the repository browser.