-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathtitleVnode.js
36 lines (36 loc) · 1.33 KB
/
titleVnode.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
import iconVnode from '~/vnode/iconVnode'
import dropdownVnode from '~/vnode/dropdownVnode'
import checkboxVnode from '~/vnode/checkboxVnode'
import radioVnode from '~/vnode/radioVnode'
import textVnode from '~/vnode/textVnode'
import lineHorizontal from '~/vnode/lineHorizontal'
import nodeClick from '~/event/nodeClick'
import rightClick from '~/event/rightClick'
import { mousedown, mouseup } from '~/event/drag'
import { h } from 'snabbdom'
export default function(v, isFirst) {
let options = this.config
let {name, key, isOpen, checked, children, disabled, isLeaf} = options.request
let nodeStr = 'div.eleTree-title'
// 初始高亮选中
if(v[key] === options.highlightNode) {
nodeStr+='.eleTree-title-active'
setTimeout(() => this.activeElm = document.querySelector(`${options.el} ${nodeStr}`), 0);
}
return h(nodeStr, {
on: {
click: [nodeClick, this, v],
contextmenu: [rightClick, this, v],
mousedown: options.draggable ? [mousedown, this, v] : null,
mouseup: options.draggable ? [mouseup, this, v] : null,
}
},
[
lineHorizontal.call(this, isFirst),
dropdownVnode.call(this, v),
checkboxVnode.call(this, v),
radioVnode.call(this, v),
iconVnode.call(this, v),
textVnode.call(this, v)
])
}