wzp
2021-09-01 2891fe0769189be39c9634b2cbc1841dbd52d022
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
/*
    strikeThrough-menu
*/
import $ from '../../util/dom-core.js'
 
// 构造函数
function StrikeThrough(editor) {
    this.editor = editor
    this.$elem = $(
        `<div class="w-e-menu">
            <i class="w-e-icon-strikethrough"></i>
        </div>`
    )
    this.type = 'click'
 
    // 当前是否 active 状态
    this._active = false
}
 
// 原型
StrikeThrough.prototype = {
    constructor: StrikeThrough,
 
    // 点击事件
    onClick: function (e) {
        // 点击菜单将触发这里
        
        const editor = this.editor
        const isSeleEmpty = editor.selection.isSelectionEmpty()
 
        if (isSeleEmpty) {
            // 选区是空的,插入并选中一个“空白”
            editor.selection.createEmptyRange()
        }
 
        // 执行 strikeThrough 命令
        editor.cmd.do('strikeThrough')
 
        if (isSeleEmpty) {
            // 需要将选取折叠起来
            editor.selection.collapseRange()
            editor.selection.restoreSelection()
        }
    },
 
    // 试图改变 active 状态
    tryChangeActive: function (e) {
        const editor = this.editor
        const $elem = this.$elem
        if (editor.cmd.queryCommandState('strikeThrough')) {
            this._active = true
            $elem.addClass('w-e-active')
        } else {
            this._active = false
            $elem.removeClass('w-e-active')
        }
    }
}
 
export default StrikeThrough