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

Revision 7568, 11.4 KB checked in by marcosw, 11 years ago (diff)

Ticket #3203 - Correção inconsistências no editor de texto simples

  • 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
203    if(typeof(preferences.font_size_editor) !== 'undefined')
204        $(editor.document.$.body).css("font-size",preferences.font_size_editor);
205    if(typeof(preferences.font_family_editor) !== 'undefined')
206        $(editor.document.$.body).css("font-family",preferences.font_family_editor);
207
208    RichTextEditor.editorReady = true;
209    }   
210}
211
212cRichTextEditor.prototype.setPlain = function (active,id){
213      RichTextEditor.plain[id] = active;
214          var content = $("#content_id_"+id);
215          //var div = $("<div>").attr("display", "none");
216      if(active === true)
217      {
218            CKEDITOR.instances['body_'+id].destroy();
219            var height = document.body.scrollHeight;
220            height -= 330;
221            //Insere o texto sem formatação no textarea
222            var text_body = remove_tags($('#body_'+id).val());
223            $('#body_'+id).val(text_body);
224           
225            $('#body_'+id).keydown(function(event) {
226                away = false;
227                save_link = content.find(".save")[0];
228                save_link.onclick = function onclick() {openTab.toPreserve[id] = true;save_msg(id);} ;
229                                $("#save_message_options_"+id).button({ disabled: false });
230                //save_link.className = 'message_options';
231            });
232                        $("[name=textplain_rt_checkbox_"+id+"]").button({ disabled: false });
233      }   
234      else{
235          RichTextEditor.active('body_'+id, id);
236          /*Insere somente quebras de linha para que o texto convertido não fique todo em uma linha só*/
237          var text_body = $('#body_'+id).val().replace(/[\n]+/g, '<br>');
238          $('#body_'+id).val(text_body);
239      }
240}
241
242cRichTextEditor.prototype.getData = function (inst){ 
243    var id = inst.replace('body_','');
244   
245    if(RichTextEditor.plain[id] === true)
246        return $('#'+inst).val();
247    else
248        return CKEDITOR.instances[inst].getData();
249}
250cRichTextEditor.prototype.setData = function (id,data){
251   
252        if(this.plain[id.replace('body_','')] === true)
253                $('#'+id).val(data);
254    else
255        CKEDITOR.instances[id].setData(data);
256}
257cRichTextEditor.prototype.setInitData = function (id,data,reply,recursion, callback){
258        var content = $("#content_id_"+id);
259        if(recursion === undefined){
260                recursion = 1;
261        }else{
262                recursion++;   
263        }
264        if(this.plain[id] === true){               
265                data =  data.replace( new RegExp('<pre>((.\n*)*)</pre>'),'$1');
266                if($('#'+id) !== undefined){
267                        $('#'+id).val(data);
268                        if (reply === undefined){       
269                                $('#to_'+id).focus();
270                        }
271                }
272                else{
273                        setTimeout(function() {RichTextEditor.setInitData(id,data,reply,recursion); }, 500);
274                }
275        } 
276        else{
277                if( RichTextEditor.editorReady === true && CKEDITOR.instances['body_'+id] !== undefined ){
278                        var editor =   CKEDITOR.instances['body_'+id];
279                        var selection = editor.getSelection();
280                        var fontSize = '';
281                        var fontFamily = '';
282                        if(typeof(preferences.font_size_editor) !== 'undefined')
283                                fontSize = 'font-size:' + preferences.font_size_editor;
284                        if(fontSize != '')
285                                fontFamily = ';'
286                        if(typeof(preferences.font_family_editor) !== 'undefined')
287                                fontFamily += 'font-family:' + preferences.font_family_editor + ';';
288                        var divBr = '<div style="'+fontSize+fontFamily+'"><br type="_moz"></div>';
289                       
290                        if(selection !== undefined && selection !== null){
291                                var selectionRanges = selection.getRanges();
292                        }
293                        if(reply !== undefined){
294                                if(reply == 'edit')
295                                        editor.insertHtml(data);
296                                else
297                                        editor.insertHtml(divBr+data);
298                                editor.focus();
299                        }
300
301                        if(selection !== null){
302                                if(selectionRanges[selectionRanges.length-1] !== undefined){
303                                        selectionRanges[selectionRanges.length-1].setStart(selectionRanges[selectionRanges.length-1].getTouchedStartNode().getParents()[1].getChild(0), 0);
304                                        selectionRanges[selectionRanges.length-1].setEnd(selectionRanges[selectionRanges.length-1].getTouchedStartNode().getParents()[1].getChild(0), 0);
305                                }
306                                selection.selectRanges(selectionRanges);
307                        }
308                       
309                        if (is_webkit){
310                                $('#cke_contents_body_'+id+'>iframe').scrollTo(':first');
311                        }
312                        if(callback !== undefined)
313                                callback();
314                }
315                else if(recursion < 20){
316                        setTimeout(function() {RichTextEditor.setInitData(id,data,reply,recursion); }, 500);
317                }
318        }
319}
320
321cRichTextEditor.prototype.destroy = function(id)
322{
323        //Remove Instancia do editor
324        if( CKEDITOR.instances[id] !== undefined )   
325             CKEDITOR.remove(CKEDITOR.instances[id]);
326}
327cRichTextEditor.prototype.active = function(id, just_id)
328{
329   
330   //Remove Instancia do editor caso ela exista
331    if( CKEDITOR.instances[id] !== undefined )   
332         CKEDITOR.remove(CKEDITOR.instances[id]);
333     
334    var height = document.body.scrollHeight;
335     height -= 375;
336     $('#'+id).ckeditor(
337                function() {
338                        RichTextEditor.execPosInstance(id)
339                },
340                {
341                        toolbar:'mail',
342                        height: height
343                }
344        );
345        //$("[name=textplain_rt_checkbox_"+just_id+"]").button({ disabled: false });
346}
347cRichTextEditor.prototype.focus = function(id)
348{
349    if(RichTextEditor.plain[id]  === true)
350        $('#body_'+id).focus();
351    else
352        CKEDITOR.instances['body_'+id].focus();
353
354}
355//Função reseta o atributo contentEditable para resolver bug de cursor ao trocar abas
356cRichTextEditor.prototype.setEditable = function(id) {
357        if( CKEDITOR.instances['body_'+ id] === undefined ) return;   
358        var element = CKEDITOR.instances['body_'+ id].document.getBody();
359        element.removeAttribute('contentEditable');
360        element.setAttribute('contentEditable','true');
361}
362cRichTextEditor.prototype.keydown = function (id,rec){
363    if (rec === undefined) rec = 1;
364    rec++;
365    if( CKEDITOR.instances['body_'+ id] === undefined ) return;   
366    var element = CKEDITOR.instances['body_'+ id]; 
367   
368    if(element.document){
369        element.document.on('keydown',function(){
370            $("#content_id_"+currentTab+" .save").button("enable");
371        });
372    } else {
373        if (rec <= 20)
374                setTimeout(function(){RichTextEditor.keydown(id,rec)},500);
375    }
376}
377//Build the Object
378RichTextEditor = new cRichTextEditor();
Note: See TracBrowser for help on using the repository browser.