File size: 7,501 Bytes
04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 04001f7 3fe7ea8 |
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
module.exports = function (eruda) {
// eruda の util を使う(必要ならここで require にフォールバックできます)
const { evalCss } = eruda.util
const each = eruda.util.each
const $ = eruda.util.$
const toArr = eruda.util.toArr
class Dom extends eruda.Tool {
constructor() {
super()
this.name = 'dom'
this.displayName = 'ドム'
this._style = evalCss(require('./style.scss'))
this._isInit = false
this._htmlTagTpl = require('./htmlTag.hbs')
this._textNodeTpl = require('./textNode.hbs')
this._selectedEl = document.documentElement
this._htmlCommentTpl = require('./htmlComment.hbs')
this._elementChangeHandler = (el) => {
if (this._selectedEl === el) return
this.select(el)
}
}
init($el, container) {
super.init($el)
this._container = container
this._eruda = eruda // 明示的に eruda を保持
$el.html(require('./template.hbs')())
this._$domTree = $el.find('.eruda-dom-tree')
this._bindEvent()
}
show() {
super.show()
if (!this._isInit) this._initTree()
}
hide() {
super.hide()
}
select(el) {
const els = []
els.push(el)
while (el.parentElement) {
els.unshift(el.parentElement)
el = el.parentElement
}
while (els.length > 0) {
el = els.shift()
const erudaDom = el.erudaDom
if (erudaDom) {
if (erudaDom.close && erudaDom.open) {
erudaDom.close()
erudaDom.open()
}
} else {
break
}
if (els.length === 0 && el.erudaDom) {
el.erudaDom.select()
}
}
}
destroy() {
super.destroy()
evalCss.remove(this._style)
const elements = this._eruda.get('elements')
if (elements && elements.off) {
elements.off('change', this._elementChangeHandler)
}
}
_bindEvent() {
const elements = this._eruda.get('elements')
if (elements && elements.on) {
elements.on('change', this._elementChangeHandler)
}
this._$el.on('click', '.eruda-inspect', () => {
this._setElement(this._selectedEl)
// container.showTool -> eruda.showTool に変更(確実に eruda のメソッドを使う)
if (elements) this._eruda.showTool('elements')
})
}
_setElement(el) {
const elements = this._eruda.get('elements')
if (!elements || typeof elements.set !== 'function') return
elements.set(el)
}
_initTree() {
this._isInit = true
this._renderChildren(null, this._$domTree)
this.select(document.body)
}
_renderChildren(node, $container) {
let children
if (!node) {
children = [document.documentElement]
} else {
children = toArr(node.childNodes)
}
const container = $container.get(0)
if (node) {
children.push({
nodeType: 'END_TAG',
node
})
}
each(children, (child) => this._renderChild(child, container))
}
_renderChild(child, container) {
const $tag = createEl('li')
let isEndTag = false
$tag.addClass('eruda-tree-item')
// ノードタイプ判定はグローバル Node 定数を使う
if (child.nodeType === Node.ELEMENT_NODE) {
const childCount = child.childNodes.length
const expandable = childCount > 0
const data = {
...getHtmlTagData(child),
hasTail: expandable
}
const hasOneTextNode =
childCount === 1 && child.childNodes[0].nodeType === Node.TEXT_NODE
if (hasOneTextNode) {
data.text = child.childNodes[0].nodeValue
}
$tag.html(this._htmlTagTpl(data))
if (expandable && !hasOneTextNode) {
$tag.addClass('eruda-expandable')
}
} else if (child.nodeType === Node.TEXT_NODE) {
const value = child.nodeValue
if (value.trim() === '') return
$tag.html(
this._textNodeTpl({
value
})
)
} else if (child.nodeType === Node.COMMENT_NODE) {
const value = child.nodeValue
if (value.trim() === '') return
$tag.html(
this._htmlCommentTpl({
value
})
)
} else if (child.nodeType === 'END_TAG') {
isEndTag = true
child = child.node
$tag.html(
`<span class="eruda-html-tag" style="margin-left: -12px;"><<span class="eruda-tag-name">/${child.tagName.toLowerCase()}</span>></span><span class="eruda-selection"></span>`
)
} else {
return
}
const $children = createEl('ul')
$children.addClass('eruda-children')
container.appendChild($tag.get(0))
container.appendChild($children.get(0))
if (child.nodeType !== Node.ELEMENT_NODE) return
let erudaDom = {}
if ($tag.hasClass('eruda-expandable')) {
const open = () => {
$tag.html(
this._htmlTagTpl({
...getHtmlTagData(child),
hasTail: false
})
)
$tag.addClass('eruda-expanded')
this._renderChildren(child, $children)
}
const close = () => {
$children.html('')
$tag.html(
this._htmlTagTpl({
...getHtmlTagData(child),
hasTail: true
})
)
$tag.rmClass && $tag.rmClass('eruda-expanded')
// rmClass が無ければ代替で removeClass を試す
if ($tag.removeClass && !$tag.rmClass) $tag.removeClass('eruda-expanded')
}
const toggle = () => {
if ($tag.hasClass('eruda-expanded')) {
close()
} else {
open()
}
}
$tag.on('click', '.eruda-toggle-btn', (e) => {
e.stopPropagation()
toggle()
})
erudaDom = {
open,
close
}
}
const select = () => {
// rmClass が無ければ代替実装
const $sel = this._$el.find('.eruda-selected')
if ($sel && $sel.rmClass) $sel.rmClass('eruda-selected')
else if ($sel && $sel.removeClass) $sel.removeClass('eruda-selected')
$tag.addClass('eruda-selected')
this._selectedEl = child
this._setElement(child)
}
$tag.on('click', select)
erudaDom.select = select
if (!isEndTag) child.erudaDom = erudaDom
}
}
function getHtmlTagData(el) {
const ret = {}
ret.tagName = el.tagName.toLowerCase()
const attributes = []
each(el.attributes, (attribute) => {
const { name, value } = attribute
attributes.push({
name,
value,
underline: isUrlAttribute(el, name)
})
})
ret.attributes = attributes
return ret
}
function isUrlAttribute(el, name) {
const tagName = el.tagName
// 正しいタグ名 (例: IMG) をチェック
if (
tagName === 'SCRIPT' ||
tagName === 'IMG' ||
tagName === 'VIDEO' ||
tagName === 'AUDIO'
) {
if (name === 'src') return true
}
if (tagName === 'LINK') {
if (name === 'href') return true
}
return false
}
function createEl(name) {
// eruda.util.$ が使える想定
return $(document.createElement(name))
}
return new Dom()
}
|