trigger click from treeview

pull/1/head
yann300 7 years ago
parent c2cf8ae21e
commit 5f3deeb144
  1. 32
      remix-debugger/src/ui/TreeView.js

@ -25,9 +25,14 @@ var css = csjs`
width: 10px;
}
`
var remixLib = require('remix-lib')
var EventManager = remixLib.EventManager
class TreeView {
constructor (opts) {
this.event = new EventManager()
this.extractData = opts.extractData || this.extractDataDefault
this.formatSelf = opts.formatSelf || this.formatSelfDefault
this.view = null
@ -51,7 +56,7 @@ class TreeView {
renderObject (item, parent, key, expand, keyPath) {
var data = this.extractData(item, parent, key)
var children = (data.children || []).map((child, index) => {
return this.renderObject(child.value, data, child.key, expand, keyPath + ',' + child.key)
return this.renderObject(child.value, data, child.key, expand, keyPath + '/' + child.key)
})
return this.formatData(key, data, children, expand, keyPath)
}
@ -64,12 +69,13 @@ class TreeView {
}
formatData (key, data, children, expand, keyPath) {
var label = yo`<div class="${css.label_tv}"><div class="fa fa-caret-right" class="${css.caret_tv}"></div><span>${this.formatSelf(key, data)}</span></div>`
var renderedChildren = ''
if (children.length) {
renderedChildren = yo`<ul class="${css.ul_tv}">${children}</ul>`
var label = yo`<div class=${css.label_tv}><div class="fa fa-caret-right" class=${css.caret_tv}></div><span>${this.formatSelf(key, data)}</span></div>`
var renderedChildren = null
if (data.isNode || children.length) {
renderedChildren = yo`<ul class=${this.ul_tv}>${children}</ul>`
renderedChildren.style.display = this.nodeIsExpanded[keyPath] !== undefined ? (this.nodeIsExpanded[keyPath] ? 'block' : 'none') : (expand ? 'block' : 'none')
label.firstElementChild.className = renderedChildren.style.display === 'none' ? 'fa fa-caret-right' : 'fa fa-caret-down'
if (children.length) {
var self = this
label.onclick = function () {
this.firstElementChild.className = this.firstElementChild.className === 'fa fa-caret-right' ? 'fa fa-caret-down' : 'fa fa-caret-right'
@ -77,10 +83,18 @@ class TreeView {
list.style.display = list.style.display === 'none' ? 'block' : 'none'
self.nodeIsExpanded[keyPath] = list.style.display === 'block'
}
} else {
label.onclick = () => {
this.event.trigger('nodeClick', [keyPath, renderedChildren])
}
}
} else {
label.firstElementChild.style.visibility = 'hidden'
label.onclick = () => {
this.event.trigger('leafClick', [keyPath, renderedChildren])
}
}
return yo`<li class="${css.li_tv}">${label}${renderedChildren}</li>`
return yo`<li class=${css.li_tv}>${label}${renderedChildren}</li>`
}
formatSelfDefault (key, data) {
@ -94,14 +108,20 @@ class TreeView {
return {key: index, value: item}
})
ret.self = 'Array'
ret.isNode = true
ret.isLeaf = false
} else if (item instanceof Object) {
ret.children = Object.keys(item).map((key) => {
return {key: key, value: item[key]}
})
ret.self = 'Object'
ret.isNode = true
ret.isLeaf = false
} else {
ret.self = item
ret.children = []
ret.isNode = false
ret.isLeaf = true
}
return ret
}

Loading…
Cancel
Save