-
Notifications
You must be signed in to change notification settings - Fork 18
/
plugin.js
233 lines (203 loc) · 7.19 KB
/
plugin.js
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
/**
* Plugin inserting Slide Shows elements into CKEditor editing area.
*
* Created out of the CKEditor Plugin SDK:
* http://docs.ckeditor.com/#!/guide/plugin_sdk_sample_1
*
* Copyright (c) 2003-2013, Cricri042. All rights reserved.
* Targeted for "ad-gallery" JavaScript : http://adgallery.codeplex.com/
* And "Fancybox" : http://fancyapps.com/fancybox/
*
*/
// Register the plugin within the editor.
( function() {
if (!window.console) console = {log: function() {}};
if (!Array.prototype.forEach) {
Array.prototype.forEach = function (fn, scope) {
'use strict';
var i, len;
for (i = 0, len = this.length; i < len; ++i) {
if (i in this) {
fn.call(scope, this[i], i, this);
}
}
};
}
CKEDITOR.plugins.add( 'slideshow', {
// Translations, available at the end of this file, without extra requests
//lang : [ 'en', 'fr' ],
requires: 'contextmenu,fakeobjects',
lang: 'en,de,fr,ru,el,sr,sr-latn,pt,pt-br,uk',
getSlideShowDialogCss : function()
{
return 'img.cke_slideShow' +
'{' +
'background-image: url(' + CKEDITOR.getUrl( this.path + 'images/placeholder.png' ) + ');' +
'background-position: center center;' +
'background-repeat: no-repeat;' +
'background-color:Azure;'+
'border: 1px solid #a9a9a9;' +
'width: 100px;' +
'height:100px;' +
'margin: 5px;' +
'}';
},
// Register the icons.
icons: 'slideshow',
onLoad : function()
{
// v4
if (CKEDITOR.addCss)
CKEDITOR.addCss( this.getSlideShowDialogCss() );
},
// The plugin initialization logic goes inside this method.
init: function( editor ) {
var lang = editor.lang.slideshow;
// Check for CKEditor 3.5
if (typeof editor.element.data == 'undefined')
{
alert('The "Slide Show" plugin requires CKEditor 3.5 or newer');
return;
}
allowed = '';
allowed += ' html head title; style [media,type]; body (*)[id]; meta link [*]',
allowed += '; img[*]{*}(*)';
allowed += '; div[*]{*}(*)';
allowed += '; script[*]{*}(*)';
allowed += '; ul[*]{*}(*)';
allowed += '; li[*]{*}(*)';
// Register the command.
editor.addCommand( 'slideshow', new CKEDITOR.dialogCommand( 'slideshowDialog', {
allowedContent: allowed,
requires: ['fakeobjects']
} ) );
// Create a toolbar button that executes the above command.
editor.ui.addButton( 'Slideshow', {
// The text part of the button (if available) and tooptip.
label: lang.insertSlideShow,
command: 'slideshow',
// The button placement in the toolbar (toolbar group name).
toolbar: 'insert',
icon: this.path + 'icons/slideshow.png'
});
editor.on( 'load', function( evt ) {
});
editor.on( 'doubleclick', function( evt )
{
var element = evt.data.element;
if ( element.is( 'img' ) && element.data( 'cke-real-element-type' ) == 'slideShow' )
evt.data.dialog = 'slideshowDialog';
});
editor.on( 'instanceReady', function() {
//console.log('START --------------------------');
//console.log( editor.filter.allowedContent );
//console.log('END ----------------------------');
} );
// CKEDITOR.on('instanceReady', function(event) {
// event.editor.on('dialogShow', function(dialogShowEvent) {
// if(CKEDITOR.env.ie) {
//// $(dialogShowEvent.data. "_" .element.$).find('a[href*="void(0)"]').removeAttr('href');
// }
// });
// });
if ( editor.contextMenu ) {
editor.addMenuGroup( 'slideshowGroup' );
editor.addMenuItem( 'slideshowItem', {
label: lang.editSlideShow,
icon: this.path + 'icons/slideshow.png',
command: 'slideshow',
group: 'slideshowGroup'
});
editor.contextMenu.addListener( function( element, selection )
{
if ( element && element.is( 'img' ) && !element.isReadOnly()
&& element.data( 'cke-real-element-type' ) == 'slideShow' ) {
//if ( element && element.is( 'img' ) && element.data( 'cke-real-element-type' ) == 'slideShow' ) {
editor.contextMenu.removeAll(); // this line removes all entries from the context menu
return { slideshowItem : CKEDITOR.TRISTATE_OFF };
} else {
return null;
}
});
}
// Register our dialog file. this.path is the plugin folder path.
// CKEDITOR.dialog.add( 'slideshowDialog', this.path + 'dialogs/slideshow.js' );
CKEDITOR.dialog.add( 'slideshowDialog', this.path + 'dialogs/slideshow.min.js' );
// v3
if (editor.addCss)
editor.addCss( this.getSlideShowDialogCss() );
// Add special handling for these items
CKEDITOR.dtd.$empty['cke:source']=1;
CKEDITOR.dtd.$empty['source']=1;
editor.lang.fakeobjects.slideShow = lang.fakeObject;
}, // Init
afterInit: function( editor )
{
var dataProcessor = editor.dataProcessor,
htmlFilter = dataProcessor && dataProcessor.htmlFilter,
dataFilter = dataProcessor && dataProcessor.dataFilter;
if ( dataFilter ) {
dataFilter.addRules({
elements: {
div : function( realElement )
{
if (realElement.attributes['class'] == 'slideshowPlugin') {
//alert("dataFilter : " + realElement.attributes['class']);
var fakeElement = editor.createFakeParserElement( realElement, 'cke_slideShow', 'slideShow', false ),
fakeStyle = fakeElement.attributes.style || '';
var imgSrc = CKEDITOR.getUrl('plugins/slideshow/images/placeholder.png' );
var foundOne = false;
Array.prototype.forEach.call(realElement, function( node ) {
//console.log( "---------> " + node.name );
if (node.name == 'img') {
if (!foundOne) {
//console.log( node );
imgSrc = node.attributes.src;
foundOne = true;
}
}
} );
//fakeStyle = fakeElement.attributes.style = fakeStyle + ' background-image:url("' + imgSrc + '"); ';
//fakeStyle = fakeElement.attributes.style = fakeStyle + ' background-size:50%; ';
//fakeStyle = fakeElement.attributes.style = fakeStyle + ' display:block; ';
//console.log( fakeStyle );
fakeStyle = fakeElement.attributes.style = fakeStyle + ' background-image:url("' + imgSrc + '"); ';
fakeStyle = fakeElement.attributes.style = fakeStyle + ' background-size:contain; ';
fakeStyle = fakeElement.attributes.style = fakeStyle + ' background-repeat:no-repeat; ';
fakeStyle = fakeElement.attributes.style = fakeStyle + ' background-position:center; ';
fakeStyle = fakeElement.attributes.style = fakeStyle + ' width:64px; ';
fakeStyle = fakeElement.attributes.style = fakeStyle + ' height:64px; ';
fakeStyle = fakeElement.attributes.style = fakeStyle + ' display:block; ';
fakeStyle = fakeElement.attributes.style = fakeStyle + ' border:1px solid black; ';
return fakeElement;
}
}
}
}, { priority: 5, applyToAll: true });
}
if ( htmlFilter ) {
htmlFilter.addRules({
elements: {
$ : function( realElement )
{
}
}
});
}
} // afterInit
});
// v3
if (CKEDITOR.skins)
{
en = { slideshow : en} ;
fr = { slideshow : fr} ;
ru = { slideshow : ru} ;
pt = { slideshow : pt} ;
el = { slideshow : el} ;
sr = { slideshow : sr} ;
uk = { slideshow : uk} ;
}
// Translations
//CKEDITOR.plugins.setLang( 'slideshow', 'fr', fr );
//CKEDITOR.plugins.setLang( 'slideshow', 'en', en );
})();