sync
[roojs1] / Roo / bootstrap / htmleditor / ToolbarStandard.js
1   
2 Roo.namespace('Roo.bootstrap.htmleditor');
3 /**
4  * @class Roo.bootstrap.HtmlEditorToolbar1
5  * Basic Toolbar
6  * 
7  * Usage:
8  *
9  new Roo.bootstrap.HtmlEditor({
10     ....
11     toolbars : [
12         new Roo.bootstrap.HtmlEditorToolbar1({
13             disable : { fonts: 1 , format: 1, ..., ... , ...],
14             btns : [ .... ]
15         })
16     }
17      
18  * 
19  * @cfg {Object} disable List of elements to disable..
20  * @cfg {Array} btns List of additional buttons.
21  * 
22  * 
23  * NEEDS Extra CSS? 
24  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
25  */
26  
27 Roo.bootstrap.htmleditor.ToolbarStandard = function(config)
28 {
29     
30     Roo.apply(this, config);
31     
32     // default disabled, based on 'good practice'..
33     this.disable = this.disable || {};
34     Roo.applyIf(this.disable, {
35         fontSize : true,
36         colors : true,
37         specialElements : true
38     });
39     Roo.bootstrap.htmleditor.ToolbarStandard.superclass.constructor.call(this, config);
40     
41     this.editor = config.editor;
42     this.editorcore = config.editor.editorcore;
43     
44     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
45     
46     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
47     // dont call parent... till later.
48 }
49 Roo.extend(Roo.bootstrap.htmleditor.ToolbarStandard, Roo.bootstrap.NavSimplebar,  {
50      
51     bar : true,
52     
53     editor : false,
54     editorcore : false,
55     
56     
57     formats : [
58         "p" ,  
59         "h1","h2","h3","h4","h5","h6", 
60         "pre", "code", 
61         "abbr", "acronym", "address", "cite", "samp", "var",
62         'div','span'
63     ],
64     
65     onRender : function(ct, position)
66     {
67        // Roo.log("Call onRender: " + this.xtype);
68         
69        Roo.bootstrap.htmleditor.ToolbarStandard.superclass.onRender.call(this, ct, position);
70        Roo.log(this.el);
71        this.el.dom.style.marginBottom = '0';
72        var _this = this;
73        var editorcore = this.editorcore;
74        var editor= this.editor;
75        
76        var children = [];
77        var btn = function(id,cmd , toggle, handler){
78        
79             var  event = toggle ? 'toggle' : 'click';
80        
81             var a = {
82                 size : 'sm',
83                 xtype: 'Button',
84                 xns: Roo.bootstrap,
85                 glyphicon : id,
86                 cmd : id || cmd,
87                 enableToggle:toggle !== false,
88                 //html : 'submit'
89                 pressed : toggle ? false : null,
90                 listeners : {}
91             };
92             a.listeners[toggle ? 'toggle' : 'click'] = function() {
93                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
94             };
95             children.push(a);
96             return a;
97        }
98         
99         var style = {
100                 xtype: 'Button',
101                 size : 'sm',
102                 xns: Roo.bootstrap,
103                 glyphicon : 'font',
104                 //html : 'submit'
105                 menu : {
106                     xtype: 'Menu',
107                     xns: Roo.bootstrap,
108                     items:  []
109                 }
110         };
111         Roo.each(this.formats, function(f) {
112             style.menu.items.push({
113                 xtype :'MenuItem',
114                 xns: Roo.bootstrap,
115                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
116                 tagname : f,
117                 listeners : {
118                     click : function()
119                     {
120                         editorcore.insertTag(this.tagname);
121                         editor.focus();
122                     }
123                 }
124                 
125             });
126         });
127          children.push(style);   
128             
129             
130         btn('bold',false,true);
131         btn('italic',false,true);
132         btn('align-left', 'justifyleft',true);
133         btn('align-center', 'justifycenter',true);
134         btn('align-right' , 'justifyright',true);
135         btn('link', false, false, function(btn) {
136             //Roo.log("create link?");
137             var url = prompt(this.createLinkText, this.defaultLinkValue);
138             if(url && url != 'http:/'+'/'){
139                 this.editorcore.relayCmd('createlink', url);
140             }
141         }),
142         btn('list','insertunorderedlist',true);
143         btn('pencil', false,true, function(btn){
144                 Roo.log(this);
145                 
146                 this.toggleSourceEdit(btn.pressed);
147         });
148         /*
149         var cog = {
150                 xtype: 'Button',
151                 size : 'sm',
152                 xns: Roo.bootstrap,
153                 glyphicon : 'cog',
154                 //html : 'submit'
155                 menu : {
156                     xtype: 'Menu',
157                     xns: Roo.bootstrap,
158                     items:  []
159                 }
160         };
161         
162         cog.menu.items.push({
163             xtype :'MenuItem',
164             xns: Roo.bootstrap,
165             html : Clean styles,
166             tagname : f,
167             listeners : {
168                 click : function()
169                 {
170                     editorcore.insertTag(this.tagname);
171                     editor.focus();
172                 }
173             }
174             
175         });
176        */
177         
178          
179        this.xtype = 'NavSimplebar';
180         
181         for(var i=0;i< children.length;i++) {
182             
183             this.buttons.add(this.addxtypeChild(children[i]));
184             
185         }
186         
187         editor.on('editorevent', this.updateToolbar, this);
188     },
189     onBtnClick : function(id)
190     {
191        this.editorcore.relayCmd(id);
192        this.editorcore.focus();
193     },
194     
195     /**
196      * Protected method that will not generally be called directly. It triggers
197      * a toolbar update by reading the markup state of the current selection in the editor.
198      */
199     updateToolbar: function(){
200
201         if(!this.editorcore.activated){
202             this.editor.onFirstFocus(); // is this neeed?
203             return;
204         }
205
206         var btns = this.buttons; 
207         var doc = this.editorcore.doc;
208         btns.get('bold').setActive(doc.queryCommandState('bold'));
209         btns.get('italic').setActive(doc.queryCommandState('italic'));
210         //btns.get('underline').setActive(doc.queryCommandState('underline'));
211         
212         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
213         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
214         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
215         
216         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
217         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
218          /*
219         
220         var ans = this.editorcore.getAllAncestors();
221         if (this.formatCombo) {
222             
223             
224             var store = this.formatCombo.store;
225             this.formatCombo.setValue("");
226             for (var i =0; i < ans.length;i++) {
227                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
228                     // select it..
229                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
230                     break;
231                 }
232             }
233         }
234         
235         
236         
237         // hides menus... - so this cant be on a menu...
238         Roo.bootstrap.MenuMgr.hideAll();
239         */
240         Roo.bootstrap.MenuMgr.hideAll();
241         //this.editorsyncValue();
242     },
243     onFirstFocus: function() {
244         this.buttons.each(function(item){
245            item.enable();
246         });
247     },
248     toggleSourceEdit : function(sourceEditMode){
249         
250           
251         if(sourceEditMode){
252             Roo.log("disabling buttons");
253            this.buttons.each( function(item){
254                 if(item.cmd != 'pencil'){
255                     item.disable();
256                 }
257             });
258           
259         }else{
260             Roo.log("enabling buttons");
261             if(this.editorcore.initialized){
262                 this.buttons.each( function(item){
263                     item.enable();
264                 });
265             }
266             
267         }
268         Roo.log("calling toggole on editor");
269         // tell the editor that it's been pressed..
270         this.editor.toggleSourceEdit(sourceEditMode);
271        
272     }
273 });
274
275
276
277