1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
/**
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
/**
* @fileOverview Plugin for making iframe based dialogs.
*/
CKEDITOR.plugins.add( 'iframedialog', {
requires: 'dialog',
onLoad: function() {
/**
* An iframe base dialog.
*
* @static
* @member CKEDITOR.dialog
* @param {String} name Name of the dialog.
* @param {String} title Title of the dialog.
* @param {Number} minWidth Minimum width of the dialog.
* @param {Number} minHeight Minimum height of the dialog.
* @param {Function} [onContentLoad] Function called when the iframe has been loaded.
* If it isn't specified, the inner frame is notified of the dialog events (`'load'`,
* `'resize'`, `'ok'` and `'cancel'`) on a function called `'onDialogEvent'`.
* @param {Object} [userDefinition] Additional properties for the dialog definition.
*/
CKEDITOR.dialog.addIframe = function( name, title, src, minWidth, minHeight, onContentLoad, userDefinition ) {
var element = {
type: 'iframe',
src: src,
width: '100%',
height: '100%'
};
if ( typeof( onContentLoad ) == 'function' )
element.onContentLoad = onContentLoad;
else
element.onContentLoad = function() {
var element = this.getElement(),
childWindow = element.$.contentWindow;
// If the inner frame has defined a "onDialogEvent" function, setup listeners
if ( childWindow.onDialogEvent ) {
var dialog = this.getDialog(),
notifyEvent = function( e ) {
return childWindow.onDialogEvent( e );
};
dialog.on( 'ok', notifyEvent );
dialog.on( 'cancel', notifyEvent );
dialog.on( 'resize', notifyEvent );
// Clear listeners
dialog.on( 'hide', function( e ) {
dialog.removeListener( 'ok', notifyEvent );
dialog.removeListener( 'cancel', notifyEvent );
dialog.removeListener( 'resize', notifyEvent );
e.removeListener();
} );
// Notify child iframe of load:
childWindow.onDialogEvent( {
name: 'load',
sender: this,
editor: dialog._.editor
} );
}
};
var definition = {
title: title,
minWidth: minWidth,
minHeight: minHeight,
contents: [
{
id: 'iframe',
label: title,
expand: true,
elements: [ element ],
style: 'width:' + element.width + ';height:' + element.height
}
]
};
for ( var i in userDefinition )
definition[ i ] = userDefinition[ i ];
this.add( name, function() {
return definition;
} );
};
( function() {
/**
* An iframe element.
*
* @class CKEDITOR.ui.dialog.iframeElement
* @extends CKEDITOR.ui.dialog.uiElement
* @constructor
* @private
* @param {CKEDITOR.dialog} dialog Parent dialog object.
* @param {CKEDITOR.dialog.definition.uiElement} elementDefinition
* The element definition. Accepted fields:
*
* * `src` (Required) The src field of the iframe.
* * `width` (Required) The iframe's width.
* * `height` (Required) The iframe's height.
* * `onContentLoad` (Optional) A function to be executed
* after the iframe's contents has finished loading.
*
* @param {Array} htmlList List of HTML code to output to.
*/
var iframeElement = function( dialog, elementDefinition, htmlList ) {
if ( arguments.length < 3 )
return;
var _ = ( this._ || ( this._ = {} ) ),
contentLoad = elementDefinition.onContentLoad && CKEDITOR.tools.bind( elementDefinition.onContentLoad, this ),
cssWidth = CKEDITOR.tools.cssLength( elementDefinition.width ),
cssHeight = CKEDITOR.tools.cssLength( elementDefinition.height );
_.frameId = CKEDITOR.tools.getNextId() + '_iframe';
// IE BUG: Parent container does not resize to contain the iframe automatically.
dialog.on( 'load', function() {
var iframe = CKEDITOR.document.getById( _.frameId ),
parentContainer = iframe.getParent();
parentContainer.setStyles( {
width: cssWidth,
height: cssHeight
} );
} );
var attributes = {
src: '%2',
id: _.frameId,
frameborder: 0,
allowtransparency: true
};
var myHtml = [];
if ( typeof( elementDefinition.onContentLoad ) == 'function' )
attributes.onload = 'CKEDITOR.tools.callFunction(%1);';
CKEDITOR.ui.dialog.uiElement.call( this, dialog, elementDefinition, myHtml, 'iframe', {
width: cssWidth,
height: cssHeight
}, attributes, '' );
// Put a placeholder for the first time.
htmlList.push( '<div style="width:' + cssWidth + ';height:' + cssHeight + ';" id="' + this.domId + '"></div>' );
// Iframe elements should be refreshed whenever it is shown.
myHtml = myHtml.join( '' );
dialog.on( 'show', function() {
var iframe = CKEDITOR.document.getById( _.frameId ),
parentContainer = iframe.getParent(),
callIndex = CKEDITOR.tools.addFunction( contentLoad ),
html = myHtml.replace( '%1', callIndex ).replace( '%2', CKEDITOR.tools.htmlEncode( elementDefinition.src ) );
parentContainer.setHtml( html );
} );
};
iframeElement.prototype = new CKEDITOR.ui.dialog.uiElement;
CKEDITOR.dialog.addUIElement( 'iframe', {
build: function( dialog, elementDefinition, output ) {
return new iframeElement( dialog, elementDefinition, output );
}
} );
} )();
}
} );
|