mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-28 15:03:57 -04:00
Updates for formatting palette docs.
This commit is contained in:
parent
ccbb521b59
commit
aa282c3a35
3 changed files with 42 additions and 3 deletions
app
styles/play/level/tome
templates/play/level/tome
views/play/level/tome
|
@ -33,3 +33,6 @@
|
||||||
&.right .arrow
|
&.right .arrow
|
||||||
left: -3%
|
left: -3%
|
||||||
|
|
||||||
|
pre
|
||||||
|
display: inline-block
|
||||||
|
padding: 5px
|
||||||
|
|
|
@ -20,7 +20,8 @@ else if doc.type == 'function'
|
||||||
if doc.type != 'function' && doc.type != 'snippet'
|
if doc.type != 'function' && doc.type != 'snippet'
|
||||||
p.value
|
p.value
|
||||||
strong Current Value:
|
strong Current Value:
|
||||||
code.current-value(data-prop=doc.name)= value
|
pre
|
||||||
|
code.current-value(data-prop=doc.name)= value
|
||||||
|
|
||||||
if doc.args && doc.args.length
|
if doc.args && doc.args.length
|
||||||
p.args
|
p.args
|
||||||
|
|
|
@ -8,6 +8,39 @@ filters = require 'lib/image_filter'
|
||||||
# If we use marked somewhere else, we'll have to make sure to preserve options
|
# If we use marked somewhere else, we'll have to make sure to preserve options
|
||||||
marked.setOptions {gfm: true, sanitize: false, smartLists: true, breaks: true}
|
marked.setOptions {gfm: true, sanitize: false, smartLists: true, breaks: true}
|
||||||
|
|
||||||
|
safeJSONStringify = (input, maxDepth) ->
|
||||||
|
recursion = (input, path, depth) ->
|
||||||
|
output = {}
|
||||||
|
pPath = undefined
|
||||||
|
refIdx = undefined
|
||||||
|
path = path or ""
|
||||||
|
depth = depth or 0
|
||||||
|
depth++
|
||||||
|
return "{depth over " + maxDepth + "}" if maxDepth and depth > maxDepth
|
||||||
|
for p of input
|
||||||
|
pPath = ((if path then (path + ".") else "")) + p
|
||||||
|
if typeof input[p] is "function"
|
||||||
|
output[p] = "{function}"
|
||||||
|
else if typeof input[p] is "object"
|
||||||
|
refIdx = refs.indexOf(input[p])
|
||||||
|
if -1 isnt refIdx
|
||||||
|
output[p] = "{reference to " + refsPaths[refIdx] + "}"
|
||||||
|
else
|
||||||
|
refs.push input[p]
|
||||||
|
refsPaths.push pPath
|
||||||
|
output[p] = recursion(input[p], pPath, depth)
|
||||||
|
else
|
||||||
|
output[p] = input[p]
|
||||||
|
output
|
||||||
|
refs = []
|
||||||
|
refsPaths = []
|
||||||
|
maxDepth = maxDepth or 5
|
||||||
|
if typeof input is "object"
|
||||||
|
output = recursion(input)
|
||||||
|
else
|
||||||
|
output = input
|
||||||
|
JSON.stringify output, null, 1
|
||||||
|
|
||||||
module.exports = class SpellPaletteEntryView extends View
|
module.exports = class SpellPaletteEntryView extends View
|
||||||
tagName: 'div' # Could also try <code> instead of <div>, but would need to adjust colors
|
tagName: 'div' # Could also try <code> instead of <div>, but would need to adjust colors
|
||||||
className: 'spell-palette-entry-view'
|
className: 'spell-palette-entry-view'
|
||||||
|
@ -61,6 +94,7 @@ module.exports = class SpellPaletteEntryView extends View
|
||||||
formatPopover: ->
|
formatPopover: ->
|
||||||
content = popoverTemplate doc: @doc, value: @formatValue(), marked: marked, argumentExamples: (arg.example or arg.default or arg.name for arg in @doc.args ? [])
|
content = popoverTemplate doc: @doc, value: @formatValue(), marked: marked, argumentExamples: (arg.example or arg.default or arg.name for arg in @doc.args ? [])
|
||||||
owner = if @doc.owner is 'this' then @thang else window[@doc.owner]
|
owner = if @doc.owner is 'this' then @thang else window[@doc.owner]
|
||||||
|
content = content.replace /#{spriteName}/g, @thang.spriteName # No quotes like we'd get with @formatValue
|
||||||
content.replace /\#\{(.*?)\}/g, (s, properties) => @formatValue downTheChain(owner, properties.split('.'))
|
content.replace /\#\{(.*?)\}/g, (s, properties) => @formatValue downTheChain(owner, properties.split('.'))
|
||||||
|
|
||||||
formatValue: (v) ->
|
formatValue: (v) ->
|
||||||
|
@ -70,7 +104,7 @@ module.exports = class SpellPaletteEntryView extends View
|
||||||
v = @thang[@doc.name]
|
v = @thang[@doc.name]
|
||||||
else
|
else
|
||||||
v = window[@doc.owner][@doc.name]
|
v = window[@doc.owner][@doc.name]
|
||||||
if @type is 'number' and not isNaN v
|
if @doc.type is 'number' and not isNaN v
|
||||||
if v == Math.round v
|
if v == Math.round v
|
||||||
return v
|
return v
|
||||||
return v.toFixed 2
|
return v.toFixed 2
|
||||||
|
@ -82,6 +116,8 @@ module.exports = class SpellPaletteEntryView extends View
|
||||||
return v.name
|
return v.name
|
||||||
if _.isArray v
|
if _.isArray v
|
||||||
return '[' + (@formatValue v2 for v2 in v).join(', ') + ']'
|
return '[' + (@formatValue v2 for v2 in v).join(', ') + ']'
|
||||||
|
if _.isPlainObject v
|
||||||
|
return safeJSONStringify v, 2
|
||||||
v
|
v
|
||||||
|
|
||||||
onMouseOver: (e) ->
|
onMouseOver: (e) ->
|
||||||
|
@ -95,7 +131,6 @@ module.exports = class SpellPaletteEntryView extends View
|
||||||
onFrameChanged: (e) ->
|
onFrameChanged: (e) ->
|
||||||
return unless e.selectedThang?.id is @thang.id
|
return unless e.selectedThang?.id is @thang.id
|
||||||
@options.thang = @thang = e.selectedThang # Update our thang to the current version
|
@options.thang = @thang = e.selectedThang # Update our thang to the current version
|
||||||
@$el.find("code.current-value").text(@formatValue())
|
|
||||||
|
|
||||||
destroy: ->
|
destroy: ->
|
||||||
@$el.off()
|
@$el.off()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue