JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.3
[ckeditor.git] / _source / plugins / panel / plugin.js
1 /*\r
2 Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license\r
4 */\r
5 \r
6 CKEDITOR.plugins.add( 'panel',\r
7 {\r
8         beforeInit : function( editor )\r
9         {\r
10                 editor.ui.addHandler( CKEDITOR.UI_PANEL, CKEDITOR.ui.panel.handler );\r
11         }\r
12 });\r
13 \r
14 /**\r
15  * Panel UI element.\r
16  * @constant\r
17  * @example\r
18  */\r
19 CKEDITOR.UI_PANEL = 'panel';\r
20 \r
21 CKEDITOR.ui.panel = function( document, definition )\r
22 {\r
23         // Copy all definition properties to this object.\r
24         if ( definition )\r
25                 CKEDITOR.tools.extend( this, definition );\r
26 \r
27         // Set defaults.\r
28         CKEDITOR.tools.extend( this,\r
29                 {\r
30                         className : '',\r
31                         css : []\r
32                 });\r
33 \r
34         this.id = CKEDITOR.tools.getNextId();\r
35         this.document = document;\r
36 \r
37         this._ =\r
38         {\r
39                 blocks : {}\r
40         };\r
41 };\r
42 \r
43 /**\r
44  * Transforms a rich combo definition in a {@link CKEDITOR.ui.richCombo}\r
45  * instance.\r
46  * @type Object\r
47  * @example\r
48  */\r
49 CKEDITOR.ui.panel.handler =\r
50 {\r
51         create : function( definition )\r
52         {\r
53                 return new CKEDITOR.ui.panel( definition );\r
54         }\r
55 };\r
56 \r
57 CKEDITOR.ui.panel.prototype =\r
58 {\r
59         renderHtml : function( editor )\r
60         {\r
61                 var output = [];\r
62                 this.render( editor, output );\r
63                 return output.join( '' );\r
64         },\r
65 \r
66         /**\r
67          * Renders the combo.\r
68          * @param {CKEDITOR.editor} editor The editor instance which this button is\r
69          *              to be used by.\r
70          * @param {Array} output The output array to which append the HTML relative\r
71          *              to this button.\r
72          * @example\r
73          */\r
74         render : function( editor, output )\r
75         {\r
76                 var id = this.id;\r
77 \r
78                 output.push(\r
79                         '<div class="', editor.skinClass ,'"' +\r
80                                 ' lang="', editor.langCode, '"' +\r
81                                 ' role="presentation"' +\r
82                                 // iframe loading need sometime, keep the panel hidden(#4186).\r
83                                 ' style="display:none;z-index:' + ( editor.config.baseFloatZIndex + 1 ) + '">' +\r
84                                 '<div' +\r
85                                         ' id=', id,\r
86                                         ' dir=', editor.lang.dir,\r
87                                         ' role="presentation"' +\r
88                                         ' class="cke_panel cke_', editor.lang.dir );\r
89 \r
90                 if ( this.className )\r
91                         output.push( ' ', this.className );\r
92 \r
93                 output.push(\r
94                                 '">' );\r
95 \r
96                 if ( this.forceIFrame || this.css.length )\r
97                 {\r
98                         output.push(\r
99                                                 '<iframe id="', id, '_frame"' +\r
100                                                         ' frameborder="0"' +\r
101                                                         ' role="application" src="javascript:void(' );\r
102 \r
103                         output.push(\r
104                                                         // Support for custom document.domain in IE.\r
105                                                         CKEDITOR.env.isCustomDomain() ?\r
106                                                                 '(function(){' +\r
107                                                                         'document.open();' +\r
108                                                                         'document.domain=\'' + document.domain + '\';' +\r
109                                                                         'document.close();' +\r
110                                                                 '})()'\r
111                                                         :\r
112                                                                 '0' );\r
113 \r
114                         output.push(\r
115                                                 ')"></iframe>' );\r
116                 }\r
117 \r
118                 output.push(\r
119                                 '</div>' +\r
120                         '</div>' );\r
121 \r
122                 return id;\r
123         },\r
124 \r
125         getHolderElement : function()\r
126         {\r
127                 var holder = this._.holder;\r
128 \r
129                 if ( !holder )\r
130                 {\r
131                         if ( this.forceIFrame || this.css.length )\r
132                         {\r
133                                 var iframe = this.document.getById( this.id + '_frame' ),\r
134                                         parentDiv = iframe.getParent(),\r
135                                         dir = parentDiv.getAttribute( 'dir' ),\r
136                                         className = parentDiv.getParent().getAttribute( 'class' ),\r
137                                         langCode = parentDiv.getParent().getAttribute( 'lang' ),\r
138                                         doc = iframe.getFrameDocument();\r
139 \r
140                                 // Make it scrollable on iOS. (#8308)\r
141                                 CKEDITOR.env.iOS && parentDiv.setStyles(\r
142                                         {\r
143                                                 'overflow' : 'scroll',\r
144                                                 '-webkit-overflow-scrolling' : 'touch'\r
145                                         });\r
146 \r
147                                 var onLoad = CKEDITOR.tools.addFunction( CKEDITOR.tools.bind( function( ev )\r
148                                         {\r
149                                                 this.isLoaded = true;\r
150                                                 if ( this.onLoad )\r
151                                                         this.onLoad();\r
152                                         }, this ) );\r
153 \r
154                                 var data =\r
155                                         '<!DOCTYPE html>' +\r
156                                         '<html dir="' + dir + '" class="' + className + '_container" lang="' + langCode + '">' +\r
157                                                 '<head>' +\r
158                                                         '<style>.' + className + '_container{visibility:hidden}</style>' +\r
159                                                         CKEDITOR.tools.buildStyleHtml( this.css ) +\r
160                                                 '</head>' +\r
161                                                 '<body class="cke_' + dir + ' cke_panel_frame ' + CKEDITOR.env.cssClass + '" style="margin:0;padding:0"' +\r
162                                                 ' onload="( window.CKEDITOR || window.parent.CKEDITOR ).tools.callFunction(' + onLoad + ');"></body>' +\r
163                                         '<\/html>';\r
164 \r
165                                 doc.write( data );\r
166 \r
167                                 var win = doc.getWindow();\r
168 \r
169                                 // Register the CKEDITOR global.\r
170                                 win.$.CKEDITOR = CKEDITOR;\r
171 \r
172                                 // Arrow keys for scrolling is only preventable with 'keypress' event in Opera (#4534).\r
173                                 doc.on( 'key' + ( CKEDITOR.env.opera? 'press':'down' ), function( evt )\r
174                                         {\r
175                                                 var keystroke = evt.data.getKeystroke(),\r
176                                                         dir = this.document.getById( this.id ).getAttribute( 'dir' );\r
177 \r
178                                                 // Delegate key processing to block.\r
179                                                 if ( this._.onKeyDown && this._.onKeyDown( keystroke ) === false )\r
180                                                 {\r
181                                                         evt.data.preventDefault();\r
182                                                         return;\r
183                                                 }\r
184 \r
185                                                 // ESC/ARROW-LEFT(ltr) OR ARROW-RIGHT(rtl)\r
186                                                 if ( keystroke == 27 || keystroke == ( dir == 'rtl' ? 39 : 37 ) )\r
187                                                 {\r
188                                                         if ( this.onEscape && this.onEscape( keystroke ) === false )\r
189                                                                 evt.data.preventDefault();\r
190                                                 }\r
191                                         },\r
192                                         this );\r
193 \r
194                                 holder = doc.getBody();\r
195                                 holder.unselectable();\r
196                                 CKEDITOR.env.air && CKEDITOR.tools.callFunction( onLoad );\r
197                         }\r
198                         else\r
199                                 holder = this.document.getById( this.id );\r
200 \r
201                         this._.holder = holder;\r
202                 }\r
203 \r
204                 return holder;\r
205         },\r
206 \r
207         addBlock : function( name, block )\r
208         {\r
209                 block = this._.blocks[ name ] = block instanceof CKEDITOR.ui.panel.block ?  block\r
210                                 : new CKEDITOR.ui.panel.block( this.getHolderElement(), block );\r
211 \r
212                 if ( !this._.currentBlock )\r
213                         this.showBlock( name );\r
214 \r
215                 return block;\r
216         },\r
217 \r
218         getBlock : function( name )\r
219         {\r
220                 return this._.blocks[ name ];\r
221         },\r
222 \r
223         showBlock : function( name )\r
224         {\r
225                 var blocks = this._.blocks,\r
226                         block = blocks[ name ],\r
227                         current = this._.currentBlock;\r
228 \r
229                 // ARIA role works better in IE on the body element, while on the iframe\r
230                 // for FF. (#8864)\r
231                 var holder = !this.forceIFrame || CKEDITOR.env.ie ?\r
232                                  this._.holder : this.document.getById( this.id + '_frame' );\r
233 \r
234                 if ( current )\r
235                 {\r
236                         // Clean up the current block's effects on holder.\r
237                         holder.removeAttributes( current.attributes );\r
238                         current.hide();\r
239                 }\r
240 \r
241                 this._.currentBlock = block;\r
242 \r
243                 holder.setAttributes( block.attributes );\r
244                 CKEDITOR.fire( 'ariaWidget', holder );\r
245 \r
246                 // Reset the focus index, so it will always go into the first one.\r
247                 block._.focusIndex = -1;\r
248 \r
249                 this._.onKeyDown = block.onKeyDown && CKEDITOR.tools.bind( block.onKeyDown, block );\r
250 \r
251                 block.show();\r
252 \r
253                 return block;\r
254         },\r
255 \r
256         destroy : function()\r
257         {\r
258                 this.element && this.element.remove();\r
259         }\r
260 };\r
261 \r
262 CKEDITOR.ui.panel.block = CKEDITOR.tools.createClass(\r
263 {\r
264         $ : function( blockHolder, blockDefinition )\r
265         {\r
266                 this.element = blockHolder.append(\r
267                         blockHolder.getDocument().createElement( 'div',\r
268                                 {\r
269                                         attributes :\r
270                                         {\r
271                                                 'tabIndex' : -1,\r
272                                                 'class' : 'cke_panel_block',\r
273                                                 'role' : 'presentation'\r
274                                         },\r
275                                         styles :\r
276                                         {\r
277                                                 display : 'none'\r
278                                         }\r
279                                 }) );\r
280 \r
281                 // Copy all definition properties to this object.\r
282                 if ( blockDefinition )\r
283                         CKEDITOR.tools.extend( this, blockDefinition );\r
284 \r
285                 if ( !this.attributes.title )\r
286                         this.attributes.title = this.attributes[ 'aria-label' ];\r
287 \r
288                 this.keys = {};\r
289 \r
290                 this._.focusIndex = -1;\r
291 \r
292                 // Disable context menu for panels.\r
293                 this.element.disableContextMenu();\r
294         },\r
295 \r
296         _ : {\r
297 \r
298                 /**\r
299                  * Mark the item specified by the index as current activated.\r
300                  */\r
301                 markItem: function( index )\r
302                 {\r
303                         if ( index == -1 )\r
304                                 return;\r
305                         var links = this.element.getElementsByTag( 'a' );\r
306                         var item = links.getItem( this._.focusIndex = index );\r
307 \r
308                         // Safari need focus on the iframe window first(#3389), but we need\r
309                         // lock the blur to avoid hiding the panel.\r
310                         if ( CKEDITOR.env.webkit || CKEDITOR.env.opera )\r
311                                 item.getDocument().getWindow().focus();\r
312                         item.focus();\r
313 \r
314                         this.onMark && this.onMark( item );\r
315                 }\r
316         },\r
317 \r
318         proto :\r
319         {\r
320                 show : function()\r
321                 {\r
322                         this.element.setStyle( 'display', '' );\r
323                 },\r
324 \r
325                 hide : function()\r
326                 {\r
327                         if ( !this.onHide || this.onHide.call( this )  !== true )\r
328                                 this.element.setStyle( 'display', 'none' );\r
329                 },\r
330 \r
331                 onKeyDown : function( keystroke )\r
332                 {\r
333                         var keyAction = this.keys[ keystroke ];\r
334                         switch ( keyAction )\r
335                         {\r
336                                 // Move forward.\r
337                                 case 'next' :\r
338                                         var index = this._.focusIndex,\r
339                                                 links = this.element.getElementsByTag( 'a' ),\r
340                                                 link;\r
341 \r
342                                         while ( ( link = links.getItem( ++index ) ) )\r
343                                         {\r
344                                                 // Move the focus only if the element is marked with\r
345                                                 // the _cke_focus and it it's visible (check if it has\r
346                                                 // width).\r
347                                                 if ( link.getAttribute( '_cke_focus' ) && link.$.offsetWidth )\r
348                                                 {\r
349                                                         this._.focusIndex = index;\r
350                                                         link.focus();\r
351                                                         break;\r
352                                                 }\r
353                                         }\r
354                                         return false;\r
355 \r
356                                 // Move backward.\r
357                                 case 'prev' :\r
358                                         index = this._.focusIndex;\r
359                                         links = this.element.getElementsByTag( 'a' );\r
360 \r
361                                         while ( index > 0 && ( link = links.getItem( --index ) ) )\r
362                                         {\r
363                                                 // Move the focus only if the element is marked with\r
364                                                 // the _cke_focus and it it's visible (check if it has\r
365                                                 // width).\r
366                                                 if ( link.getAttribute( '_cke_focus' ) && link.$.offsetWidth )\r
367                                                 {\r
368                                                         this._.focusIndex = index;\r
369                                                         link.focus();\r
370                                                         break;\r
371                                                 }\r
372                                         }\r
373                                         return false;\r
374 \r
375                                 case 'click' :\r
376                                 case 'mouseup' :\r
377                                         index = this._.focusIndex;\r
378                                         link = index >= 0 && this.element.getElementsByTag( 'a' ).getItem( index );\r
379 \r
380                                         if ( link )\r
381                                                 link.$[ keyAction ] ? link.$[ keyAction ]() : link.$[ 'on' + keyAction ]();\r
382 \r
383                                         return false;\r
384                         }\r
385 \r
386                         return true;\r
387                 }\r
388         }\r
389 });\r
390 \r
391 /**\r
392  * Fired when a panel is added to the document\r
393  * @name CKEDITOR#ariaWidget\r
394  * @event\r
395  * @param {Object} holder The element wrapping the panel\r
396  */\r