Roo/bootstrap/htmleditor/ToolbarStandard.js
[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         Roo.log(this.editor.btns.length);
130         
131         if (this.editor.btns.length > 0) {
132             for (var i = 0; i<this.editor.btns.length; i++) {
133                 Roo.log(this.editor.btns[i]);
134             }
135         }
136             
137         btn('bold',false,true);
138         btn('italic',false,true);
139         btn('align-left', 'justifyleft',true);
140         btn('align-center', 'justifycenter',true);
141         btn('align-right' , 'justifyright',true);
142         btn('link', false, false, function(btn) {
143             //Roo.log("create link?");
144             var url = prompt(this.createLinkText, this.defaultLinkValue);
145             if(url && url != 'http:/'+'/'){
146                 this.editorcore.relayCmd('createlink', url);
147             }
148         }),
149         btn('list','insertunorderedlist',true);
150         btn('pencil', false,true, function(btn){
151                 Roo.log(this);
152                 this.toggleSourceEdit(btn.pressed);
153         });
154         /*
155         var cog = {
156                 xtype: 'Button',
157                 size : 'sm',
158                 xns: Roo.bootstrap,
159                 glyphicon : 'cog',
160                 //html : 'submit'
161                 menu : {
162                     xtype: 'Menu',
163                     xns: Roo.bootstrap,
164                     items:  []
165                 }
166         };
167         
168         cog.menu.items.push({
169             xtype :'MenuItem',
170             xns: Roo.bootstrap,
171             html : Clean styles,
172             tagname : f,
173             listeners : {
174                 click : function()
175                 {
176                     editorcore.insertTag(this.tagname);
177                     editor.focus();
178                 }
179             }
180             
181         });
182        */
183         
184          
185        this.xtype = 'NavSimplebar';
186         
187         for(var i=0;i< children.length;i++) {
188             
189             this.buttons.add(this.addxtypeChild(children[i]));
190             
191         }
192         
193         editor.on('editorevent', this.updateToolbar, this);
194     },
195     onBtnClick : function(id)
196     {
197        this.editorcore.relayCmd(id);
198        this.editorcore.focus();
199     },
200     
201     /**
202      * Protected method that will not generally be called directly. It triggers
203      * a toolbar update by reading the markup state of the current selection in the editor.
204      */
205     updateToolbar: function(){
206
207         if(!this.editorcore.activated){
208             this.editor.onFirstFocus(); // is this neeed?
209             return;
210         }
211
212         var btns = this.buttons; 
213         var doc = this.editorcore.doc;
214         btns.get('bold').setActive(doc.queryCommandState('bold'));
215         btns.get('italic').setActive(doc.queryCommandState('italic'));
216         //btns.get('underline').setActive(doc.queryCommandState('underline'));
217         
218         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
219         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
220         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
221         
222         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
223         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
224          /*
225         
226         var ans = this.editorcore.getAllAncestors();
227         if (this.formatCombo) {
228             
229             
230             var store = this.formatCombo.store;
231             this.formatCombo.setValue("");
232             for (var i =0; i < ans.length;i++) {
233                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
234                     // select it..
235                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
236                     break;
237                 }
238             }
239         }
240         
241         
242         
243         // hides menus... - so this cant be on a menu...
244         Roo.bootstrap.MenuMgr.hideAll();
245         */
246         Roo.bootstrap.MenuMgr.hideAll();
247         //this.editorsyncValue();
248     },
249     onFirstFocus: function() {
250         this.buttons.each(function(item){
251            item.enable();
252         });
253     },
254     toggleSourceEdit : function(sourceEditMode){
255         
256           
257         if(sourceEditMode){
258             Roo.log("disabling buttons");
259            this.buttons.each( function(item){
260                 if(item.cmd != 'pencil'){
261                     item.disable();
262                 }
263             });
264           
265         }else{
266             Roo.log("enabling buttons");
267             if(this.editorcore.initialized){
268                 this.buttons.each( function(item){
269                     item.enable();
270                 });
271             }
272             
273         }
274         Roo.log("calling toggole on editor");
275         // tell the editor that it's been pressed..
276         this.editor.toggleSourceEdit(sourceEditMode);
277        
278     }
279 });
280
281
282
283