Roo/form/HtmlEditor.js
[roojs1] / Roo / form / HtmlEditor.js
1 //<script type="text/javascript">
2
3 /*
4  * Ext JS Library 1.1.1
5  * Copyright(c) 2006-2007, Ext JS, LLC.
6  * Licence LGPL
7  * 
8  */
9  
10  
11 Roo.form.HtmlEditor = function(config){
12     
13     
14     
15     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
16     
17     if (!this.toolbars) {
18         this.toolbars = [];
19     }
20     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
21     
22     
23 };
24
25 /**
26  * @class Roo.form.HtmlEditor
27  * @extends Roo.form.Field
28  * Provides a lightweight HTML Editor component.
29  *
30  * This has been tested on Fireforx / Chrome.. IE may not be so great..
31  * 
32  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
33  * supported by this editor.</b><br/><br/>
34  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
35  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
36  */
37 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
38       /**
39      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
40      */
41     toolbars : false,
42    
43      /**
44      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
45      *                        Roo.resizable.
46      */
47     resizable : false,
48      /**
49      * @cfg {Number} height (in pixels)
50      */   
51     height: 300,
52    /**
53      * @cfg {Number} width (in pixels)
54      */   
55     width: 500,
56     
57     /**
58      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
59      * 
60      */
61     stylesheets: false,
62     
63     autosave : false,
64     
65     // id of frame..
66     frameId: false,
67     
68     // private properties
69     validationEvent : false,
70     deferHeight: true,
71     initialized : false,
72     activated : false,
73     
74 //    onFocus : Roo.emptyFn,
75     iframePad:3,
76     hideMode:'offsets',
77     
78     defaultAutoCreate : { // modified by initCompnoent..
79         tag: "textarea",
80         style:"width:500px;height:300px;",
81         autocomplete: "off"
82     },
83
84     // private
85     initComponent : function(){
86         this.addEvents({
87             /**
88              * @event initialize
89              * Fires when the editor is fully initialized (including the iframe)
90              * @param {HtmlEditor} this
91              */
92             initialize: true,
93             /**
94              * @event activate
95              * Fires when the editor is first receives the focus. Any insertion must wait
96              * until after this event.
97              * @param {HtmlEditor} this
98              */
99             activate: true,
100              /**
101              * @event beforesync
102              * Fires before the textarea is updated with content from the editor iframe. Return false
103              * to cancel the sync.
104              * @param {HtmlEditor} this
105              * @param {String} html
106              */
107             beforesync: true,
108              /**
109              * @event beforepush
110              * Fires before the iframe editor is updated with content from the textarea. Return false
111              * to cancel the push.
112              * @param {HtmlEditor} this
113              * @param {String} html
114              */
115             beforepush: true,
116              /**
117              * @event sync
118              * Fires when the textarea is updated with content from the editor iframe.
119              * @param {HtmlEditor} this
120              * @param {String} html
121              */
122             sync: true,
123              /**
124              * @event push
125              * Fires when the iframe editor is updated with content from the textarea.
126              * @param {HtmlEditor} this
127              * @param {String} html
128              */
129             push: true,
130              /**
131              * @event editmodechange
132              * Fires when the editor switches edit modes
133              * @param {HtmlEditor} this
134              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
135              */
136             editmodechange: true,
137             /**
138              * @event editorevent
139              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
140              * @param {HtmlEditor} this
141              */
142             editorevent: true,
143             /**
144              * @event firstfocus
145              * Fires when on first focus - needed by toolbars..
146              * @param {HtmlEditor} this
147              */
148             firstfocus: true
149         });
150         this.defaultAutoCreate =  {
151             tag: "textarea",
152             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
153             autocomplete: "off"
154         };
155     },
156
157     onFocus : function()
158     {
159         Roo.log('onFocus!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1');
160     },
161     /**
162      * Protected method that will not generally be called directly. It
163      * is called when the editor creates its toolbar. Override this method if you need to
164      * add custom toolbar buttons.
165      * @param {HtmlEditor} editor
166      */
167     createToolbar : function(editor){
168         Roo.log("create toolbars");
169         if (!editor.toolbars || !editor.toolbars.length) {
170             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
171         }
172         
173         for (var i =0 ; i < editor.toolbars.length;i++) {
174             editor.toolbars[i] = Roo.factory(
175                     typeof(editor.toolbars[i]) == 'string' ?
176                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
177                 Roo.form.HtmlEditor);
178             editor.toolbars[i].init(editor);
179         }
180          
181         
182     },
183
184      
185     // private
186     onRender : function(ct, position)
187     {
188         var _t = this;
189         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
190         
191         this.wrap = this.el.wrap({
192             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
193         });
194         
195         this.editorcore.onRender(ct, position);
196          
197         if (this.resizable) {
198             this.resizeEl = new Roo.Resizable(this.wrap, {
199                 pinned : true,
200                 wrap: true,
201                 dynamic : true,
202                 minHeight : this.height,
203                 height: this.height,
204                 handles : this.resizable,
205                 width: this.width,
206                 listeners : {
207                     resize : function(r, w, h) {
208                         _t.onResize(w,h); // -something
209                     }
210                 }
211             });
212             
213         }
214         this.createToolbar(this);
215        
216         
217         if(!this.width){
218             this.setSize(this.wrap.getSize());
219         }
220         if (this.resizeEl) {
221             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
222             // should trigger onReize..
223         }
224         
225 //        if(this.autosave){
226 //            this.autoSaveFn = setInterval(this.autosave, 1000);
227 //        }
228     },
229
230     // private
231     onResize : function(w, h)
232     {
233         //Roo.log('resize: ' +w + ',' + h );
234         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
235         var ew = false;
236         var eh = false;
237         
238         if(this.el ){
239             if(typeof w == 'number'){
240                 var aw = w - this.wrap.getFrameWidth('lr');
241                 this.el.setWidth(this.adjustWidth('textarea', aw));
242                 ew = aw;
243             }
244             if(typeof h == 'number'){
245                 var tbh = 0;
246                 for (var i =0; i < this.toolbars.length;i++) {
247                     // fixme - ask toolbars for heights?
248                     tbh += this.toolbars[i].tb.el.getHeight();
249                     if (this.toolbars[i].footer) {
250                         tbh += this.toolbars[i].footer.el.getHeight();
251                     }
252                 }
253                 
254                 
255                 
256                 
257                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
258                 ah -= 5; // knock a few pixes off for look..
259                 this.el.setHeight(this.adjustWidth('textarea', ah));
260                 var eh = ah;
261             }
262         }
263         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
264         this.editorcore.onResize(ew,eh);
265         
266     },
267
268     /**
269      * Toggles the editor between standard and source edit mode.
270      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
271      */
272     toggleSourceEdit : function(sourceEditMode)
273     {
274         this.editorcore.toggleSourceEdit(sourceEditMode);
275         
276         if(this.editorcore.sourceEditMode){
277             Roo.log('editor - showing textarea');
278             
279 //            Roo.log('in');
280 //            Roo.log(this.syncValue());
281             this.editorcore.syncValue();
282             this.el.removeClass('x-hidden');
283             this.el.dom.removeAttribute('tabIndex');
284             this.el.focus();
285         }else{
286             Roo.log('editor - hiding textarea');
287 //            Roo.log('out')
288 //            Roo.log(this.pushValue()); 
289             this.editorcore.pushValue();
290             
291             this.el.addClass('x-hidden');
292             this.el.dom.setAttribute('tabIndex', -1);
293             //this.deferFocus();
294         }
295          
296         this.setSize(this.wrap.getSize());
297         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
298     },
299  
300     // private (for BoxComponent)
301     adjustSize : Roo.BoxComponent.prototype.adjustSize,
302
303     // private (for BoxComponent)
304     getResizeEl : function(){
305         return this.wrap;
306     },
307
308     // private (for BoxComponent)
309     getPositionEl : function(){
310         return this.wrap;
311     },
312
313     // private
314     initEvents : function(){
315         this.originalValue = this.getValue();
316     },
317
318     /**
319      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
320      * @method
321      */
322     markInvalid : Roo.emptyFn,
323     /**
324      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
325      * @method
326      */
327     clearInvalid : Roo.emptyFn,
328
329     setValue : function(v){
330         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
331         this.editorcore.pushValue();
332     },
333
334      
335     // private
336     deferFocus : function(){
337         this.focus.defer(10, this);
338     },
339
340     // doc'ed in Field
341     focus : function(){
342         this.editorcore.focus();
343         
344     },
345       
346
347     // private
348     onDestroy : function(){
349         
350         
351         
352         if(this.rendered){
353             
354             for (var i =0; i < this.toolbars.length;i++) {
355                 // fixme - ask toolbars for heights?
356                 this.toolbars[i].onDestroy();
357             }
358             
359             this.wrap.dom.innerHTML = '';
360             this.wrap.remove();
361         }
362     },
363
364     // private
365     onFirstFocus : function(){
366         //Roo.log("onFirstFocus");
367         this.editorcore.onFirstFocus();
368          for (var i =0; i < this.toolbars.length;i++) {
369             this.toolbars[i].onFirstFocus();
370         }
371         
372     },
373     
374     // private
375     syncValue : function()
376     {
377         this.editorcore.syncValue();
378     }
379      
380     
381     // hide stuff that is not compatible
382     /**
383      * @event blur
384      * @hide
385      */
386     /**
387      * @event change
388      * @hide
389      */
390     /**
391      * @event focus
392      * @hide
393      */
394     /**
395      * @event specialkey
396      * @hide
397      */
398     /**
399      * @cfg {String} fieldClass @hide
400      */
401     /**
402      * @cfg {String} focusClass @hide
403      */
404     /**
405      * @cfg {String} autoCreate @hide
406      */
407     /**
408      * @cfg {String} inputType @hide
409      */
410     /**
411      * @cfg {String} invalidClass @hide
412      */
413     /**
414      * @cfg {String} invalidText @hide
415      */
416     /**
417      * @cfg {String} msgFx @hide
418      */
419     /**
420      * @cfg {String} validateOnBlur @hide
421      */
422 });
423  
424