wzp
2021-07-19 58ec6ffd2dc6a3e490e28026dd559352678a273d
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
/*
    menu - Forecolor
*/
import $ from '../../util/dom-core.js'
import DropList from '../droplist.js'
 
// 构造函数
function ForeColor(editor) {
    this.editor = editor
    this.$elem = $('<div class="w-e-menu"><i class="w-e-icon-pencil2"></i></div>')
    this.type = 'droplist'
 
    // 获取配置的颜色
    const config = editor.config
    const colors = config.colors || []
 
    // 当前是否 active 状态
    this._active = false
 
    // 初始化 droplist
    this.droplist = new DropList(this, {
        width: 120,
        $title: $('<p>文字颜色</p>'),
        type: 'inline-block', // droplist 内容以 block 形式展示
        list: colors.map(color => {
            return { $elem: $(`<i style="color:${color};" class="w-e-icon-pencil2"></i>`), value: color }
        }),
        onClick: (value) => {
            // 注意 this 是指向当前的 ForeColor 对象
            this._command(value)
        }
    })
}
 
// 原型
ForeColor.prototype = {
    constructor: ForeColor,
 
    // 执行命令
    _command: function (value) {
        const editor = this.editor
        editor.cmd.do('foreColor', value)
    }
}
 
export default ForeColor