plugin.js
8.53 KB
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/**
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
/**
* @fileOverview The Auto Grow plugin.
*/
'use strict';
( function() {
CKEDITOR.plugins.add( 'autogrow', {
init: function( editor ) {
// This feature is available only for themed ui instance.
if ( editor.elementMode == CKEDITOR.ELEMENT_MODE_INLINE )
return;
editor.on( 'instanceReady', function() {
// zxt - 20171011 屏蔽 react 中使用ie下不会自动展开
// Simply set auto height with div wysiwyg.
if ( editor.editable().isInline() )
editor.ui.space( 'contents' ).setStyle( 'height', 'auto' );
// For classic (`iframe`-based) wysiwyg we need to resize the editor.
else
// zxt - 20171011
initIframeAutogrow( editor );
} );
}
} );
function initIframeAutogrow( editor ) {
var lastHeight,
doc,
markerContainer,
scrollable,
marker,
configBottomSpace = editor.config.autoGrow_bottomSpace || 0,
configMinHeight = editor.config.autoGrow_minHeight !== undefined ? editor.config.autoGrow_minHeight : 200,
configMaxHeight = editor.config.autoGrow_maxHeight || Infinity,
maxHeightIsUnlimited = !editor.config.autoGrow_maxHeight;
editor.addCommand( 'autogrow', {
exec: resizeEditor,
modes: { wysiwyg: 1 },
readOnly: 1,
canUndo: false,
editorFocus: false
} );
var eventsList = { contentDom: 1, key: 1, selectionChange: 1, insertElement: 1, mode: 1, blur: 1 };
for ( var eventName in eventsList ) {
editor.on( eventName, function( evt ) {
// Some time is required for insertHtml, and it gives other events better performance as well.
if ( evt.editor.mode == 'wysiwyg' ) {
if(evt.data && evt.data.keyCode && evt.data.keyCode !== 13) {
}else{
setTimeout( function() {
if ( isNotResizable() ) {
lastHeight = null;
return;
}
resizeEditor();
// Second pass to make correction upon the first resize, e.g. scrollbar.
// If height is unlimited vertical scrollbar was removed in the first
// resizeEditor() call, so we don't need the second pass.
if ( !maxHeightIsUnlimited )
resizeEditor();
}, 100 );
}
}
} );
}
// Coordinate with the "maximize" plugin. (http://dev.ckeditor.com/ticket/9311)
editor.on( 'afterCommandExec', function( evt ) {
if ( evt.data.name == 'maximize' && evt.editor.mode == 'wysiwyg' ) {
if ( evt.data.command.state == CKEDITOR.TRISTATE_ON )
scrollable.removeStyle( 'overflow-y' );
else
resizeEditor();
}
} );
editor.on( 'contentDom', refreshCache );
refreshCache();
if ( editor.config.autoGrow_onStartup && editor.editable().isVisible() ) {
editor.execCommand( 'autogrow' );
}
function refreshCache() {
doc = editor.document;
markerContainer = doc[ CKEDITOR.env.ie ? 'getBody' : 'getDocumentElement' ]();
// Quirks mode overflows body, standards overflows document element.
scrollable = CKEDITOR.env.quirks ? doc.getBody() : doc.getDocumentElement();
// zxt - 20171012 滚动条闪现问题
if ( maxHeightIsUnlimited)
// chenjm 2019-08-07 最大化的时候移除overflow-y
if (!editor.maximize) {
scrollable.setStyle( 'overflow-y', 'hidden' );
} else {
scrollable.removeStyle( 'overflow-y');
}
// Reset scrollable body height and min-height css values.
// While set by outside code it may break resizing. (http://dev.ckeditor.com/ticket/14620)
var body = CKEDITOR.env.quirks ? scrollable : scrollable.findOne( 'body' );
if ( body ) {
body.setStyle( 'height', 'auto' );
body.setStyle( 'min-height', CKEDITOR.env.safari ? '0%' : 'auto' ); // Safari does not support 'min-height: auto'.
}
marker = CKEDITOR.dom.element.createFromHtml(
'<span style="margin:0;padding:0;border:0;clear:both;width:1px;height:1px;display:block;">' +
( CKEDITOR.env.webkit ? ' ' : '' ) +
'</span>',
doc );
}
function isNotResizable() {
var maximizeCommand = editor.getCommand( 'maximize' );
return (
!editor.window ||
// Disable autogrow when the editor is maximized. (http://dev.ckeditor.com/ticket/6339)
maximizeCommand && maximizeCommand.state == CKEDITOR.TRISTATE_ON
);
}
// Actual content height, figured out by appending check the last element's document position.
function contentHeight() {
// Append a temporary marker element.
markerContainer.append( marker );
var height = marker.getDocumentPosition( doc ).y + marker.$.offsetHeight;
marker.remove();
return height;
}
function resizeEditor() {
// chenjm 2019-12-31 最大化的情况下不进行autogrow计算 - fix: 最大化的情况,切换源码模式高度问题
if (editor.maximize) return;
// Hide scroll because we won't need it at all.
// Thanks to that we'll need only one resizeEditor() call per change.
if ( maxHeightIsUnlimited)
// chenjm 2019-08-07 最大化的时候移除overflow-y
if (!editor.maximize){
scrollable.removeStyle( 'overflow-y' );
} else {
scrollable.setStyle( 'overflow-y', 'hidden' );
}
var currentHeight = editor.window.getViewPaneSize().height,
newHeight = contentHeight();
// Additional space specified by user.
newHeight += configBottomSpace;
newHeight = Math.max( newHeight, configMinHeight );
newHeight = Math.min( newHeight, configMaxHeight );
// http://dev.ckeditor.com/ticket/10196 Do not resize editor if new height is equal
// to the one set by previous resizeEditor() call.
if ( newHeight != currentHeight && lastHeight != newHeight ) {
newHeight = editor.fire( 'autoGrow', { currentHeight: currentHeight, newHeight: newHeight } ).newHeight;
editor.resize( editor.container.getStyle( 'width' ), newHeight, true );
lastHeight = newHeight;
}
if ( !maxHeightIsUnlimited) {
// chenjm 2019-08-07 最大化的时候移除overflow-y
if ( newHeight < configMaxHeight && scrollable.$.scrollHeight > scrollable.$.clientHeight && !editor.maximize) {
scrollable.setStyle( 'overflow-y', 'hidden' );
}
else
scrollable.removeStyle( 'overflow-y' );
}
}
}
} )();
/**
* The minimum height that the editor can assume when adjusting to content by using the Auto Grow
* feature. This option accepts a value in pixels, without the unit (for example: `300`).
*
* Read more in the [documentation](#!/guide/dev_autogrow)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/autogrow.html).
*
* config.autoGrow_minHeight = 300;
*
* @since 3.4
* @cfg {Number} [autoGrow_minHeight=200]
* @member CKEDITOR.config
*/
/**
* The maximum height that the editor can assume when adjusting to content by using the Auto Grow
* feature. This option accepts a value in pixels, without the unit (for example: `600`).
* Zero (`0`) means that the maximum height is not limited and the editor will expand infinitely.
*
* Read more in the [documentation](#!/guide/dev_autogrow)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/autogrow.html).
*
* config.autoGrow_maxHeight = 400;
*
* @since 3.4
* @cfg {Number} [autoGrow_maxHeight=0]
* @member CKEDITOR.config
*/
/**
* Whether automatic editor height adjustment brought by the Auto Grow feature should happen on
* editor creation.
*
* Read more in the [documentation](#!/guide/dev_autogrow)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/autogrow.html).
*
* config.autoGrow_onStartup = true;
*
* @since 3.6.2
* @cfg {Boolean} [autoGrow_onStartup=false]
* @member CKEDITOR.config
*/
/**
* Extra vertical space to be added between the content and the editor bottom bar when adjusting
* editor height to content by using the Auto Grow feature. This option accepts a value in pixels,
* without the unit (for example: `50`).
*
* Read more in the [documentation](#!/guide/dev_autogrow)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/autogrow.html).
*
* config.autoGrow_bottomSpace = 50;
*
* @since 3.6.2
* @cfg {Number} [autoGrow_bottomSpace=0]
* @member CKEDITOR.config
*/
/**
* Fired when the Auto Grow plugin is about to change the size of the editor.
*
* @event autogrow
* @member CKEDITOR.editor
* @param {CKEDITOR.editor} editor This editor instance.
* @param data
* @param {Number} data.currentHeight The current editor height (before resizing).
* @param {Number} data.newHeight The new editor height (after resizing). It can be changed
* to achieve a different height value to be used instead.
*/