Showing property documentation when hovering in code in addition to clicking on palette entries.

This commit is contained in:
Nick Winter 2014-02-23 16:34:03 -08:00
parent 68497b2cf3
commit 933bcf9e6b
2 changed files with 23 additions and 3 deletions

View file

@ -21,6 +21,7 @@ module.exports = class DebugView extends View
@ace = options.ace
@thang = options.thang
@variableStates = {}
@onMouseMove = _.throttle @onMouseMove, 25
afterRender: ->
super()
@ -30,10 +31,11 @@ module.exports = class DebugView extends View
@update()
onMouseMove: (e) =>
return if @destroyed
pos = e.getDocumentPosition()
endOfDoc = pos.row is @ace.getSession().getDocument().getLength() - 1
it = new TokenIterator e.editor.session, pos.row, pos.column
isIdentifier = (t) -> t and (t.type is 'identifier' or t.value is 'this')
isIdentifier = (t) -> t and (t.type is 'identifier' or t.value is 'this' or window[t.value])
while it.getCurrentTokenRow() is pos.row and not isIdentifier(token = it.getCurrentToken())
it.stepBackward()
break unless token
@ -52,7 +54,7 @@ module.exports = class DebugView extends View
token = prev
start = it.getCurrentTokenColumn()
chain.unshift token.value
if token and (token.value of @variableStates or token.value is "this")
if token and (token.value of @variableStates or token.value is "this" or window[token.value])
@variableChain = chain
offsetX = e.domEvent.offsetX ? e.clientX - $(e.domEvent.target).offset().left
offsetY = e.domEvent.offsetY ? e.clientY - $(e.domEvent.target).offset().top
@ -76,6 +78,10 @@ module.exports = class DebugView extends View
@$el.show().css(@pos)
else
@$el.hide()
if @variableChain?.length is 2
Backbone.Mediator.publish 'tome:spell-debug-property-hovered', property: @variableChain[1], owner: @variableChain[0]
else
Backbone.Mediator.publish 'tome:spell-debug-property-hovered', property: null
@updateMarker()
updateMarker: ->
@ -124,8 +130,11 @@ module.exports = class DebugView extends View
for prop, i in chain
if prop is "this"
value = @thang
else if i is 0
value = @variableStates[prop]
if typeof value is "undefined" then value = window[prop]
else
value = (if i is 0 then @variableStates else value)[prop]
value = value[prop]
keys.push prop
break unless value
if theClass = serializedClasses[value.CN]

View file

@ -66,6 +66,7 @@ module.exports = class SpellPaletteEntryView extends View
'surface:frame-changed': "onFrameChanged"
'tome:palette-hovered': "onPaletteHovered"
'tome:palette-pin-toggled': "onPalettePinToggled"
'tome:spell-debug-property-hovered': 'onSpellDebugPropertyHovered'
events:
'mouseenter': 'onMouseEnter'
@ -188,6 +189,16 @@ module.exports = class SpellPaletteEntryView extends View
return if e.entry is @
@otherPopoverPinned = e.pinned
onSpellDebugPropertyHovered: (e) ->
matched = e.property is @doc.name and e.owner is @doc.owner
if matched and not @debugHovered
@debugHovered = true
@togglePinned() unless @popoverPinned
else if @debugHovered and not matched
@debugHovered = false
@togglePinned() if @popoverPinned
null
destroy: ->
$('.popover.pinned').remove() if @popoverPinned # @$el.popover('destroy') doesn't work
@togglePinned() if @popoverPinned