-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
poweredby.ts
387 lines (326 loc) · 10.8 KB
/
poweredby.ts
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
/**
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* @module ui/editorui/poweredby
*/
import type { Editor, UiConfig } from '@ckeditor/ckeditor5-core';
import {
Rect,
DomEmitterMixin,
findClosestScrollableAncestor,
verifyLicense,
type PositionOptions,
type Locale
} from '@ckeditor/ckeditor5-utils';
import BalloonPanelView from '../panel/balloon/balloonpanelview';
import IconView from '../icon/iconview';
import View from '../view';
import { throttle, type DebouncedFunc } from 'lodash-es';
import poweredByIcon from '../../theme/icons/project-logo.svg';
const ICON_WIDTH = 53;
const ICON_HEIGHT = 10;
// ⚠ Note, whenever changing the threshold, make sure to update the docs/support/managing-ckeditor-logo.md docs
// as this information is also mentioned there ⚠.
const NARROW_ROOT_HEIGHT_THRESHOLD = 50;
const NARROW_ROOT_WIDTH_THRESHOLD = 350;
const DEFAULT_LABEL = 'Powered by';
const OFF_THE_SCREEN_POSITION = {
top: -99999,
left: -99999,
name: 'invalid',
config: {
withArrow: false
}
};
type PoweredByConfig = Required<UiConfig>[ 'poweredBy' ];
/**
* A helper that enables the "powered by" feature in the editor and renders a link to the project's
* webpage next to the bottom of the editable element (editor root, source editing area, etc.) when the editor is focused.
*
* @private
*/
export default class PoweredBy extends DomEmitterMixin() {
/**
* Editor instance the helper was created for.
*/
private readonly editor: Editor;
/**
* A reference to the balloon panel hosting and positioning the "powered by" link and logo.
*/
private _balloonView: BalloonPanelView | null;
/**
* A throttled version of the {@link #_showBalloon} method meant for frequent use to avoid performance loss.
*/
private _showBalloonThrottled: DebouncedFunc<() => void>;
/**
* A reference to the last editable element (root, source editing area, etc.) focused by the user.
* Since the focus can move to other focusable elements in the UI, this reference allows positioning the balloon over the
* right element whether the user is typing or using the UI.
*/
private _lastFocusedEditableElement: HTMLElement | null;
/**
* Creates a "powered by" helper for a given editor. The feature is initialized on Editor#ready
* event.
*
* @param editor
*/
constructor( editor: Editor ) {
super();
this.editor = editor;
this._balloonView = null;
this._lastFocusedEditableElement = null;
this._showBalloonThrottled = throttle( this._showBalloon.bind( this ), 50, { leading: true } );
editor.on( 'ready', this._handleEditorReady.bind( this ) );
}
/**
* Destroys the "powered by" helper along with its view.
*/
public destroy(): void {
const balloon = this._balloonView;
if ( balloon ) {
// Balloon gets destroyed by the body collection.
// The powered by view gets destroyed by the balloon.
balloon.unpin();
this._balloonView = null;
}
this._showBalloonThrottled.cancel();
this.stopListening();
}
/**
* Enables "powered by" label once the editor (ui) is ready.
*/
private _handleEditorReady(): void {
const editor = this.editor;
const forceVisible = !!editor.config.get( 'ui.poweredBy.forceVisible' );
/* istanbul ignore next -- @preserve */
if ( !forceVisible && verifyLicense( editor.config.get( 'licenseKey' ) ) === 'VALID' ) {
return;
}
// No view means no body collection to append the powered by balloon to.
if ( !editor.ui.view ) {
return;
}
editor.ui.focusTracker.on( 'change:isFocused', ( evt, data, isFocused ) => {
this._updateLastFocusedEditableElement();
if ( isFocused ) {
this._showBalloon();
} else {
this._hideBalloon();
}
} );
editor.ui.focusTracker.on( 'change:focusedElement', ( evt, data, focusedElement ) => {
this._updateLastFocusedEditableElement();
if ( focusedElement ) {
this._showBalloon();
}
} );
editor.ui.on( 'update', () => {
this._showBalloonThrottled();
} );
}
/**
* Creates an instance of the {@link module:ui/panel/balloon/balloonpanelview~BalloonPanelView balloon panel}
* with the "powered by" view inside ready for positioning.
*/
private _createBalloonView(): void {
const editor = this.editor;
const balloon = this._balloonView = new BalloonPanelView();
const poweredByConfig = getNormalizedConfig( editor );
const view = new PoweredByView( editor.locale, poweredByConfig.label );
balloon.content.add( view );
balloon.set( {
class: 'ck-powered-by-balloon'
} );
editor.ui.view.body.add( balloon );
editor.ui.focusTracker.add( balloon.element! );
this._balloonView = balloon;
}
/**
* Attempts to display the balloon with the "powered by" view.
*/
private _showBalloon(): void {
if ( !this._lastFocusedEditableElement ) {
return;
}
const attachOptions = getBalloonAttachOptions( this.editor, this._lastFocusedEditableElement );
if ( attachOptions ) {
if ( !this._balloonView ) {
this._createBalloonView();
}
this._balloonView!.pin( attachOptions );
}
}
/**
* Hides the "powered by" balloon if already visible.
*/
private _hideBalloon(): void {
if ( this._balloonView ) {
this._balloonView!.unpin();
}
}
/**
* Updates the {@link #_lastFocusedEditableElement} based on the state of the global focus tracker.
*/
private _updateLastFocusedEditableElement(): void {
const editor = this.editor;
const isFocused = editor.ui.focusTracker.isFocused;
const focusedElement = editor.ui.focusTracker.focusedElement! as HTMLElement;
if ( !isFocused || !focusedElement ) {
this._lastFocusedEditableElement = null;
return;
}
const editableEditorElements = Array.from( editor.ui.getEditableElementsNames() ).map( name => {
return editor.ui.getEditableElement( name );
} );
if ( editableEditorElements.includes( focusedElement ) ) {
this._lastFocusedEditableElement = focusedElement;
} else {
// If it's none of the editable element, then the focus is somewhere in the UI. Let's display powered by
// over the first element then.
this._lastFocusedEditableElement = editableEditorElements[ 0 ]!;
}
}
}
/**
* A view displaying a "powered by" label and project logo wrapped in a link.
*/
class PoweredByView extends View<HTMLDivElement> {
/**
* Created an instance of the "powered by" view.
*
* @param locale The localization services instance.
* @param label The label text.
*/
constructor( locale: Locale, label: string | null ) {
super( locale );
const iconView = new IconView();
const bind = this.bindTemplate;
iconView.set( {
content: poweredByIcon,
isColorInherited: false
} );
iconView.extendTemplate( {
attributes: {
style: {
width: ICON_WIDTH + 'px',
height: ICON_HEIGHT + 'px'
}
}
} );
this.setTemplate( {
tag: 'div',
attributes: {
class: [ 'ck', 'ck-powered-by' ],
'aria-hidden': true
},
children: [
{
tag: 'a',
attributes: {
href: 'https://ckeditor.com/?utm_source=ckeditor&' +
'utm_medium=referral&utm_campaign=701Dn000000hVgmIAE_powered_by_ckeditor_logo',
target: '_blank',
tabindex: '-1'
},
children: [
...label ? [
{
tag: 'span',
attributes: {
class: [ 'ck', 'ck-powered-by__label' ]
},
children: [ label ]
}
] : [],
iconView
],
on: {
dragstart: bind.to( evt => evt.preventDefault() )
}
}
]
} );
}
}
function getBalloonAttachOptions( editor: Editor, focusedEditableElement: HTMLElement ): Partial<PositionOptions> | null {
const poweredByConfig = getNormalizedConfig( editor )!;
const positioningFunction = poweredByConfig.side === 'right' ?
getLowerRightCornerPosition( focusedEditableElement, poweredByConfig ) :
getLowerLeftCornerPosition( focusedEditableElement, poweredByConfig );
return {
target: focusedEditableElement,
positions: [ positioningFunction ]
};
}
function getLowerRightCornerPosition( focusedEditableElement: HTMLElement, config: PoweredByConfig ) {
return getLowerCornerPosition( focusedEditableElement, config, ( rootRect, balloonRect ) => {
return rootRect.left + rootRect.width - balloonRect.width - config.horizontalOffset;
} );
}
function getLowerLeftCornerPosition( focusedEditableElement: HTMLElement, config: PoweredByConfig ) {
return getLowerCornerPosition( focusedEditableElement, config, rootRect => rootRect.left + config.horizontalOffset );
}
function getLowerCornerPosition(
focusedEditableElement: HTMLElement,
config: PoweredByConfig,
getBalloonLeft: ( editableElementRect: Rect, balloonRect: Rect ) => number
) {
return ( editableElementRect: Rect, balloonRect: Rect ) => {
const visibleEditableElementRect = editableElementRect.getVisible();
// Root cropped by ancestors.
if ( !visibleEditableElementRect ) {
return OFF_THE_SCREEN_POSITION;
}
if ( editableElementRect.width < NARROW_ROOT_WIDTH_THRESHOLD || editableElementRect.height < NARROW_ROOT_HEIGHT_THRESHOLD ) {
return OFF_THE_SCREEN_POSITION;
}
let balloonTop;
if ( config.position === 'inside' ) {
balloonTop = editableElementRect.bottom - balloonRect.height;
}
else {
balloonTop = editableElementRect.bottom - balloonRect.height / 2;
}
balloonTop -= config.verticalOffset;
const balloonLeft = getBalloonLeft( editableElementRect, balloonRect );
if ( config.position === 'inside' ) {
const newBalloonRect = balloonRect.clone().moveTo( balloonLeft, balloonTop );
// The watermark cannot be positioned in this corner because the corner is not quite visible.
if ( newBalloonRect.getIntersectionArea( visibleEditableElementRect ) < newBalloonRect.getArea() ) {
return OFF_THE_SCREEN_POSITION;
}
}
else {
const firstScrollableEditableElementAncestor = findClosestScrollableAncestor( focusedEditableElement );
if ( firstScrollableEditableElementAncestor ) {
const firstScrollableEditableElementAncestorRect = new Rect( firstScrollableEditableElementAncestor );
// The watermark cannot be positioned in this corner because the corner is "not visible enough".
if ( visibleEditableElementRect.bottom + balloonRect.height / 2 > firstScrollableEditableElementAncestorRect.bottom ) {
return OFF_THE_SCREEN_POSITION;
}
}
}
return {
top: balloonTop,
left: balloonLeft,
name: `position_${ config.position }-side_${ config.side }`,
config: {
withArrow: false
}
};
};
}
function getNormalizedConfig( editor: Editor ): PoweredByConfig {
const userConfig = editor.config.get( 'ui.poweredBy' );
const position = userConfig && userConfig.position || 'border';
return {
position,
label: DEFAULT_LABEL,
verticalOffset: position === 'inside' ? 5 : 0,
horizontalOffset: 5,
side: editor.locale.contentLanguageDirection === 'ltr' ? 'right' : 'left',
...userConfig
};
}