-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathrightMenu.js
60 lines (59 loc) · 1.98 KB
/
rightMenu.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
import { h, init } from 'snabbdom'
var patch = init([
require('snabbdom/modules/class').default,
require('snabbdom/modules/props').default,
require('snabbdom/modules/style').default,
require('snabbdom/modules/eventlisteners').default,
]);
import { symbolAttr } from '~/config'
import rightClickEvent from '~/event/rightClickEvent'
export default function(left, top, menu = []) {
let options = this.config
const defaultList = [
{name: '复制', value: 'copy'},
{name: '粘贴', value: 'paste'},
{name: '粘贴到前', value: 'paste_before'},
{name: '粘贴到后', value: 'paste_after'},
{name: '剪贴', value: 'cut_paste'},
{name: '编辑', value: 'edit'},
{name: '删除', value: 'remove'},
{name: '添加到子', value: 'add_child'},
{name: '添加到前', value: 'add_before'},
{name: '添加到后', value: 'add_after'},
]
const menuList = menu.map(v=>{
let obj = {}
if(typeof v === 'string'){
let l = defaultList.filter(item=>item.value===v)[0]
if(l) {
obj = l
}else{
obj.name = v
obj.value = v
}
}else{
obj = v
}
return obj
})
let oldNode = this.rightMenuNode
if(!oldNode){
oldNode = document.createElement('div')
document.body.appendChild(oldNode)
}
this.rightMenuNode = h(`ul.eleTree-menu.menu-${this.customIndex}`, {
style: {
display: this.isShowRightMenu ? 'block' : 'none',
left: left + 'px',
top: top + 'px',
}
}, menuList.map(v=>{
return h('li', {
style: (v.value === 'paste' || v.value === 'paste_before' || v.value === 'paste_after') && !this.rightMenuPasteData ? {color: '#ccc'} : {},
on: {
click: [rightClickEvent, this, v]
}
}, v.name)
}))
patch(oldNode, this.rightMenuNode)
}