forked from JiHong88/suneditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblockquote.js
More file actions
55 lines (47 loc) · 1.23 KB
/
blockquote.js
File metadata and controls
55 lines (47 loc) · 1.23 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
import { PluginCommand } from '../../interfaces';
import { dom } from '../../helper';
/**
* @class
* @description Blockquote plugin
*/
class Blockquote extends PluginCommand {
static key = 'blockquote';
static className = '';
/**
* @constructor
* @param {SunEditor.Kernel} kernel - The Kernel instance
*/
constructor(kernel) {
super(kernel);
// plugin basic properties
this.title = this.$.lang.tag_blockquote;
this.icon = 'blockquote';
// members
this.quoteTag = dom.utils.createElement('BLOCKQUOTE');
}
/**
* @hook Editor.EventManager
* @type {SunEditor.Hook.Event.Active}
*/
active(element, target) {
if (/blockquote/i.test(element?.nodeName)) {
dom.utils.addClass(target, 'active');
return true;
}
dom.utils.removeClass(target, 'active');
return false;
}
/**
* @override
* @type {PluginCommand['action']}
*/
action() {
const currentBlockquote = dom.query.getParentElement(this.$.selection.getNode(), 'blockquote');
if (currentBlockquote) {
this.$.format.removeBlock(currentBlockquote, { selectedFormats: null, newBlockElement: null, shouldDelete: false, skipHistory: false });
} else {
this.$.format.applyBlock(this.quoteTag.cloneNode(false));
}
}
}
export default Blockquote;